Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
2985a49
1
Parent(s):
40b0f85
Updated font colors in style.css
Browse files
style.css
CHANGED
@@ -7,19 +7,25 @@ h1 {
|
|
7 |
text-align: center;
|
8 |
font-size: var(--title-font-size);
|
9 |
display: block;
|
|
|
10 |
}
|
11 |
|
12 |
h2 {
|
13 |
text-align: center;
|
14 |
font-size: 2rem;
|
15 |
display: block;
|
|
|
|
|
|
|
|
|
|
|
16 |
}
|
17 |
|
18 |
#duplicate-button {
|
19 |
display: block;
|
20 |
margin: 1rem auto;
|
21 |
color: #fff;
|
22 |
-
background: #c01515;
|
23 |
border-radius: 100vh;
|
24 |
padding: 0.5rem 1rem;
|
25 |
}
|
@@ -44,14 +50,14 @@ h2 {
|
|
44 |
|
45 |
#title {
|
46 |
font-size: var(--title-font-size);
|
47 |
-
color: #
|
48 |
font-family: 'Helvetica Neue', sans-serif;
|
49 |
text-transform: uppercase;
|
50 |
background: transparent;
|
51 |
}
|
52 |
|
53 |
#title span {
|
54 |
-
background: linear-gradient(45deg, #EF4E4E, #b42828);
|
55 |
background-clip: text;
|
56 |
color: transparent;
|
57 |
}
|
@@ -60,4 +66,33 @@ h2 {
|
|
60 |
text-align: center;
|
61 |
font-size: var(--subtitle-font-size);
|
62 |
margin-top: 1rem;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
}
|
|
|
7 |
text-align: center;
|
8 |
font-size: var(--title-font-size);
|
9 |
display: block;
|
10 |
+
color: #FF4444;
|
11 |
}
|
12 |
|
13 |
h2 {
|
14 |
text-align: center;
|
15 |
font-size: 2rem;
|
16 |
display: block;
|
17 |
+
color: #FF4444;
|
18 |
+
}
|
19 |
+
|
20 |
+
p {
|
21 |
+
color: #800000;
|
22 |
}
|
23 |
|
24 |
#duplicate-button {
|
25 |
display: block;
|
26 |
margin: 1rem auto;
|
27 |
color: #fff;
|
28 |
+
background: #c01515;
|
29 |
border-radius: 100vh;
|
30 |
padding: 0.5rem 1rem;
|
31 |
}
|
|
|
50 |
|
51 |
#title {
|
52 |
font-size: var(--title-font-size);
|
53 |
+
color: #FF0000;
|
54 |
font-family: 'Helvetica Neue', sans-serif;
|
55 |
text-transform: uppercase;
|
56 |
background: transparent;
|
57 |
}
|
58 |
|
59 |
#title span {
|
60 |
+
background: linear-gradient(45deg, #EF4E4E, #b42828);
|
61 |
background-clip: text;
|
62 |
color: transparent;
|
63 |
}
|
|
|
66 |
text-align: center;
|
67 |
font-size: var(--subtitle-font-size);
|
68 |
margin-top: 1rem;
|
69 |
+
color: #c01515;
|
70 |
+
}
|
71 |
+
|
72 |
+
/* Additional text elements you might want to style */
|
73 |
+
label {
|
74 |
+
color: #800000;
|
75 |
+
}
|
76 |
+
|
77 |
+
input, textarea {
|
78 |
+
color: #800000;
|
79 |
+
}
|
80 |
+
|
81 |
+
button {
|
82 |
+
color: #fff;
|
83 |
+
background: #c01515;
|
84 |
+
}
|
85 |
+
|
86 |
+
/* Links styling */
|
87 |
+
a {
|
88 |
+
color: #c01515;
|
89 |
+
}
|
90 |
+
|
91 |
+
a:hover {
|
92 |
+
color: #FF4444;
|
93 |
+
}
|
94 |
+
|
95 |
+
/* List items styling */
|
96 |
+
li {
|
97 |
+
color: #800000;
|
98 |
}
|