-
Notifications
You must be signed in to change notification settings - Fork 1
/
.styles.css
50 lines (50 loc) · 844 Bytes
/
.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
/* Estilos para la tabla */
table {
width: 100%;
border-collapse: collapse;
font-family: Arial, sans-serif;
font-size: 14px;
color: #333;
}
th, td {
padding: 10px;
text-align: left;
border: 1px solid #ccc;
}
th {
background-color: #f2f2f2;
font-weight: bold;
}
tr:hover {
background-color: slategray;
color: white;
}
th:hover {
background-color: #333;
color: white;
}
/* Estilos para el encabezado */
thead {
background-color: #ddd;
}
/* Estilos para el cuerpo */
tbody {
background-color: #f9f9f9;
}
/* Estilos para hacer la tabla ajustable al tamaño de la ventana */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
table {
table-layout: fixed;
}
a {
color: black;
text-decoration: none;
}
a:hover {
color: blue;
text-decoration: underline;
}