-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (105 loc) · 1.96 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Ubuntu',sans-serif;
background-color: rgb(215, 215, 215);
}
header{
height: 100px;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
background-color: #333;
}
ul{
display: flex;
list-style: none;
align-items: center;
}
ul li a{
padding: 0 20px;
color: white;
display: inline-block;
}
li a::after{
content: "";
display: block;
height: 4px;
width: 0;
background-color: #f5d700;
transition: all .5s;
}
li a:hover::after{
width: 100%;
}
button:hover{
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 12px 40px 0 rgba(0, 0, 0, 0.19);
}
hr{
margin: 0;
border: 0;
height: 0;
box-shadow: 0 0 5px 1px;
}
main{
display: flex;
height: calc(100vh - 100px);
align-items: center;
justify-content: center;
}
.hero-img{
max-width: 670px;
height: auto;
}
.content-left{
width: 30%;
transition: width 2s;
}
.content-left:hover{
width: 35%;
}
.content-right img{
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 12px 40px 0 rgba(0, 0, 0, 0.19);
}
main h1{
font-size: 54px;
color: #133b4f;
}
main h2{
font-size: 25px;
color: #fca70c;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 8px;
}
main p{
font-size: 14px;
font-weight: 400;
color: #565656;
line-height: 31.5px;
margin: 30px 0;
}
.cta{
padding: 15px 30px;
background-color: #f5d700;
color: #404040;
outline: none;
border: none;
font-weight: 700;
text-transform: uppercase;
border-radius: 50px;
}
.signup-btn{
padding: 10px 20px;
background-color: #f5d700;
color: #404040;
outline: none;
border: none;
font-weight: 700;
text-transform: uppercase;
border-radius: 50px;
}