forked from ironhack-labs/lab-html-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsytle.css
187 lines (158 loc) · 2.73 KB
/
sytle.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
184
185
186
187
@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;
}
.black-heart {
width: 20px;
margin-right: 1rem;
}
.npm-logo {
width: 60px;
}
#search-bar {
color: rgba(0, 0, 0, 0.05);
width: 800px;
height: 40px;
}
form > button {
background-color: #fb3e44;
color: white;
border-color: 0.5px grey;
height: 40px;
width: 80px;
}
form > img {
width: 15px;
background-color: rgba(0, 0, 0, 0.05);
}
.header-button a {
text-decoration: none;
margin: 10px;
color: black;
}
#search-bar {
background-color: rgba(0, 0, 0, 0.05);
width: 400px;
border: none;
}
#first-section {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 600px;
background-color: rgba(232, 217, 217, 0.3);
}
#first-section h3 {
font-size: 80px;
}
#first-section article {
font-size: 25px;
width: 600px;
display: flex;
text-align: center;
padding-bottom: 60px;
}
#first-section div {
display: flex;
justify-content: space-between;
font-size: 20px;
}
.button {
margin: 40px 80px 40px 80px;
padding: 20px 80px 20px 80px;
color: black;
text-decoration: none;
}
#button-plans {
background-color: #fb3b49;
box-shadow: 8px 8px 0 rgba(251, 59, 73, 0.2);
color: white;
}
#second-section {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 600px;
background-color: rgba(232, 217, 217, 0.3);
}
#second-section img {
width: 230px;
height: 230px;
}
#second-section h3 {
background-color: rgba(255, 204, 53, 0.4);
transform: skew(9deg, 0deg);
font-style: italic;
padding: 0 30px 0 30px;
font-size: 30px;
}
#second-section article {
width: 600px;
font-size: 15px;
text-align: center;
}
#section-three > div {
display: flex;
flex-wrap: wrap;
margin: 50px 5% 0 5%;
padding: 20px;
width: 30%;
box-sizing: border-box;
border-radius: 20px;
height: 100px;
}
#section-three img {
width: 20px;
height: 20px;
}
#section-three {
width: auto;
height: 450px;
align-content: space-around;
display: flex;
margin-bottom: 30px;
}
#section-three h1 {
color: #ed1c24;
font-size: 18px;
}
#create {
text-align: center;
}
#create a {
text-decoration: none;
box-shadow: 8px 8px 0 rgba(128, 83, 35, 0.2);
background-color: black;
text-align: center;
padding: 10px 120px 10px 120px;
color: white;
}
#join {
border-width: 0.5px;
border-style: solid;
border-color: lightgray;
text-decoration: none;
padding: 3px 10px 3px 10px;
}