File size: 3,698 Bytes
e0b1273
 
 
33ea9de
 
077d11d
33ea9de
74fd28a
33ea9de
e0b1273
 
 
 
 
 
0008e1a
e0b1273
 
 
 
 
 
33ea9de
2985a49
 
 
0008e1a
e0b1273
 
 
 
 
 
0008e1a
e0b1273
 
0008e1a
 
 
 
14089c9
e0b1273
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33ea9de
e0b1273
 
 
14089c9
e0b1273
 
 
33ea9de
e0b1273
7735bc6
e0b1273
 
 
 
 
 
 
c12e637
2985a49
 
0008e1a
2985a49
0008e1a
2985a49
 
 
0008e1a
 
 
 
 
 
 
 
 
2985a49
 
 
 
0008e1a
 
 
 
 
14089c9
2985a49
 
 
 
0008e1a
 
 
2985a49
 
 
14089c9
2985a49
 
 
 
0008e1a
 
 
 
 
 
 
33ea9de
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e0b1273
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
:root {
  --title-font-size: clamp(1.5rem, 6vw, 3rem);
  --subtitle-font-size: clamp(1rem, 2vw, 1.2rem);
  --title-color: #FF0000;       /* Bright red title */
  --primary-color: #333333;     /* Dark gray */
  --secondary-color: #FFFFFF;   /* Changed to white for subtitle */
  --accent-color: #666666;      /* Light gray */
  --text-color: #2B2B2B;        /* Near black for text */
  --light-accent: #E0E0E0;      /* Very light gray */
}

h1 {
  text-align: center;
  font-size: var(--title-font-size);
  display: block;
  color: var(--primary-color);
}

h2 {
  text-align: center;
  font-size: 2rem;
  display: block;
  color: var(--primary-color);
}

p {
  color: var(--text-color);
}

#duplicate-button {
  display: block;
  margin: 1rem auto;
  color: #fff;
  background: var(--primary-color);
  border-radius: 100vh;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
}

#duplicate-button:hover {
  background: var(--accent-color);
}

#component-0 {
  max-width: 85%;
  margin: 2rem auto;
  padding: 2rem;
}

@media (max-width: 600px) {
  #component-0 {
    max-width: 100%;
    padding: 0.5rem;
  }
}

#title-container {
  text-align: center;
  padding: 2rem 0;
}

#title {
  font-size: var(--title-font-size);
  color: var(--title-color);
  font-family: 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
  background: transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#title span {
  background: linear-gradient(45deg, #EF4E4E, #b42828);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

#subtitle {
  text-align: center;
  font-size: var(--subtitle-font-size);
  margin-top: 1rem;
  color: #FFFFFF;    /* Direct white color for better visibility */
}

/* Additional text elements styling */
label {
  color: var(--text-color);
}

input, textarea {
  color: var(--text-color);
  border: 1px solid var(--accent-color);
  background-color: rgba(255, 255, 255, 0.9);
}

input:focus, textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 5px var(--light-accent);
}

button {
  color: #fff;
  background: var(--primary-color);
  transition: background-color 0.3s ease;
}

button:hover {
  background: var(--accent-color);
}

/* Links styling */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* List items styling */
li {
  color: var(--text-color);
}

/* Selection styling */
::selection {
  background: var(--light-accent);
  color: var(--primary-color);
}

/* Form elements */
select, input[type="text"], input[type="number"], textarea {
  border: 1px solid var(--accent-color);
  padding: 8px;
  border-radius: 4px;
  color: var(--text-color);
  background-color: white;
}

select:focus, input[type="text"]:focus, input[type="number"]:focus, textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 3px var(--accent-color);
}

/* Tables if needed */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1rem 0;
}

th, td {
  border: 1px solid var(--accent-color);
  padding: 8px;
  text-align: left;
  color: var(--text-color);
}

th {
  background-color: var(--light-accent);
  color: var(--primary-color);
}

/* Code blocks if needed */
code {
  background-color: var(--light-accent);
  padding: 2px 4px;
  border-radius: 3px;
  color: var(--primary-color);
}

/* Alert messages if needed */
.alert {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 4px;
  border: 1px solid var(--accent-color);
  background-color: var(--light-accent);
  color: var(--text-color);
}

/* Loading indicators if needed */
.loading {
  color: var(--secondary-color);
}