Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
body {
|
| 2 |
padding: 3rem 1.5rem;
|
| 3 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
| 4 |
-
background-color: #
|
| 5 |
-
color: #
|
| 6 |
margin: 0;
|
| 7 |
}
|
| 8 |
|
|
@@ -10,10 +10,10 @@ body {
|
|
| 10 |
max-width: 600px;
|
| 11 |
margin: 0 auto;
|
| 12 |
padding: 24px;
|
| 13 |
-
background: #
|
| 14 |
-
border: 1px solid #
|
| 15 |
border-radius: 16px;
|
| 16 |
-
box-shadow: 0 4px
|
| 17 |
}
|
| 18 |
|
| 19 |
.header-row {
|
|
@@ -28,19 +28,21 @@ h1 {
|
|
| 28 |
font-weight: 700;
|
| 29 |
margin: 0;
|
| 30 |
letter-spacing: -0.025em;
|
|
|
|
| 31 |
}
|
| 32 |
|
| 33 |
.badge {
|
| 34 |
-
background-color: #
|
| 35 |
-
color: #
|
| 36 |
padding: 4px 10px;
|
| 37 |
border-radius: 9999px;
|
| 38 |
font-size: 12px;
|
| 39 |
font-weight: 600;
|
|
|
|
| 40 |
}
|
| 41 |
|
| 42 |
.description {
|
| 43 |
-
color: #
|
| 44 |
font-size: 15px;
|
| 45 |
line-height: 1.5;
|
| 46 |
margin-top: 0;
|
|
@@ -55,8 +57,8 @@ h1 {
|
|
| 55 |
}
|
| 56 |
|
| 57 |
.stat-box {
|
| 58 |
-
background-color: #
|
| 59 |
-
border: 1px solid #
|
| 60 |
padding: 14px;
|
| 61 |
border-radius: 12px;
|
| 62 |
}
|
|
@@ -66,7 +68,7 @@ h1 {
|
|
| 66 |
font-size: 12px;
|
| 67 |
text-transform: uppercase;
|
| 68 |
letter-spacing: 0.05em;
|
| 69 |
-
color: #
|
| 70 |
margin-bottom: 4px;
|
| 71 |
font-weight: 600;
|
| 72 |
}
|
|
@@ -75,11 +77,11 @@ h1 {
|
|
| 75 |
display: block;
|
| 76 |
font-size: 16px;
|
| 77 |
font-weight: 600;
|
| 78 |
-
color: #
|
| 79 |
}
|
| 80 |
|
| 81 |
.info-section {
|
| 82 |
-
border-top: 1px solid #
|
| 83 |
padding-top: 16px;
|
| 84 |
margin-bottom: 24px;
|
| 85 |
}
|
|
@@ -89,12 +91,12 @@ h1 {
|
|
| 89 |
font-weight: 600;
|
| 90 |
margin-top: 0;
|
| 91 |
margin-bottom: 8px;
|
| 92 |
-
color: #
|
| 93 |
}
|
| 94 |
|
| 95 |
.info-section p {
|
| 96 |
font-size: 14px;
|
| 97 |
-
color: #
|
| 98 |
line-height: 1.5;
|
| 99 |
margin: 0;
|
| 100 |
}
|
|
@@ -112,24 +114,25 @@ h1 {
|
|
| 112 |
font-weight: 500;
|
| 113 |
text-decoration: none;
|
| 114 |
border-radius: 8px;
|
| 115 |
-
transition: background-color 0.2s;
|
| 116 |
}
|
| 117 |
|
| 118 |
.btn:not(.secondary) {
|
| 119 |
-
background-color: #
|
| 120 |
color: #ffffff;
|
| 121 |
}
|
| 122 |
|
| 123 |
.btn:not(.secondary):hover {
|
| 124 |
-
background-color: #
|
| 125 |
}
|
| 126 |
|
| 127 |
.btn.secondary {
|
| 128 |
-
background-color: #
|
| 129 |
-
color: #
|
| 130 |
-
border: 1px solid #
|
| 131 |
}
|
| 132 |
|
| 133 |
.btn.secondary:hover {
|
| 134 |
-
background-color: #
|
|
|
|
| 135 |
}
|
|
|
|
| 1 |
body {
|
| 2 |
padding: 3rem 1.5rem;
|
| 3 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
| 4 |
+
background-color: #000000; /* Pure black background */
|
| 5 |
+
color: #f3f4f6; /* Bright white/gray text */
|
| 6 |
margin: 0;
|
| 7 |
}
|
| 8 |
|
|
|
|
| 10 |
max-width: 600px;
|
| 11 |
margin: 0 auto;
|
| 12 |
padding: 24px;
|
| 13 |
+
background: #0b0f19; /* Dark obsidian card background */
|
| 14 |
+
border: 1px solid #1f2937; /* Muted gray-dark border */
|
| 15 |
border-radius: 16px;
|
| 16 |
+
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Enhanced dark shadow */
|
| 17 |
}
|
| 18 |
|
| 19 |
.header-row {
|
|
|
|
| 28 |
font-weight: 700;
|
| 29 |
margin: 0;
|
| 30 |
letter-spacing: -0.025em;
|
| 31 |
+
color: #ffffff; /* Bright white header */
|
| 32 |
}
|
| 33 |
|
| 34 |
.badge {
|
| 35 |
+
background-color: #2e1065; /* Deep purple background */
|
| 36 |
+
color: #e9d5ff; /* Soft purple text */
|
| 37 |
padding: 4px 10px;
|
| 38 |
border-radius: 9999px;
|
| 39 |
font-size: 12px;
|
| 40 |
font-weight: 600;
|
| 41 |
+
border: 1px solid #4c1d95;
|
| 42 |
}
|
| 43 |
|
| 44 |
.description {
|
| 45 |
+
color: #9ca3af; /* High-contrast readable gray description */
|
| 46 |
font-size: 15px;
|
| 47 |
line-height: 1.5;
|
| 48 |
margin-top: 0;
|
|
|
|
| 57 |
}
|
| 58 |
|
| 59 |
.stat-box {
|
| 60 |
+
background-color: #111827; /* Darker box inside the card */
|
| 61 |
+
border: 1px solid #1f2937; /* Thin border */
|
| 62 |
padding: 14px;
|
| 63 |
border-radius: 12px;
|
| 64 |
}
|
|
|
|
| 68 |
font-size: 12px;
|
| 69 |
text-transform: uppercase;
|
| 70 |
letter-spacing: 0.05em;
|
| 71 |
+
color: #94a3b8; /* Muted light slate label */
|
| 72 |
margin-bottom: 4px;
|
| 73 |
font-weight: 600;
|
| 74 |
}
|
|
|
|
| 77 |
display: block;
|
| 78 |
font-size: 16px;
|
| 79 |
font-weight: 600;
|
| 80 |
+
color: #38bdf8; /* Sharp neon-blue hardware value accent */
|
| 81 |
}
|
| 82 |
|
| 83 |
.info-section {
|
| 84 |
+
border-top: 1px solid #1f2937; /* Dark divider line */
|
| 85 |
padding-top: 16px;
|
| 86 |
margin-bottom: 24px;
|
| 87 |
}
|
|
|
|
| 91 |
font-weight: 600;
|
| 92 |
margin-top: 0;
|
| 93 |
margin-bottom: 8px;
|
| 94 |
+
color: #e5e7eb;
|
| 95 |
}
|
| 96 |
|
| 97 |
.info-section p {
|
| 98 |
font-size: 14px;
|
| 99 |
+
color: #9ca3af;
|
| 100 |
line-height: 1.5;
|
| 101 |
margin: 0;
|
| 102 |
}
|
|
|
|
| 114 |
font-weight: 500;
|
| 115 |
text-decoration: none;
|
| 116 |
border-radius: 8px;
|
| 117 |
+
transition: background-color 0.2s, border-color 0.2s;
|
| 118 |
}
|
| 119 |
|
| 120 |
.btn:not(.secondary) {
|
| 121 |
+
background-color: #2563eb; /* High-visibility blue for primary action */
|
| 122 |
color: #ffffff;
|
| 123 |
}
|
| 124 |
|
| 125 |
.btn:not(.secondary):hover {
|
| 126 |
+
background-color: #1d4ed8;
|
| 127 |
}
|
| 128 |
|
| 129 |
.btn.secondary {
|
| 130 |
+
background-color: #1f2937; /* Dark gray for secondary action */
|
| 131 |
+
color: #e5e7eb;
|
| 132 |
+
border: 1px solid #374151;
|
| 133 |
}
|
| 134 |
|
| 135 |
.btn.secondary:hover {
|
| 136 |
+
background-color: #374151;
|
| 137 |
+
border-color: #4b5563;
|
| 138 |
}
|