-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
125 lines (106 loc) · 1.66 KB
/
styles.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
body {
font-family: "Open Sans", sans-serif;
color: #0E0903;
}
.negro {
color: #0E0903;
}
.fondo-negro {
background-color: #0E0903;
}
.rojo {
color: #FF1053;
}
.fondo-rojo {
background-color: #FF1053;
}
.borde-rojo {
border: 2px solid #FF1053;
}
.celeste {
color: #7AE7C7;
}
.fondo-celeste {
background-color: #7AE7C7;
}
.violeta {
color: #700353;
}
.fondo-violeta {
background-color: #700353;
}
.amarillo {
color: #F2FF49;
}
.fondo-amarillo {
background-color: #F2FF49;
}
.naranja {
color: #FFBB00;
}
.fondo-naranja {
background-color: #ff7b00;
}
.verde {
color: #00FF8C;
}
.fondo-verde {
background-color: #00FF8C;
}
.azul {
color: #0011ff;
}
.fondo-azul {
background-color: #0011ff;
}
.rosa {
color: #F79AD3;
}
.fondo-rosa {
background-color: #F79AD3;
}
.underline {
position: relative;
z-index: 1;
cursor: pointer;
}
.underline::before {
content: '';
position: absolute;
z-index: -1;
top: 0;
bottom: 0;
left: -0.25em;
right: -0.25em;
background-color: #2f7efc;
transform-origin: bottom center;
transform: scaleY(0.1);
transition: all 0.1s ease-in-out;
}
.underline:hover::before {
transform: scaleY(1);
background-color: #2f7efc80;
}
.content {
display: none;
}
#content1 {
display: block;
}
.nav-link {
color: #0E0903;
font-weight: bold;
}
.panel {
background: rgba( 255, 255, 255, 0.1 );
backdrop-filter: blur( 2px );
-webkit-backdrop-filter: blur( 2px );
border-radius: 10px;
}
h2.item {
transition: .25s ease;
}
h2.item:hover {
margin: 1.1rem;
transition: .25s ease;
}