blob: ef6b451943923b4d6006f2ba06f2b7a3df20fdc0 (
plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #2c3338;
}
#mainTable {
position: absolute;
top: 100px;
left: 50%;
transform: translateX(-50%);
}
table {
margin: 0 auto;
text-align: center;
font-size: 25px;
width: 1000px;
color: #ccc;
border-collapse: collapse;
overflow: hidden;
}
/* Center all sub tables */
.logTableRow table {
margin: 0 auto;
}
.logTableRow table {
width: 90%;
}
table th {
background-color: #415eac;
border: 2px solid #ccc;
padding: 10px;
}
.linkTableRow {
border: 2px solid #ccc;
}
table td {
padding: 10px;
}
.linkTableRow td {
padding: 20px;
}
.logTableRow table td {
background-color: #3b4148;
padding: 10px;
}
.logTableRow table tr {
border: 2px solid #ccc;
}
.linkButton {
background-color: #3b4148;
color: #ccc;
border: none;
padding: 10px;
cursor: pointer;
font-size: 25px;
border-radius: 5px;
}
.trashBin:hover {
color: rgb(238, 86, 86);
cursor: pointer;
transition: color 0.2s ease;
}
.trashBin:active {
transform: scale(0.95);
}
|