Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
33ea9de
1
Parent(s):
7735bc6
Updated font colors in style.css
Browse files
style.css
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
:root {
|
2 |
--title-font-size: clamp(1.5rem, 6vw, 3rem);
|
3 |
--subtitle-font-size: clamp(1rem, 2vw, 1.2rem);
|
4 |
-
--title-color: #FF0000; /* Bright red
|
5 |
-
--primary-color: #
|
6 |
-
--secondary-color: #
|
7 |
-
--accent-color: #
|
8 |
-
--text-color: #
|
9 |
-
--light-accent: #
|
10 |
}
|
11 |
|
12 |
h1 {
|
@@ -20,7 +20,7 @@ h2 {
|
|
20 |
text-align: center;
|
21 |
font-size: 2rem;
|
22 |
display: block;
|
23 |
-
color: var(--
|
24 |
}
|
25 |
|
26 |
p {
|
@@ -61,14 +61,14 @@ p {
|
|
61 |
|
62 |
#title {
|
63 |
font-size: var(--title-font-size);
|
64 |
-
color: var(--title-color);
|
65 |
font-family: 'Helvetica Neue', sans-serif;
|
66 |
text-transform: uppercase;
|
67 |
background: transparent;
|
68 |
}
|
69 |
|
70 |
#title span {
|
71 |
-
background: linear-gradient(45deg, #EF4E4E, #b42828);
|
72 |
background-clip: text;
|
73 |
-webkit-background-clip: text;
|
74 |
color: transparent;
|
@@ -128,4 +128,61 @@ li {
|
|
128 |
::selection {
|
129 |
background: var(--light-accent);
|
130 |
color: var(--primary-color);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
}
|
|
|
1 |
:root {
|
2 |
--title-font-size: clamp(1.5rem, 6vw, 3rem);
|
3 |
--subtitle-font-size: clamp(1rem, 2vw, 1.2rem);
|
4 |
+
--title-color: #FF0000; /* Bright red title */
|
5 |
+
--primary-color: #333333; /* Dark gray */
|
6 |
+
--secondary-color: #4A4A4A; /* Medium gray */
|
7 |
+
--accent-color: #666666; /* Light gray */
|
8 |
+
--text-color: #2B2B2B; /* Near black for text */
|
9 |
+
--light-accent: #E0E0E0; /* Very light gray */
|
10 |
}
|
11 |
|
12 |
h1 {
|
|
|
20 |
text-align: center;
|
21 |
font-size: 2rem;
|
22 |
display: block;
|
23 |
+
color: var(--primary-color);
|
24 |
}
|
25 |
|
26 |
p {
|
|
|
61 |
|
62 |
#title {
|
63 |
font-size: var(--title-font-size);
|
64 |
+
color: var(--title-color);
|
65 |
font-family: 'Helvetica Neue', sans-serif;
|
66 |
text-transform: uppercase;
|
67 |
background: transparent;
|
68 |
}
|
69 |
|
70 |
#title span {
|
71 |
+
background: linear-gradient(45deg, #EF4E4E, #b42828);
|
72 |
background-clip: text;
|
73 |
-webkit-background-clip: text;
|
74 |
color: transparent;
|
|
|
128 |
::selection {
|
129 |
background: var(--light-accent);
|
130 |
color: var(--primary-color);
|
131 |
+
}
|
132 |
+
|
133 |
+
/* Form elements */
|
134 |
+
select, input[type="text"], input[type="number"], textarea {
|
135 |
+
border: 1px solid var(--accent-color);
|
136 |
+
padding: 8px;
|
137 |
+
border-radius: 4px;
|
138 |
+
color: var(--text-color);
|
139 |
+
background-color: white;
|
140 |
+
}
|
141 |
+
|
142 |
+
select:focus, input[type="text"]:focus, input[type="number"]:focus, textarea:focus {
|
143 |
+
border-color: var(--primary-color);
|
144 |
+
outline: none;
|
145 |
+
box-shadow: 0 0 3px var(--accent-color);
|
146 |
+
}
|
147 |
+
|
148 |
+
/* Tables if needed */
|
149 |
+
table {
|
150 |
+
border-collapse: collapse;
|
151 |
+
width: 100%;
|
152 |
+
margin: 1rem 0;
|
153 |
+
}
|
154 |
+
|
155 |
+
th, td {
|
156 |
+
border: 1px solid var(--accent-color);
|
157 |
+
padding: 8px;
|
158 |
+
text-align: left;
|
159 |
+
color: var(--text-color);
|
160 |
+
}
|
161 |
+
|
162 |
+
th {
|
163 |
+
background-color: var(--light-accent);
|
164 |
+
color: var(--primary-color);
|
165 |
+
}
|
166 |
+
|
167 |
+
/* Code blocks if needed */
|
168 |
+
code {
|
169 |
+
background-color: var(--light-accent);
|
170 |
+
padding: 2px 4px;
|
171 |
+
border-radius: 3px;
|
172 |
+
color: var(--primary-color);
|
173 |
+
}
|
174 |
+
|
175 |
+
/* Alert messages if needed */
|
176 |
+
.alert {
|
177 |
+
padding: 1rem;
|
178 |
+
margin: 1rem 0;
|
179 |
+
border-radius: 4px;
|
180 |
+
border: 1px solid var(--accent-color);
|
181 |
+
background-color: var(--light-accent);
|
182 |
+
color: var(--text-color);
|
183 |
+
}
|
184 |
+
|
185 |
+
/* Loading indicators if needed */
|
186 |
+
.loading {
|
187 |
+
color: var(--secondary-color);
|
188 |
}
|