-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin-dashboard.css
More file actions
126 lines (107 loc) · 1.77 KB
/
Copy pathadmin-dashboard.css
File metadata and controls
126 lines (107 loc) · 1.77 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
body {
margin: 0;
font-family: system-ui, sans-serif;
background: radial-gradient(circle at top, #101020, #050509);
color: #e5e5ff;
}
.admin-shell {
display: flex;
height: 100vh;
}
.sidebar {
width: 260px;
background: linear-gradient(180deg, #050510, #050508);
border-right: 1px solid #26264a;
padding: 20px;
}
.logo {
color: #7b5cff;
font-size: 20px;
margin-bottom: 24px;
}
.sidebar nav button {
display: block;
width: 100%;
margin-bottom: 10px;
padding: 10px 12px;
background: #111122;
border: 1px solid #26264a;
color: #e5e5ff;
border-radius: 6px;
cursor: pointer;
}
.sidebar nav button:hover {
background: #181832;
}
.main-panel {
flex: 1;
display: flex;
flex-direction: column;
}
.top-bar {
height: 56px;
display: flex;
align-items: center;
justify-content: flex-end;
padding: 0 20px;
border-bottom: 1px solid #26264a;
background: #080814;
}
.status-pill {
padding: 6px 12px;
border-radius: 999px;
font-size: 12px;
background: #333355;
}
.status-pill.online {
background: #163b24;
color: #7dffb0;
}
.status-pill.offline {
background: #3b1616;
color: #ff7d7d;
}
.panel {
flex: 1;
display: none;
padding: 20px;
overflow: auto;
}
.panel.active {
display: block;
}
.card {
background: #0b0b18;
border-radius: 10px;
border: 1px solid #26264a;
padding: 16px;
margin-bottom: 16px;
}
.card h2 {
margin-top: 0;
font-size: 16px;
color: #b0a8ff;
}
.table {
width: 100%;
border-collapse: collapse;
font-size: 13px;
}
.table th,
.table td {
border-bottom: 1px solid #26264a;
padding: 8px;
}
.badge {
padding: 2px 8px;
border-radius: 999px;
font-size: 11px;
}
.badge.online {
background: #163b24;
color: #7dffb0;
}
.badge.offline {
background: #3b1616;
color: #ff7d7d;
}