-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
231 lines (201 loc) · 4.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
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
* {
padding: 0;
margin: 0;
}
main {
margin-top: 80px;
margin-bottom: 10px;
margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding: 10px;
}
ul {
margin-left: 2rem;
margin-top: 0.2rem;
text-align: left;
}
body {
background-color: antiquewhite;
text-align: justify;
font-size: large;
font-family: 'Exo 2', sans-serif;
}
h1 {
text-align: center;
font-size: xxx-large;
font-weight: bolder;
font-family: 'MuseoModerno', sans-serif;
}
h2 {
text-align: left;
font-family: 'MuseoModerno', sans-serif;
}
#bajada-del-titulo {
font-size: medium;
font-family: 'MuseoModerno', sans-serif;
}
footer {
background-color: rgb(44, 44, 44);
color: whitesmoke;
text-align: left;
font-style: italic;
text-wrap: 1px;
font-size: small;
padding: 2rem;
}
.texto_footer{
margin: 0.8rem;
}
img {
position: relative;
max-width: 100%;
border-radius: 3%;
width: 500px;
}
.pieDePagina {
font-size: small;
}
.enlaces-navegador {
display: flex;
gap: 10px;
font-size: 10px;
}
nav {
background-color: antiquewhite;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: stretch;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1;
box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.5);
}
.pieFin {
position: relative;
padding: 10px 10px 10px 10px;
}
table {
display: table;
box-sizing: content-box;
table-layout: fixed;
border-collapse: collapse;
border: 3px solid black;
text-align: center;
min-width: 200px;
overflow-wrap: anywhere;
}
col {
border: 3px solid black;
}
td {
padding: 10px;
border: 2px solid black;
}
.cabecera_cuadro {
background-color: rgb(110, 177, 177);
font-weight: bolder;
}
a:hover {
cursor: pointer;
filter: invert(0.3);
}
/* Estilo del icono hamburguesa */
.hamburguesa {
width: 35px;
height: 3px;
background-color: black;
margin: 6px 0;
}
/* Estilo del contenedor del icono */
.contenedor {
display: inline-block;
cursor: pointer;
padding: 1rem;
}
/* Estilo del menú de navegación */
.menu {
display: none;
position: absolute;
top: 3.6rem;
width: 50%;
bottom: 0;
z-index: 1;
opacity: 95%;
}
/* Estilo de los elementos del menú */
.menu a {
display: block;
text-align: left;
padding: 1.5rem;
text-decoration: none;
color: wheat;
font-family: 'MuseoModerno', sans-serif;
background-color: rgb(44, 41, 41);
}
/* Estilo de los elementos del menú al pasar el ratón */
.menu a:hover {
background-color: gray;
filter: invert(1);
font-style: italic;
}
/* Estilo del menú cuando está activo */
.activo {
display: block;
}
/*Aspecto del botón ir hacia arriba*/
/* CSS */
#myBtn {
display: none;
/* Hidden by default */
position: fixed;
/* Fixed/sticky position */
bottom: 20px;
/* Place the button at the bottom of the page */
right: 30px;
/* Place the button 30px from the right */
z-index: 99;
/* Make sure it does not overlap */
border: none;
/* Remove borders */
outline: none;
/* Remove outline */
background-color: grey;
/* Set a background color */
color: powderblue;
/* Text color */
cursor: pointer;
/* Add a mouse pointer on hover */
padding: 15px;
/* Some padding */
border-radius: 10px;
/* Rounded corners */
font-size: 18px;
/* Increase font size */
}
#myBtn:hover {
background-color: #555;
/* Add a dark-grey background on hover */
}
#bloque_inicial{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
height: 3.6rem;
}
#título_bloque_inicial{
margin: 1rem;
font: 1.5em sans-serif;
}
.contenedor_universal {
position: fixed;
top: 0;
width: 100%;
margin-top: 0;
background: antiquewhite;
z-index: 1;
opacity: 90%;
}