-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (106 loc) · 2 KB
/
style.css
File metadata and controls
108 lines (106 loc) · 2 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
.body{
display: flex;
justify-content: center;
align-items: center;
margin: 0;
padding: 10px;
}
.fondo{
background-color: rgb(57, 57, 57);
border-radius: 15px;
margin: 5px;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.parent{
border-radius: 15px;
margin: 5px;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: rgb(74, 74, 74);
width: 95%;
height: 95%;
}
.hola {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
white-space: pre;
}
.borde{
width: 90%;
height: 90%;
border: 1px solid white;
border-radius: 5px;
padding: 15px;
margin: 5px;
}
.TextoGrande{
font-family: "Fira Code";
font-weight: 500;
font-size: 25px;
font-style: normal;
}
.TextoMediano{
font-family: "Fira Code";
font-weight: 500;
font-size: 16px;
font-style: normal;
}
.boton {
display: flex;
align-items: center;
justify-content: center;
width: 110px;
height: 110px;
padding: 0;
margin: 5px;
background: none;
display: flex;
border: 2px solid rgb(37, 37, 37);
border-radius: 15px;
}
.boton img{
transition: 0.3s;
margin: 10px;
width: 100%;
height: 100%;
border-radius: 15px;
}
.gifs{
display: flex;
padding: 10px;
width: 100%;
height: 35%;
}
.gif{
width: 40%;
height: 40%;
}
.italic{
font-style: italic;
}
@keyframes colorCycle {
0% { color: red; }
20% { color: orange; }
40% { color: yellow; }
60% { color: green; }
80% { color: blue; }
100% { color: violet; }
}
.multicolor{
animation: colorCycle 1.5s infinite alternate;
}
.coral{
color:coral;
}
.blanco{
color: white;
}