ghostai1 commited on
Commit
beee235
·
verified ·
1 Parent(s): cdb42a5

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +33 -1
style.css CHANGED
@@ -1,4 +1,4 @@
1
- /* 👻 GhostPack Phantom Styles 😈 */
2
  body {
3
  background: #0a0a0a;
4
  color: #ffffff;
@@ -44,12 +44,17 @@ body {
44
  background: linear-gradient(180deg, #1c2526, #0a0a0a) !important;
45
  }
46
 
 
 
 
 
47
  .bg-ghost-card {
48
  background: #2e3b3e !important;
49
  border: 2px solid #00ffcc;
50
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.5);
51
  transition: transform 0.3s, box-shadow 0.3s;
52
  color: #ffffff !important;
 
53
  }
54
 
55
  .bg-ghost-card:hover {
@@ -106,4 +111,31 @@ pre {
106
 
107
  .bg-ghost-black {
108
  background: #0a0a0a !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  }
 
1
+ /* 👻 GhostPack Spectral Styles 😈 */
2
  body {
3
  background: #0a0a0a;
4
  color: #ffffff;
 
44
  background: linear-gradient(180deg, #1c2526, #0a0a0a) !important;
45
  }
46
 
47
+ .bg-light {
48
+ background: #121212 !important;
49
+ }
50
+
51
  .bg-ghost-card {
52
  background: #2e3b3e !important;
53
  border: 2px solid #00ffcc;
54
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.5);
55
  transition: transform 0.3s, box-shadow 0.3s;
56
  color: #ffffff !important;
57
+ cursor: pointer;
58
  }
59
 
60
  .bg-ghost-card:hover {
 
111
 
112
  .bg-ghost-black {
113
  background: #0a0a0a !important;
114
+ }
115
+
116
+ .nav-tabs .nav-link {
117
+ color: #00ffcc;
118
+ border: 1px solid #00ffcc;
119
+ margin-right: 5px;
120
+ transition: background 0.3s, color 0.3s;
121
+ }
122
+
123
+ .nav-tabs .nav-link.active {
124
+ background: #00ffcc;
125
+ color: #000000;
126
+ border-color: #00ffcc;
127
+ }
128
+
129
+ .nav-tabs .nav-link:hover {
130
+ background: rgba(0, 255, 204, 0.2);
131
+ color: #00ffcc;
132
+ }
133
+
134
+ .table-dark {
135
+ background: #1c2526 !important;
136
+ color: #ffffff !important;
137
+ }
138
+
139
+ .table-dark th, .table-dark td {
140
+ border-color: #00ffcc;
141
  }