-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (94 loc) · 2.26 KB
/
style.css
File metadata and controls
115 lines (94 loc) · 2.26 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
@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
h1{
background-color: greenyellow;
color: blueviolet;
font-family: 'Silkscreen', cursive;
text-align: center;
display:inline-block; /* para que no ocupe el 100% del ancho, solo lo que ocupa el texto*/
position: relative; /* para poder mover las rayas de los costados a la posicion origianl */
}
h2{
background-color: greenyellow;
color: blueviolet;
font-family: 'Silkscreen', cursive;
text-align: center;
position: relative; /* para poder mover las rayas de los costados a la posicion origianl */
font-weight: 100;
}
p{
background-color: greenyellow;
font-family: 'Silkscreen', cursive;
font-size: x-large;
border-style: dotted;
}
#inicio{
border-radius: 10%;
}
#reproductor{
width: 25%;
height: 10%;
size: 25%;
}
h1::after,h1::before{
content:'';
position:absolute;
width:120px;; /* anchura de la linea*/
height:3px; /* anchura */
background-color: currentColor; /* es igual al color del elemento */
top:0.6em;
transform: scale(0); /* hace que desaparezcan las lineas */
transition:all 0.2s ease-in; /* tiempo que tarda en volvera a aparecer la linea */
}
h1:hover::before, h1:hover::after{
transform:scale(1)
}
h1::before{
left: -140px;
}
h1::after{
right: -140px;
}
header{
background-color: blueviolet;
font-size: x-large;
position:relative;
padding: 5%;
opacity: 0.7;
margin: -1%;
}
#headtext{
display:inline-block;
}
body {
text-align: center;
background-image:url("./images/gif.gif");
background-repeat: repeat;
background-color: greenyellow;
margin: -1%;
}
#message {
font-size: x-large;
color: rgb(132, 0, 255);
font-family: 'Fjalla One', sans-serif;
background-color: greenyellow;
}
#quote {
font-size: x-large;
color: rgb(132, 0, 255);
font-family: 'Fjalla One', sans-serif;
background-color: greenyellow;
}
#inicio {
font-size: x-large;
}
#texto-tipeado{
font-size: x-large;
}
.highlight {
background-color: yellow;
}
.error {
background-color: lightcoral;
border: red;
}