-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (39 loc) · 878 Bytes
/
style.css
File metadata and controls
50 lines (39 loc) · 878 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
body {
background-image: url('https://wallpapercave.com/wp/wp3589868.jpg');
margin: 0; padding: 0;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
h1 {
margin-top: 2% !important;
}
#datos {
background: white;
width: 100%;
border: 1px solid gray;
}
.tbl-header {
background: #000055;
color: white;
}
#datos .tbl-row, .tbl-header {
/* div row */
display: grid;
grid-template-columns: 10% 50% 30% 10%;
padding: 10px 5px;
}
#datos .tbl-row:nth-child(even) {
background: #ddd;
}
#datos .tbl-row:hover {
background: lightblue;
}
#datos .tbl-row div, .tbl-header div {
/* div columns */
justify-self: center;
}
i { margin: 2px 4px; cursor: pointer; }
.fa-pencil-alt { color: darkgreen; }
.fa-trash-alt { color: maroon; }