-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcustom.css
More file actions
55 lines (40 loc) · 999 Bytes
/
Copy pathcustom.css
File metadata and controls
55 lines (40 loc) · 999 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
53
54
55
#tablas{
padding: 20px;
margin-right: 20px;
margin-left: 20px;
background-color: #212529;
}
body{
text-align:center;
/*color que tiene google*/
background-color: #202124;
color: darkgray;
/*background-color: #343838;*/
padding: 20px;
}
/*estilos de las tablas*/
table {
border-collapse: collapse;
border: 2px gray solid;
font: 15px sans-serif;
text-align:center;
display: table;
margin-right: auto;
margin-left: auto;
}
td {
border: 2px gray solid;
padding: 5px;
}
/*para striped rows*/
tr:nth-child(even) {background-color: #2c3034;}
tr:nth-child(odd) {background-color: #212529;}
/*pasar mouse por encima y que resalte una fila*/
tr:hover {background-color: #543245;}
/*pero que no resalte la primera (pinta del mismo color que el de las columnas pares)*/
tr:first-child:hover {background-color: #212529;}
/*azul #364F6B*/
/*
td stands for table data.
tr stands for table row.
th stands for table header*/