-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
179 lines (179 loc) · 3.15 KB
/
style.css
File metadata and controls
179 lines (179 loc) · 3.15 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
body {
background: #181c24;
color: #f3f3f3;
font-family: 'Segoe UI', Arial, sans-serif;
margin: 0;
min-height: 100vh;
}
.container {
max-width: 700px;
margin: 40px auto;
background: #232837;
border-radius: 16px;
box-shadow: 0 4px 32px #000a;
padding: 32px 24px 32px 24px;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
margin-bottom: 16px;
font-size: 2.2rem;
letter-spacing: 1px;
}
.backend-status {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 16px;
padding: 8px 16px;
background: #2c3142;
border-radius: 8px;
font-size: 0.9rem;
}
.status-indicator {
width: 8px;
height: 8px;
border-radius: 50%;
display: inline-block;
}
.status-indicator.online {
background: #4ade80;
box-shadow: 0 0 8px #4ade80;
}
.status-indicator.offline {
background: #f87171;
box-shadow: 0 0 8px #f87171;
}
form {
display: flex;
gap: 12px;
margin-bottom: 18px;
align-items: center;
}
label {
font-size: 1rem;
color: #b0b8c7;
}
input[type="text"] {
background: #232837;
color: #f3f3f3;
border: 1px solid #3a405a;
border-radius: 6px;
padding: 8px 12px;
font-size: 1rem;
outline: none;
transition: border 0.2s;
}
input[type="text"]:focus {
border: 1.5px solid #5e81ff;
}
button {
background: #5e81ff;
color: #fff;
border: none;
border-radius: 6px;
padding: 8px 18px;
font-size: 1rem;
cursor: pointer;
transition: background 0.2s;
}
button:hover {
background: #4666c5;
}
#status {
min-height: 24px;
margin: 10px 0 18px 0;
font-size: 1.05rem;
color: #e0e6f0;
text-align: center;
}
#loader {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 18px;
}
#progress-container {
width: 100%;
margin: 18px 0;
text-align: center;
}
.progress-bar {
width: 100%;
height: 8px;
background: #3a405a;
border-radius: 4px;
overflow: hidden;
margin-bottom: 8px;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #5e81ff, #4c6ef5);
border-radius: 4px;
transition: width 0.3s ease;
width: 0%;
}
#progress-text {
font-size: 0.9rem;
color: #b0b8c7;
font-weight: 500;
}
.hidden {
display: none !important;
}
.spinner {
width: 36px;
height: 36px;
border: 4px solid #3a405a;
border-top: 4px solid #5e81ff;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
background: #232837;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px #0004;
}
thead th {
background: #232837;
color: #5e81ff;
font-weight: 600;
padding: 10px 6px;
text-align: left;
border-bottom: 2px solid #3a405a;
}
tbody td {
padding: 10px 6px;
border-bottom: 1px solid #2c3142;
font-size: 1rem;
}
tbody td:nth-child(4) {
font-size: 0.9rem;
line-height: 1.4;
max-width: 300px;
word-wrap: break-word;
}
tbody tr:hover {
background: #2c3142;
transition: background 0.2s;
}
@media (max-width: 600px) {
.container {
padding: 12px 2vw;
}
table, thead, tbody, th, td, tr {
font-size: 0.95rem;
}
h1 {
font-size: 1.3rem;
}
}