-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy_styles.css
More file actions
61 lines (48 loc) · 870 Bytes
/
my_styles.css
File metadata and controls
61 lines (48 loc) · 870 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
56
57
58
59
60
61
body {
background-image: url('img/wallpaper.jpg');
background-attachment: fixed;
background-size: cover;
background-position: 14% 84%;
}
.active {
background-color: #cfccc0;
color: green;
}
.error {
color: red;
margin-top: 5px;
margin-bottom: 5px;
}
h3 {
background-color: RGBa(229, 226, 217, 0.8);
}
h2 {
background-color: RGBa(229, 226, 217, 0.8);
}
#table_detail {
text-align: center;
border-collapse: collapse;
background-color: #ffffffe5;
color: #2E2E2E;
border: #A4A4A4;
}
#table_detail thead tr:hover {
background-color: unset;
}
#table_detail tr.hidden_tr {
text-align: left;
background-color: #ccccce;
}
#table_detail tr:hover {
background-color: #f2f2f2;
}
#table_detail tr.hidden_tr:hover {
text-align: left;
background-color: #cad3dd;
}
#table_detail .hidden_row {
display: none;
}
#main_table_row td {
cursor: pointer;
}