-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.css
More file actions
174 lines (149 loc) · 3.99 KB
/
Copy pathadmin.css
File metadata and controls
174 lines (149 loc) · 3.99 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
/* Antigravity Admin Redesign - ULTIMATE WIDGET FIX */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
@keyframes gradientBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
/* Base Body and Wrappers - Global Force */
html,
body,
.wrapper,
.content-wrapper,
.main-sidebar,
.left-side,
.main-footer,
.login-page {
background: linear-gradient(-45deg, #0a0b1e, #130a21, #0a1121, #120a16) !important;
background-size: 400% 400% !important;
animation: gradientBG 15s ease infinite !important;
background-attachment: fixed !important;
font-family: 'Inter', sans-serif !important;
color: #cad1d8 !important;
border: none !important;
}
/* Header & Sidebar Transparency */
.main-header .navbar,
.main-header .logo,
.main-sidebar {
background-color: rgba(0, 0, 0, 0.4) !important;
backdrop-filter: blur(10px);
border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
/* WIDGETS: Boxes, Panels, Info-Boxen */
.box,
.info-box,
.small-box,
.panel {
background: rgba(255, 255, 255, 0.04) !important;
backdrop-filter: blur(16px) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 18px !important;
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5) !important;
margin-bottom: 20px !important;
border-top: 3px solid #3b82f6 !important;
/* Force Antigravity Blue Top Border */
}
/* Red Alert/Warning Boxes Override */
.alert-danger,
.box.box-danger {
border-top-color: #ef4444 !important;
background: rgba(239, 68, 68, 0.1) !important;
}
.box-header {
background: transparent !important;
border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
color: #fff !important;
padding: 15px 20px !important;
}
.box-title {
color: #fff !important;
font-weight: 700 !important;
}
.box-body,
.box-footer {
background: transparent !important;
color: #cbd5e1 !important;
}
/* Tables and Lists (Eggs, Servers, etc.) */
.table,
.table-responsive {
background: transparent !important;
border: none !important;
}
.table th {
background: rgba(255, 255, 255, 0.02) !important;
border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
color: #8b5cf6 !important;
/* Neon Violet for headers */
text-transform: uppercase;
font-size: 11px;
}
.table td {
border-top: 1px solid rgba(255, 255, 255, 0.03) !important;
color: #cbd5e1 !important;
}
.table-hover>tbody>tr:hover {
background-color: rgba(59, 130, 246, 0.05) !important;
}
/* Inputs and Selects */
.form-control,
select,
.input-group-addon {
background-color: rgba(0, 0, 0, 0.3) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 10px !important;
color: #fff !important;
}
/* Buttons */
.btn {
border-radius: 12px !important;
font-weight: 600 !important;
border: none !important;
}
.btn-primary {
background: #3b82f6 !important;
box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4) !important;
}
.btn-success {
background: #10b981 !important;
box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4) !important;
}
/* Breadcrumbs & Titles */
.content-header>h1 {
color: #fff !important;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}
.breadcrumb>li>a,
.breadcrumb>li.active {
color: #94a3b8 !important;
}
/* Specific fix for Dashboard Metric Boxes */
.small-box .inner h3,
.small-box .inner p {
color: #fff !important;
}
.small-box .icon {
color: rgba(255, 255, 255, 0.1) !important;
}
/* Sidebar Active State Fix */
.sidebar-menu>li.active>a {
background: rgba(59, 130, 246, 0.1) !important;
color: #3b82f6 !important;
border-left: 4px solid #3b82f6 !important;
}
/* Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-thumb {
background: rgba(59, 130, 246, 0.3);
border-radius: 10px;
}