Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
/* 👻 GhostPack
|
| 2 |
body {
|
| 3 |
background: #0a0a0a;
|
| 4 |
color: #ffffff;
|
|
@@ -8,36 +8,36 @@ body {
|
|
| 8 |
|
| 9 |
.navbar {
|
| 10 |
background: linear-gradient(90deg, #1c2526, #2e3b3e) !important;
|
| 11 |
-
box-shadow: 0
|
| 12 |
}
|
| 13 |
|
| 14 |
.navbar-brand {
|
| 15 |
font-weight: 900;
|
| 16 |
-
font-size: 2rem;
|
| 17 |
color: #00ffcc !important;
|
| 18 |
-
text-shadow: 0 0
|
| 19 |
}
|
| 20 |
|
| 21 |
.nav-link {
|
| 22 |
color: #00ffcc !important;
|
| 23 |
-
font-weight:
|
| 24 |
transition: color 0.3s, text-shadow 0.3s;
|
| 25 |
}
|
| 26 |
|
| 27 |
.nav-link:hover {
|
| 28 |
color: #00cc99 !important;
|
| 29 |
-
text-shadow: 0 0
|
| 30 |
}
|
| 31 |
|
| 32 |
.hero-section {
|
| 33 |
-
background: linear-gradient(rgba(0,0,0,0.
|
| 34 |
background-size: cover;
|
| 35 |
background-position: center;
|
| 36 |
height: 100vh;
|
| 37 |
display: flex;
|
| 38 |
align-items: center;
|
| 39 |
justify-content: center;
|
| 40 |
-
text-shadow: 0 0
|
| 41 |
}
|
| 42 |
|
| 43 |
.bg-dark {
|
|
@@ -47,27 +47,14 @@ body {
|
|
| 47 |
.bg-ghost-card {
|
| 48 |
background: #2e3b3e !important;
|
| 49 |
border: 2px solid #00ffcc;
|
| 50 |
-
box-shadow: 0 0
|
| 51 |
transition: transform 0.3s, box-shadow 0.3s;
|
| 52 |
-
color: #ffffff;
|
| 53 |
}
|
| 54 |
|
| 55 |
.bg-ghost-card:hover {
|
| 56 |
-
transform: translateY(-
|
| 57 |
-
box-shadow: 0 0
|
| 58 |
-
}
|
| 59 |
-
|
| 60 |
-
.bg-ghost-light {
|
| 61 |
-
background: #e0e0e0 !important;
|
| 62 |
-
border: 2px solid #00ffcc;
|
| 63 |
-
box-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
|
| 64 |
-
transition: transform 0.3s, box-shadow 0.3s;
|
| 65 |
-
color: #000000;
|
| 66 |
-
}
|
| 67 |
-
|
| 68 |
-
.bg-ghost-light:hover {
|
| 69 |
-
transform: translateY(-8px);
|
| 70 |
-
box-shadow: 0 0 30px rgba(0, 255, 204, 0.6);
|
| 71 |
}
|
| 72 |
|
| 73 |
.btn-ghost {
|
|
@@ -79,8 +66,8 @@ body {
|
|
| 79 |
}
|
| 80 |
|
| 81 |
.btn-ghost:hover {
|
| 82 |
-
transform: scale(1.
|
| 83 |
-
box-shadow: 0 0
|
| 84 |
color: #000000;
|
| 85 |
}
|
| 86 |
|
|
@@ -99,22 +86,22 @@ pre {
|
|
| 99 |
background: #e0e0e0 !important;
|
| 100 |
padding: 20px;
|
| 101 |
border-radius: 10px;
|
| 102 |
-
color: #000000;
|
| 103 |
-
box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.
|
| 104 |
font-family: 'Courier New', monospace;
|
| 105 |
}
|
| 106 |
|
| 107 |
.code-block {
|
| 108 |
-
font-size: 0.
|
| 109 |
}
|
| 110 |
|
| 111 |
.ghost-animation {
|
| 112 |
-
animation: ghostFloat
|
| 113 |
}
|
| 114 |
|
| 115 |
@keyframes ghostFloat {
|
| 116 |
0%, 100% { transform: translateY(0); }
|
| 117 |
-
50% { transform: translateY(-
|
| 118 |
}
|
| 119 |
|
| 120 |
.bg-ghost-black {
|
|
|
|
| 1 |
+
/* 👻 GhostPack Phantom Styles 😈 */
|
| 2 |
body {
|
| 3 |
background: #0a0a0a;
|
| 4 |
color: #ffffff;
|
|
|
|
| 8 |
|
| 9 |
.navbar {
|
| 10 |
background: linear-gradient(90deg, #1c2526, #2e3b3e) !important;
|
| 11 |
+
box-shadow: 0 4px 12px rgba(0, 255, 204, 0.3);
|
| 12 |
}
|
| 13 |
|
| 14 |
.navbar-brand {
|
| 15 |
font-weight: 900;
|
| 16 |
+
font-size: 2.2rem;
|
| 17 |
color: #00ffcc !important;
|
| 18 |
+
text-shadow: 0 0 20px #00ffcc;
|
| 19 |
}
|
| 20 |
|
| 21 |
.nav-link {
|
| 22 |
color: #00ffcc !important;
|
| 23 |
+
font-weight: 600;
|
| 24 |
transition: color 0.3s, text-shadow 0.3s;
|
| 25 |
}
|
| 26 |
|
| 27 |
.nav-link:hover {
|
| 28 |
color: #00cc99 !important;
|
| 29 |
+
text-shadow: 0 0 12px #00cc99;
|
| 30 |
}
|
| 31 |
|
| 32 |
.hero-section {
|
| 33 |
+
background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('https://huggingface.co/spaces/ghostai1/GhostPack/resolve/main/hero-bg.jpg');
|
| 34 |
background-size: cover;
|
| 35 |
background-position: center;
|
| 36 |
height: 100vh;
|
| 37 |
display: flex;
|
| 38 |
align-items: center;
|
| 39 |
justify-content: center;
|
| 40 |
+
text-shadow: 0 0 25px rgba(0, 255, 204, 0.7);
|
| 41 |
}
|
| 42 |
|
| 43 |
.bg-dark {
|
|
|
|
| 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 {
|
| 56 |
+
transform: translateY(-10px);
|
| 57 |
+
box-shadow: 0 0 40px rgba(0, 255, 204, 0.7);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
}
|
| 59 |
|
| 60 |
.btn-ghost {
|
|
|
|
| 66 |
}
|
| 67 |
|
| 68 |
.btn-ghost:hover {
|
| 69 |
+
transform: scale(1.1);
|
| 70 |
+
box-shadow: 0 0 25px #00ffcc;
|
| 71 |
color: #000000;
|
| 72 |
}
|
| 73 |
|
|
|
|
| 86 |
background: #e0e0e0 !important;
|
| 87 |
padding: 20px;
|
| 88 |
border-radius: 10px;
|
| 89 |
+
color: #000000 !important;
|
| 90 |
+
box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.4);
|
| 91 |
font-family: 'Courier New', monospace;
|
| 92 |
}
|
| 93 |
|
| 94 |
.code-block {
|
| 95 |
+
font-size: 0.9rem;
|
| 96 |
}
|
| 97 |
|
| 98 |
.ghost-animation {
|
| 99 |
+
animation: ghostFloat 4.5s ease-in-out infinite;
|
| 100 |
}
|
| 101 |
|
| 102 |
@keyframes ghostFloat {
|
| 103 |
0%, 100% { transform: translateY(0); }
|
| 104 |
+
50% { transform: translateY(-15px); }
|
| 105 |
}
|
| 106 |
|
| 107 |
.bg-ghost-black {
|