Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -9,6 +9,7 @@ body {
|
|
| 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 {
|
|
@@ -21,6 +22,7 @@ body {
|
|
| 21 |
.nav-link {
|
| 22 |
color: #00ffcc !important;
|
| 23 |
font-weight: 600;
|
|
|
|
| 24 |
transition: color 0.3s, text-shadow 0.3s;
|
| 25 |
}
|
| 26 |
|
|
@@ -40,6 +42,20 @@ body {
|
|
| 40 |
text-shadow: 0 0 25px rgba(0, 255, 204, 0.7);
|
| 41 |
}
|
| 42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
.bg-dark {
|
| 44 |
background: linear-gradient(180deg, #1c2526, #0a0a0a) !important;
|
| 45 |
}
|
|
@@ -51,9 +67,11 @@ body {
|
|
| 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 |
|
|
@@ -62,11 +80,28 @@ body {
|
|
| 62 |
box-shadow: 0 0 40px rgba(0, 255, 204, 0.7);
|
| 63 |
}
|
| 64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
.btn-ghost {
|
| 66 |
background: linear-gradient(45deg, #00ffcc, #00cc99);
|
| 67 |
border: none;
|
| 68 |
color: #000000;
|
| 69 |
font-weight: 700;
|
|
|
|
|
|
|
| 70 |
transition: transform 0.3s, box-shadow 0.3s;
|
| 71 |
}
|
| 72 |
|
|
@@ -79,6 +114,8 @@ body {
|
|
| 79 |
.btn-outline-ghost {
|
| 80 |
border-color: #00ffcc;
|
| 81 |
color: #00ffcc;
|
|
|
|
|
|
|
| 82 |
transition: background 0.3s, color 0.3s;
|
| 83 |
}
|
| 84 |
|
|
@@ -94,6 +131,7 @@ pre {
|
|
| 94 |
color: #000000 !important;
|
| 95 |
box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.4);
|
| 96 |
font-family: 'Courier New', monospace;
|
|
|
|
| 97 |
}
|
| 98 |
|
| 99 |
.code-block {
|
|
@@ -116,7 +154,9 @@ pre {
|
|
| 116 |
.nav-tabs .nav-link {
|
| 117 |
color: #00ffcc;
|
| 118 |
border: 1px solid #00ffcc;
|
| 119 |
-
|
|
|
|
|
|
|
| 120 |
transition: background 0.3s, color 0.3s;
|
| 121 |
}
|
| 122 |
|
|
@@ -134,8 +174,10 @@ pre {
|
|
| 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 |
}
|
|
|
|
| 9 |
.navbar {
|
| 10 |
background: linear-gradient(90deg, #1c2526, #2e3b3e) !important;
|
| 11 |
box-shadow: 0 4px 12px rgba(0, 255, 204, 0.3);
|
| 12 |
+
padding: 15px 0;
|
| 13 |
}
|
| 14 |
|
| 15 |
.navbar-brand {
|
|
|
|
| 22 |
.nav-link {
|
| 23 |
color: #00ffcc !important;
|
| 24 |
font-weight: 600;
|
| 25 |
+
padding: 10px 15px;
|
| 26 |
transition: color 0.3s, text-shadow 0.3s;
|
| 27 |
}
|
| 28 |
|
|
|
|
| 42 |
text-shadow: 0 0 25px rgba(0, 255, 204, 0.7);
|
| 43 |
}
|
| 44 |
|
| 45 |
+
.preview-window {
|
| 46 |
+
max-width: 600px;
|
| 47 |
+
margin: 20px auto;
|
| 48 |
+
padding: 15px;
|
| 49 |
+
background: #1c2526;
|
| 50 |
+
border: 2px solid #00ffcc;
|
| 51 |
+
border-radius: 10px;
|
| 52 |
+
box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
.preview-window img {
|
| 56 |
+
border-radius: 8px;
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
.bg-dark {
|
| 60 |
background: linear-gradient(180deg, #1c2526, #0a0a0a) !important;
|
| 61 |
}
|
|
|
|
| 67 |
.bg-ghost-card {
|
| 68 |
background: #2e3b3e !important;
|
| 69 |
border: 2px solid #00ffcc;
|
| 70 |
+
border-radius: 10px;
|
| 71 |
box-shadow: 0 0 25px rgba(0, 255, 204, 0.5);
|
| 72 |
transition: transform 0.3s, box-shadow 0.3s;
|
| 73 |
color: #ffffff !important;
|
| 74 |
+
padding: 20px;
|
| 75 |
cursor: pointer;
|
| 76 |
}
|
| 77 |
|
|
|
|
| 80 |
box-shadow: 0 0 40px rgba(0, 255, 204, 0.7);
|
| 81 |
}
|
| 82 |
|
| 83 |
+
.bg-ghost-light {
|
| 84 |
+
background: #e0e0e0 !important;
|
| 85 |
+
border: 2px solid #00ffcc;
|
| 86 |
+
border-radius: 10px;
|
| 87 |
+
box-shadow: 0 0 25px rgba(0, 255, 204, 0.5);
|
| 88 |
+
transition: transform 0.3s, box-shadow 0.3s;
|
| 89 |
+
color: #000000 !important;
|
| 90 |
+
padding: 20px;
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
.bg-ghost-light:hover {
|
| 94 |
+
transform: translateY(-10px);
|
| 95 |
+
box-shadow: 0 0 40px rgba(0, 255, 204, 0.7);
|
| 96 |
+
}
|
| 97 |
+
|
| 98 |
.btn-ghost {
|
| 99 |
background: linear-gradient(45deg, #00ffcc, #00cc99);
|
| 100 |
border: none;
|
| 101 |
color: #000000;
|
| 102 |
font-weight: 700;
|
| 103 |
+
border-radius: 8px;
|
| 104 |
+
padding: 12px 24px;
|
| 105 |
transition: transform 0.3s, box-shadow 0.3s;
|
| 106 |
}
|
| 107 |
|
|
|
|
| 114 |
.btn-outline-ghost {
|
| 115 |
border-color: #00ffcc;
|
| 116 |
color: #00ffcc;
|
| 117 |
+
border-radius: 8px;
|
| 118 |
+
padding: 12px 24px;
|
| 119 |
transition: background 0.3s, color 0.3s;
|
| 120 |
}
|
| 121 |
|
|
|
|
| 131 |
color: #000000 !important;
|
| 132 |
box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.4);
|
| 133 |
font-family: 'Courier New', monospace;
|
| 134 |
+
margin: 0;
|
| 135 |
}
|
| 136 |
|
| 137 |
.code-block {
|
|
|
|
| 154 |
.nav-tabs .nav-link {
|
| 155 |
color: #00ffcc;
|
| 156 |
border: 1px solid #00ffcc;
|
| 157 |
+
border-radius: 8px;
|
| 158 |
+
margin-right: 10px;
|
| 159 |
+
padding: 10px 20px;
|
| 160 |
transition: background 0.3s, color 0.3s;
|
| 161 |
}
|
| 162 |
|
|
|
|
| 174 |
.table-dark {
|
| 175 |
background: #1c2526 !important;
|
| 176 |
color: #ffffff !important;
|
| 177 |
+
border-radius: 10px;
|
| 178 |
}
|
| 179 |
|
| 180 |
.table-dark th, .table-dark td {
|
| 181 |
border-color: #00ffcc;
|
| 182 |
+
padding: 15px;
|
| 183 |
}
|