-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
53 lines (44 loc) · 771 Bytes
/
Copy pathestilo.css
File metadata and controls
53 lines (44 loc) · 771 Bytes
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
/* Estilo global */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
}
h1 {
color: #333;
margin-bottom: 20px;
}
/* Estilo para la tabla */
table {
width: 80%;
border-collapse: collapse;
margin: 20px auto;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
table, th, td {
border: 1px solid #ddd;
}
th, td {
padding: 10px;
text-align: left;
font-size: 16px;
}
/* Encabezados de la tabla */
th {
background-color: #4CAF50;
color: white;
}
/* Filas de la tabla */
tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:hover {
background-color: #ddd;
}
/* Estilo para el centro */
center {
display: block;
margin-top: 20px;
}