forked from ironhack-labs/lab-html-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
217 lines (176 loc) · 3.31 KB
/
styles.css
File metadata and controls
217 lines (176 loc) · 3.31 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
@import url('https://fonts.googleapis.com/css?family=Poppins');
html,
body {
font-family: 'Poppins';
margin: 0;
padding: 0;
}
header>div {
padding: 0 25px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid lightgray;
}
nav {
width: 600px;
}
nav ul {
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
}
nav a {
text-decoration: none;
color: black;
}
.blackHeart {
width: 20px;
margin-right: 1rem;
}
header .header-search {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid lightgray;
padding: 5px 25px;
box-shadow: 0px 7px 10px -1px rgba(50, 50, 50, 0.51);
}
.header-search .logo {
width: 50px;
}
.header-search .mag-glass {
width: 30px;
}
.header-search form input {
width: 900px;
height: 45px;
border: 0;
}
form label, input {
color: rgba(0,0,0,.05);
background-color: #ececec;
width: 85%;
}
.header-search form {
}
.header-search form button {
background-color:#fb3e44;
color: white;
height: 45px;
padding: 0 15px;
border: 1px solid lightgrey;
}
.header-search .links a {
text-decoration: none;
margin:0 0 0 15px ;
color: black;
}
#build {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: center;
background-color: #f7f4f4;
height: 600px;
margin: 0 40px;
}
h1{
font-size: 5.5em;
font-weight: 700;
margin-top: 90px;
margin-bottom: 30px;
}
h3{
width: 500px;
font-weight: 400;
font-size: 1.1em;
text-align: center;
line-height: 1.5em;
}
.buttons-box {
width: 30%;
margin: 0;
display: flex;
justify-content: center;
}
.buttons-box button{
border: none;
margin: 50px 15px;
padding: 15px 65px;
font-weight: 800;
font-size: 1.1em;
}
button.h3.plans {
background-color: #fa3b49;
color: white;
box-shadow: 5px 5px 2px 1px rgba(251,208,210,1);
}
button.h3.join {
background-color: white;
}
#description {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: center;
}
#description img{
height: 250px;
margin: 50px;
}
#description h2 {
font-size: 2em;
font-weight: 500;
font-style: italic;
margin: 0 auto;
background-color: rgba(255,204,53,.4);
transform: skew(9deg,0deg);
padding: 0 60px;
}
#description h4 {
font-size: 1em;
font-weight: 400;
width: 45%;
text-align: center;
}
#options {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 70px;
}
#options .option img{
height: 40px;
margin: 0 0 10px 20px;
}
#options .options-box{
display: flex;
justify-content: space-between;
flex-direction: row;
padding: 40px 130px;
}
#options .options-box .option{
width: 22%;
}
.option h5{
margin: 0;
color:#fb3e44 ;
font-size: 1.1em;
font-weight: 500;
}
#options button{
font-family: 'Poppins';
border: 0;
background-color: black;
color: white;
padding: 15px 80px;
margin: 40px 0 60px 0 ;
box-shadow: 5px 5px 2px 1px lightgrey;
font-size: 1.1em;
}