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
203 lines (166 loc) · 3.27 KB
/
Copy pathstyles.css
File metadata and controls
203 lines (166 loc) · 3.27 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
@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700i,900&display=swap');
body, a {
font-family: 'Poppins';
text-decoration: none;
}
#build {
display: flex;
flex-direction: column;
text-align: center;
height: 600px;
justify-content: center;
background-color: rgb(248 244 244);
}
#opensource {
display: flex;
flex-direction: column;
text-align: center;
height: 600px;
justify-content: center;
}
#features > div {
display: flex;
justify-content: space-around;
margin: 0 10% 0 10%;
}
#features article {
font-size: 1em;
text-align: left;
/* border-radius: 20px; */
/* box-sizing: border-box; */
margin: 10px 2% 0 2%;
padding: 20px;
width: 40%;
}
#features img {
height: 40px;
}
#features a {
color: white;
background-color: black;
padding: 1rem 7rem;
font-family: 'Poppins';
font-size: 14px;
margin: 40px;
box-shadow: 7px 7px 4px lightgray;
}
.top-section-container {
margin: 0 35% 40px 35%;
}
h1 {
font-size: 70px;
font-weight: black;
}
h2 {
font-size: 40px;
font-weight: 700;
font-style: italic;
margin: 0;
}
h4 {
color: #fb3e44;
}
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: 30px;
margin-right: 1rem;
}
.npm-logo {
width: 70px;
padding: 0;
margin-right: 5px;
}
.mag-glass {
width: 18px;
margin: 12px;
vertical-align: middle;
}
.search-container {
display: flex;
justify-content: space-between;
background-color: rgb(242, 242, 242);
float: none;
width: 75%;
}
.search-container input {
width: 100%;
background-color: rgb(242, 242, 242);
border: none;
padding: 12px;
}
.logo-search-bar {
padding: 10px 25px;
/* justify-content: space-between; */
}
.search-container button {
color: white;
background-color: #fb3e44;
padding-left: 2rem;
padding-right: 2rem;
font-family: 'Poppins';
font-size: 14px;
border: none;
}
.logo-search-bar a {
color: black;
/* background-color: black; */
padding: 10px 28px;
}
.join-login-buttons {
margin-left: 10px;
font-family: 'Poppins';
font-size: 14px;
}
.join-button {
border: 1px solid lightgray;
}
.plans-button {
color: white;
background-color: #fb3e44;
padding: 1rem 3rem;
font-family: 'Poppins';
font-size: 14px;
margin: 20px;
box-shadow: 7px 7px 4px pink;
}
.freejoin-button {
color: black;
background-color: white;
padding: 1rem 3rem;
font-family: 'Poppins';
font-size: 14px;
margin: 20px;
}
.triangle {
height: 200px;
margin-top: 30px;
}
.yellow-container-skew {
background-color: rgba(255,204,53,.4);
transform: skew(9deg,0deg);
}
.opensource-section-container {
margin: 40px 20% 40px 20%;
}
.opensource-section-container2 {
margin: 40px 30% 40px 30%;
}