-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
183 lines (172 loc) · 3.04 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
*{
margin: 0;
padding: 0;
font-family: 'Poppins',sans-serif;
box-sizing: border-box;
}
body{
background: black;
color: #fff;
}
.header{
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(header-image.png);
background-size: cover;
background-position: center;
padding: 8px 6%;
position: relative;
}
nav{
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0;
}
.logo{
width: 125px;
cursor: pointer;
}
nav button{
border: 0;
outline: 0;
background-color: #db0001;
color: #fff;
padding: 8px 8px;
font-size: 12px;
border-radius: 4px;
margin-left: 10px;
cursor: pointer;
}
.language-btn{
display: inline-flex;
align-items: center;
background: transparent;
border: 1px solid white;
padding: 12px 14px ;
}
.language-btn img{
width: 20%;
margin-left: 10px;
}
.header-content{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
text-align: center;
margin-top: 100px;
}
.header-content h1{
font-size: 45px;
line-height: 70px;
font-weight: 500;
max-width: 600px;
}
.header-content h3{
font-weight: 400;
margin-bottom: 20px;
font-size: larger;
}
.email-signup{
background: white;
border-radius: 4px;
display: flex;
align-items: center;
margin-top: 30px;
overflow: hidden;
}
.email-signup input{
flex: 1;
border: 0;
outline: 0;
margin-left: 20px;
}
.email-signup button{
background: #db0001;
border: 0;
outline: 0;
color: white;
font-size: 25px;
cursor: pointer;
padding: 15px 30px;
}
/* --------features--------- */
.features{
padding: 50px 12%;
font-size: 22px;
}
.row{
display: flex;
width: 100%;
align-items: center;
flex-wrap: wrap;
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: 80%;
margin: auto;
}
.features h2{
font-size:medium
font-weight: 550;
margin-bottom: 20px;
margin-left: 20px;
}
/* ---------faq------------ */
.faq{
padding: 10px 12%;
text-align: center;
font-size: 18px;
}
.faq h2{
font-weight: 500;
font-size: 30px;
padding: 10px 10px;
}
.accordian{
margin: 60px auto;
width: 100%;
max-width: 750px;
margin-right: 20px;
}
.accordian li{
list-style: none;
width: 175%;
padding: 5px 5px;
}
.accordian li label{
display: flex;
align-items: center;
padding: 20px;
font-size: 18px;
font-weight: 500;
background: #303030;
margin-bottom: 2px;
cursor: pointer;
position: relative;
}
label::after{
content: '+';
font-size: 34px;
position: absolute;
right: 20px;
}
input[type="radio"]{
display: none;
}
/* .accordian .content{
background: #303030;
text-align: left;
padding: 0 20px;
max-width: 0;
overflow: hidden;
} */