TheAwakenOne commited on
Commit
14089c9
·
1 Parent(s): 33ea9de

Updated font colors in style.css

Browse files
Files changed (1) hide show
  1. style.css +11 -4
style.css CHANGED
@@ -3,7 +3,7 @@
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 */
@@ -38,7 +38,7 @@ p {
38
  }
39
 
40
  #duplicate-button:hover {
41
- background: var(--secondary-color);
42
  }
43
 
44
  #component-0 {
@@ -65,6 +65,7 @@ p {
65
  font-family: 'Helvetica Neue', sans-serif;
66
  text-transform: uppercase;
67
  background: transparent;
 
68
  }
69
 
70
  #title span {
@@ -79,6 +80,12 @@ p {
79
  font-size: var(--subtitle-font-size);
80
  margin-top: 1rem;
81
  color: var(--secondary-color);
 
 
 
 
 
 
82
  }
83
 
84
  /* Additional text elements styling */
@@ -105,7 +112,7 @@ button {
105
  }
106
 
107
  button:hover {
108
- background: var(--secondary-color);
109
  }
110
 
111
  /* Links styling */
@@ -116,7 +123,7 @@ a {
116
  }
117
 
118
  a:hover {
119
- color: var(--secondary-color);
120
  }
121
 
122
  /* List items styling */
 
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: #FFFFFF; /* White for subtitle */
7
  --accent-color: #666666; /* Light gray */
8
  --text-color: #2B2B2B; /* Near black for text */
9
  --light-accent: #E0E0E0; /* Very light gray */
 
38
  }
39
 
40
  #duplicate-button:hover {
41
+ background: var(--accent-color);
42
  }
43
 
44
  #component-0 {
 
65
  font-family: 'Helvetica Neue', sans-serif;
66
  text-transform: uppercase;
67
  background: transparent;
68
+ text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
69
  }
70
 
71
  #title span {
 
80
  font-size: var(--subtitle-font-size);
81
  margin-top: 1rem;
82
  color: var(--secondary-color);
83
+ text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
84
+ font-weight: 500;
85
+ background-color: rgba(51, 51, 51, 0.8); /* Semi-transparent dark background */
86
+ padding: 0.5rem 1rem;
87
+ border-radius: 4px;
88
+ display: inline-block;
89
  }
90
 
91
  /* Additional text elements styling */
 
112
  }
113
 
114
  button:hover {
115
+ background: var(--accent-color);
116
  }
117
 
118
  /* Links styling */
 
123
  }
124
 
125
  a:hover {
126
+ color: var(--accent-color);
127
  }
128
 
129
  /* List items styling */