-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (123 loc) · 2.17 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
*{
margin: 0;
padding: 0;
font-family: 'poppins',sans-serif;
box-sizing: border-box;
}
body{
background-color: #000;
color: #fff;
}
.header{
width: 100%;
height: 100vh;
background-image:linear-gradient(rgba(0,0,0,0.7) ,rgba(0,0,0,.7)),url(./header-image.png);
background-position: center;
background-size: cover;
padding: 10px 8px;
position: relative;
}
nav{
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0;
}
.header img{
width: 200px;
cursor: pointer;
}
nav button{
border: 0;
outline: 0;
background: #db0001;
color: #fff;
padding: 7px 20px;
font-size: 12px;
border-radius: 4px;
margin-left: 10px;
cursor: pointer;
}
.language-btn{
display: inline-flex;
align-items: center ;
background: transparent;
border: 1px solid #fff;
padding: 7px 10px;
}
.language-btn img{
width: 10px;
margin-left: 10px;
}
.header-content{
position: absolute;
justify-content: center;
margin-left: 280px;
/* top: 50px;
left: 50px;
transform: translate(-50%,-50px); */
text-align: center;
margin-top: 150px;
}
.email-signup button{
background-color: #db0001;
border: 0;
outline: 0;
color: #fff;
font-size: 16px;
cursor: pointer;
padding: 15px 30px;
}
.email-signup input{
flex: 1;
border: 0;
outline: 0;
margin-left: 20x;
}
.header-content h1{
font-size: 60px;
line-height: 70px;
font-weight: 400;
max-width: 650px;
}
.header-content h3{
font-size: 400;
margin-bottom: 20px;
}
.email-signup{
background: #fff;
border-radius: 4px;
display: flex;
align-items: center;
margin-top: 30px;
overflow: hidden;
}
.features{
padding: 50px 12%;
font-size: 22px;
}
.row{
display: flex;
width: 100%;
flex-wrap:wrap ;
align-items: center;
padding: 50px 0;
}
.text-col{
flex-basis: 50%;
margin-bottom: 20px;
}
.img-col{
flex-basis: 50%;
margin-bottom: 20px;
}
.img-col img{
display: block;
width: 90%;
margin: auto;
}
.features h2{
font-size: 50px;
font-weight: 400;
margin-bottom: 20px;
}