-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
299 lines (227 loc) · 5.66 KB
/
style.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
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/* font-family: "Roboto Mono", monospace;
font-family: "Inconsolata", monospace; */
/* NORMALIZACION: */
* {
padding: 0;
margin: 0;
box-sizing: border-box; /* Esto mantiene el ancho y alto a pesar de padding y border*/
font-family: 'Inconsolata', 'Roboto Mono';
list-style: none; /* Quitar los puntos y decoracion de las listas*/
text-decoration: none; /* Esto quita el subrayado de los enlaces */
color: white;
}
body {
background-color: black; /* TO DO: Borrar cuando tengamos el fondo final */
}
header {
position: fixed; /* Esto hace que el header se quede fijo en la parte superior */
right: 0;
top: 0;
z-index: 100; /* Esto hace que el header se muestre por encima */
width: 100%;
display: flex; /* Esto hara que los elementos se pongan en linea*/
align-items: center; /* Centra verticalmente*/
justify-content: space-between; /* Que los elementos se separen*/
padding: 15px 3%;
background-color: transparent;
}
.logo {
font-size: 30px;
font-weight: 800; /* Este es el grueso de las letras */
}
.navlist {
display: flex; /* Esto sirve para que los elementos de la lista UL se pongan en linea*/
}
.navlist a {
margin-left: 60px; /* Es para separar las palabras */
font-size: 15px;
font-weight: 600;
border-bottom: 2px solid transparent; /* Este es un subrayado transparente*/
transition: all .5s ease; /* Esto es para animar todas las caracteristicas del .navlist a*/
}
.navlist a:hover {
border-bottom: 2px solid white; /* Este es un subrayado transparente*/
}
#menu-icon {
display: none; /* Esto lo pongo en none para que solo se vea cuando la pagina este colpasada de forma horizontal */
}
#menu-icon {
font-size: 35px;
z-index: 101; /* Para que este sobre el header */
cursor: pointer; /* Para que aparezca la manito cuando le ponemos el mouse encima*/
}
#menu-toggle {
display: none; /* Nunca quiero que sea vea el checkbox*/
}
#menu-icon-action {
display: none; /* Para que no se le pueda hacer click*/
}
.hero {
height: 100%;
width: 100%;
min-height: 100vh;
background: linear-gradient(245.59deg, #31494e 0%, #385e70 25%, #131313 75%); /* Fondo de color gradiente*/
position: relative; /* Para que sea relativo el contenedor (nos permite usar top, left y right)*/
display: grid; /* Para que el hero se pueda dividir en 2 columnas*/
grid-template-columns: 1fr 1fr; /* las 2 columnas */
align-items: center; /* Para alinear verticalmente el hero*/
gap: 2rem; /* haya espacio de 2 rem entre las 2 columnas*/
}
section {
padding: 0 8%;
}
.hero-text h5 {
font-size: 14px;
font-weight: 400;
margin-bottom: 25px;
}
.hero-text h1 {
font-family: 'Courier New', Courier, monospace;
font-size: 50px;
line-height: 1;
margin: 0 0 30px;
}
.hero-text h4 {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
.hero-text p {
font-size: 80%;
margin-bottom: 40px;
line-height: 1.9;
}
.hero-img img {
width: 400px;
margin: 10% 0 0 10%;
height: auto;
transition: all 5s linear; /* Esto hace que la transicion sea lineal */
}
.hero-img img:hover {
width: 450px;
opacity: 0.6;
}
.hero-text a {
display: inline-block;
background-color: #4d4d4d;
border: 1px solid transparent;
padding: 15px 30px;
line-height: 1.4;
font-size: 14px;
font-weight: 500;
border-radius: 30px;
text-transform: uppercase;
transition: all .5s ease;
}
.hero-text a:hover {
background-color: transparent;
border: 1px solid white;
transform: translate(8px);
}
.hero-text a.videos {
background-color: transparent;
border: 1px solid white;
margin-left: 20px;
}
.hero-text a.videos i {
vertical-align: middle;
margin-right: 5px;
}
.icons {
position: absolute;
top: 50vh;
padding: 0 3%;
transform: translateY(-50%);
}
.icons i {
display: block;
margin: 26px 0;
font-size: 24px;
transition: all 0.5s ease;
}
.icons i:hover {
color: #4d4d4d;
transform: translateY(-5px);
}
.scroll-down {
position: absolute;
bottom: 6%;
right: 3%;
}
.scroll-down i {
display: block;
padding: 12px;
font-size: 25px;
background-color: #21383d;
border-radius: 30px;
transition: all .5s ease;
}
.scroll-down i:hover {
transform: translateY(-5px);
}
/* Aca vamos a hacer mediaqueries para que la web sea responsive*/
@media (max-width: 992px) {
section {
padding: 0 3%;
transition: .2s;
}
.hero-text {
padding-top: 0;
}
.hero-img {
text-align: center;
}
.hero-img img {
width: 80%;
margin: 10% 0 0 10%;
}
.hero-text p {
font-size: 70%;
}
.icons {
display: none;
}
.scroll-down {
display: none;
}
}
@media (max-width: 768px){
.menu-icon-action {
display: block;
}
#menu-icon {
display: block;
}
.hero-text {
text-align: center;
padding-top: 100px;
}
.hero-img img {
margin: 0;
}
.hero {
height: 100%;
gap: 1rem;
grid-template-columns: 1fr;
}
.navlist {
position: absolute;
top: 100%;
right: -100%;
width: 200px;
height: 180px;
background-color: #021719ef;
display: flex;
flex-direction: column;
align-items: center;
padding: 30px 20px;
transition: all 1s ease-out;
}
.navlist a {
display: block;
margin: 7px 0;
}
#menu-toggle:checked + label.menu-icon-action + ul {
right: 0;
}
}