blob: 7f332c7b3c86ee2b1d984bd5d2e7b978dbfa90cb (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #2c3338;
}
.loadingSpinner {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.spinner {
border: 4px solid #ccc;
border-top: 4px solid #415eac;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.loadingSpinner p {
margin-top: 20px;
color: #415eac;
font-weight: bold;
}
table {
margin: 0 auto;
text-align: center;
font-size: 25px;
width: 1000px;
color: #ccc;
border-collapse: collapse;
overflow: hidden;
}
table th {
background-color: #415eac;
border: 2px solid #ccc;
padding: 10px;
}
table td {
padding: 10px;
}
.mainTable {
position: absolute;
top: 100px;
left: 50%;
transform: translateX(-50%);
}
.linkTableRow {
border: 2px solid #ccc;
}
.linkTableRow td {
padding: 20px;
}
.linkButton {
background-color: #3b4148;
color: #ccc;
border: none;
padding: 10px;
cursor: pointer;
font-size: 25px;
border-radius: 5px;
}
.logTableRow table {
margin: 0 auto;
width: 90%;
}
.logTableRow table td {
background-color: #3b4148;
padding: 10px;
}
.logTableRow table tr {
border: 2px solid #ccc;
}
.trashBin:hover {
color: rgb(238, 86, 86);
cursor: pointer;
transition: color 0.2s ease;
}
.trashBin:active {
transform: scale(0.95);
}
|