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
198 lines (161 loc) · 3.13 KB
/
style.css
File metadata and controls
198 lines (161 loc) · 3.13 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');
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;
}
.npm-logo {
width: 70px;
}
input {
border: none;
font-family: 'Poppins';
background: rgba(0,0,0,.05) url('images/magnifying-glass.png') left no-repeat;
background-size: 20px;
/* it is not flex this width... */
width: 1300px;
padding-left: 20px;
line-height: 30px;
}
.search-form{
display: flex;
}
.search-form button {
background-color: #fb3e44;
color: white;
border: none;
/* align-items: flex-start; */
padding: 10px 20px;
}
.search-part {
padding: 10px 20px;
}
.search-part a {
text-decoration: none;
color: grey;
}
.join-button {
border: 1px solid black;
padding: 0px 8px;
}
/* section 1 */
#section-1 {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 500px;
background-color: rgba(232, 217, 217, .3);
}
#section-1 h1 {
font-size: 70px;
font-weight: 700;
margin-bottom: 20px;
}
#section-1 article h2 {
font-weight: normal;
font-size: 18px;
text-align: center;
width: 500px;
margin-bottom: 40px;
}
.buttons > button {
width: 200px;
height: 50px;
border: none;
}
.see-plans-button {
background-color: #fb3b49;
/* this rosa color is not working */
box-shadow: 8px 8px 0px rgba(251, 59, 73, .2);
color: white;
font-weight: bold;
margin-right: 30px;
}
.join-for-free-button {
background-color: white;
font-weight: 800;
font-size: 17px;
}
/* section 2 */
#section-2{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 500px;
}
.hexagon-image {
width: 200px;
}
#section-2 h2 {
background-color: rgba(225, 204, 53, .4);
transform: skew(9deg,0deg);
font-style: italic;
/* margin: ; */
/* these 3 are doing nothig now */
align-items: center;
justify-content: center;
flex-direction: column;
}
#section-2 article {
width: 520px;
font-size: 9px;
text-align: center;
}
#section-2 article h3 {
font-weight: 400;
}
/* section 3 */
#section-3 div img {
width: 30px;
}
.container{
display: flex;
flex-direction:row;
justify-content:space-evenly;
padding: 0px 30px;
}
.container div {
width: 17%;
margin: 5% 0;
font-size: 10px;
}
.container div h3 {
color: #fb3b49;
font-weight: 900;
}
#section-3 button {
background-color: black;
color: white;
box-shadow: 5px 5px 0px rgba(128, 83, 35, .2);
padding: 9px 75px;
font-size: 11px;
font-weight: 700;
}
.create-an-org-button {
display: flex;
justify-content: center;
}