-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
37 lines (32 loc) · 1.16 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
@import url('https://fonts.googleapis.com/css2?family=Silkscreen&display=swap');
body {
background-color: #1b1b1f;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
padding: 20px; /* Agregamos un relleno para separar del borde */
}
.degradado {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 4vw; /* Utilizando vw para el tamaño de la fuente */
background: rgb(80, 190, 255);
background: linear-gradient(135deg, rgba(80, 190, 255, 1) 4%, rgba(124, 53, 176, 1) 64%);
background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
margin-right: 5vw; /* Utilizando vw para márgenes */
font-family: 'Silkscreen', sans-serif;
}
/* Media query para pantallas más pequeñas */
@media screen and (max-width: 768px) {
body {
flex-direction: column; /* Cambiamos la dirección del flexbox */
text-align: center;
}
.degradado {
margin-right: 0; /* Eliminamos el margen derecho */
margin-bottom: 20px; /* Agregamos margen inferior */
font-size: 8vw; /* Cambiamos el tamaño de la fuente para dispositivos más pequeños */
}
}