-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
114 lines (100 loc) · 1.8 KB
/
Copy pathstyles.css
File metadata and controls
114 lines (100 loc) · 1.8 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
.online {
color: #66FF66;
}
.offline {
color: #FF6666;
}
.card.online {
border-bottom: 3px solid #66FF66;
}
.card.offline {
border-bottom: 3px solid #FF6666;
}
* {
font-family: "Poppins", sans-serif;
}
body {
opacity: 0;
animation: fadeIn 1s forwards;
background-color: #2b2b2b;
color: #fff;
font-weight: 400;
font-size: 17px;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
#statusCards {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
padding: 1rem;
width: 100%;
max-width: 1200px;
box-sizing: border-box;
}
.card {
background: #2e2e2e;
border: 1px solid #444;
border-radius: 10px;
padding: 1rem;
box-shadow: 0 2px 6px rgba(0,0,0,0.3);
color: #fff;
flex: 1 1 200px;
max-width: 225px;
min-width: 180px;
}
.row {
display: flex;
justify-content: space-between;
margin: 0.3rem 0;
}
.label {
font-weight: bold;
}
#filter {
margin-bottom: 20px;
position: fixed;
top: 10px;
background: #2e2e2e;
padding: 10px;
border-radius: 8px;
border: 1px solid #444;
width: max-content;
}
#filter button {
margin: 0 5px;
padding: 6px 12px;
cursor: pointer;
border-radius: 8px;
border: none;
background: #444;
color: #fff;
font-size: 13px;
font-weight: bold;
}
@media (max-width: 480px) {
body {
padding-top: 55px;
padding-bottom: 55px;
}
}
#lastUpdated {
position: fixed;
bottom: 10px;
background: #2e2e2e;
padding: 10px;
border-radius: 8px;
border: 1px solid #444;
width: max-content;
font-size: 13px;
}