blob: 042a2f1fb5504f4d37cd3ba02c740cbd301ef00e (
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
|
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #2c3338;
}
#container {
display: flex;
justify-content: center;
margin-top: 100px;
}
table {
margin: 20px 0 20px 0;
text-align: center;
font-size: 25px;
width: 1000px;
color: #ccc;
border-collapse: collapse;
overflow: hidden;
}
/* Center all sub tables */
.log-table-row table {
margin: 0 auto;
}
.log-table-row table {
width: 90%;
}
table th {
background-color: #415eac;
border: 2px solid #ccc;
padding: 10px;
}
.link-table-row {
border: 2px solid #ccc;
}
table td {
padding: 10px;
}
.link-table-row td {
padding: 20px;
}
.log-table-row table td {
background-color: #3b4148;
padding: 10px;
}
.log-table-row table tr {
border: 2px solid #ccc;
}
.link-button {
background-color: #3b4148;
color: #ccc;
border: none;
padding: 10px;
cursor: pointer;
font-size: 25px;
border-radius: 5px;
}
.fa-trash:hover {
color: rgb(238, 86, 86);
cursor: pointer;
}
|