forked from ironhack-labs/lab-html-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
222 lines (191 loc) · 3.18 KB
/
style.css
File metadata and controls
222 lines (191 loc) · 3.18 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
217
218
219
220
221
222
@import url("https://fonts.googleapis.com/css?family=Poppins");
body {
font-family: "Poppins";
}
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;
}
.logo {
width: 100px;
margin: 1em 0;
}
.search {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
color: rgba(0, 0, 0, 0.05);
}
.magnifying-glass {
width: 20px;
margin: 0;
padding: 11px 3px;
border: none;
}
.search a {
padding: 5px 30px;
text-decoration: none;
color: black;
font-size: 0.7em;
}
.join{
border: 1px solid black;
}
#join{
background-color: white;
font-weight: bold;
}
#SearchBar {
display: flex;
justify-content: space-around;
align-items: center;
color: rgba(0, 0, 0, 0.05);
background-color: rgb(236, 236, 236);
box-sizing: content-box;
}
.SearchBar input {
width: 950px;
padding: 15px 0;
background-color: rgb(236, 236, 236);
border: none;
}
.SearchBar button {
background-color: #fb3e44;
border: none;
color: white;
padding: 18px 20px;
}
#presentation {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
background-color: rgb(241, 234, 234);
padding: 50px 0 80px 0;
}
body h1 {
font-size: 4.5em;
font-weight: 900;
}
body h2 {
font-size: 1.5em;
background-color: rgba(255,204,53,.4);
transform: skew(9deg,0deg);
padding: 0 30px;
font-style: italic;
margin: 20px;
}
#presentation article {
width: 33%;
text-align: center;
font-size: 1.1em;
}
.butt{
display: flex;
justify-content: center;
align-items:;
padding: 80px;
}
.butt a{
padding: 50px;
margin: 20px;
}
/*cant center the buttons*/
#presentation div {
justify-content: space-between;
padding: 20px;
margin: 20px;
text-decoration: none;
width: 35%;
flex-wrap: wrap;
}
#plans {
background-color: #fb3e44;
color: white;
padding: 15px 60px;
text-decoration: none;
box-shadow: 5px 5px 2px rgb(255, 176, 176);
}
#join {
color: black;
padding: 15px 60px;
text-decoration: none;
}
#sales img{
width: 240px;
padding: 20px;
}
#sales {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
padding: 50px 0 0 0;
}
.stext{
text-align: center;
width: 35%;
font-size:0.7em;
}
#sales img{
margin: 10px 0 0 0;
}
#features{
display: flex;
flex-direction: row;
align-items: baseline;
justify-content: center;
padding: 5px;
margin: 10px;
}
#features img{
width:40px;
}
body h3{
color:#ED1C24;
font-size: 0.9em;
font-weight: bolder;
}
.features{
width: 170px;
padding: 25px;
}
#features article{
font-size: 0.7em;
}
.button{
box-shadow: 8px 8px 0 rgba(128,83,35,.2);
color: white;
background-color: black;
padding: 10px 50px;
align-content: center;
width: 300px;
font-size: 1.1em;
}
#button{
display: flex;
align-content: center;
justify-content: center;
margin: 20px;
}