File size: 2,388 Bytes
7e32eb7
 
e0a41e1
7e32eb7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a706ce6
7e32eb7
 
 
e0a41e1
 
7e32eb7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a706ce6
 
 
7e32eb7
 
 
 
 
 
 
a706ce6
 
7e32eb7
 
 
 
 
 
 
 
 
 
a706ce6
 
7e32eb7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a706ce6
 
7e32eb7
 
a706ce6
7e32eb7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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

:root {
--glass: rgba(255, 255, 255, 0.15);
  --border: rgba(255, 255, 255, 0.25);
  --ok: #4ade80;
  --warn: #facc15;
  --err: #f87171;
  --text: #f8fafc;
  --background: #0f172a;
  --highlight: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  font-family: system-ui, -apple-system, sans-serif;
display: grid;
  place-items: center;
  color: var(--text);
  padding: 20px;
}

.card {
  width: 100%;
  max-width: 400px;
  padding: 40px 30px;
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

h1 {
  margin: 0 0 30px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  color: #f8fafc;
  position: relative;
  display: inline-block;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--ok);
  border-radius: 3px;
}

.metric-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.1rem;
  padding: 20px;
  border-radius: 12px;
  background: var(--highlight);
  transition: all 0.2s ease;
}

.metric:hover {
  background: rgba(255, 255, 255, 0.15);
}

.metric-value {
  font-size: 2.2rem;
  font-weight: 600;
  margin-left: 8px;
}

.metric-icon {
  font-size: 1.5rem;
}

.status-container {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.status {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
  background: var(--warn);
  box-shadow: 0 0 8px currentColor;
}

.footer {
  margin-top: 30px;
  font-size: 0.75rem;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .card {
    padding: 30px 20px;
  }
  
  .metric-value {
    font-size: 2rem;
  }
}