-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
230 lines (195 loc) · 4.88 KB
/
styles.css
File metadata and controls
230 lines (195 loc) · 4.88 KB
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/* General Styles */
body {
font-family: 'Inconsolata', monospace;
transition: background-color 0.3s ease;
overflow-y: auto;
margin: 0;
padding: 0;
font-size: 16px;
background: linear-gradient(270deg, #ffb6b9, #fae3d9, #bbded6, #8acdea, #a2c0fa, #cdbdff, #c58bf2, #e181ac);
background-size: 200% 200%;
animation: gradientBG 30s infinite;
}
/* Animated Backgrounds */
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
@keyframes jewelBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* Container */
.container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 10px;
border: 1px solid #ccc;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Title and Subtitle */
.title {
font-family: 'ADLaM Display', cursive; /* Default font for all themes except Brat */
text-align: center;
font-size: 3.5em;
margin-bottom: 10px;
}
.subtitle {
text-align: center;
margin-bottom: 20px;
}
/* Controls for theme and search */
.controls {
display: flex;
justify-content: center;
gap: 10px;
margin-bottom: 20px;
}
select, input[type="text"] {
padding: 8px;
font-family: 'Inconsolata', monospace;
}
/* Copy container */
.copy-container {
display: flex;
gap: 10px;
align-items: center;
}
.copy-container button {
font-family: 'Inconsolata', monospace;
margin-left: auto;
}
textarea {
width: 100%;
height: 200px;
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
font-family: 'Inconsolata', monospace;
resize: none;
}
/* Channel List Items */
#channelList {
display: flex;
flex-wrap: wrap;
gap: 10px; /* Compact spacing */
justify-content: flex-start;
}
li {
list-style-type: none;
padding: 8px 12px;
border-radius: 5px;
transition: background-color 0.3s ease;
display: inline-block;
text-align: center;
}
li a {
text-decoration: none;
color: inherit;
}
/* Dark Mode - Jewel Tones */
body[data-theme='dark'] {
background: linear-gradient(270deg, #2b2b3a, #3a3a49, #4a4a59, #5a5a69, #6a6a79, #7a7a89, #8a8a99, #9a9aa9);
background-size: 200% 200%;
animation: jewelBG 30s infinite;
color: #e6e6e6;
}
body[data-theme='dark'] .title,
body[data-theme='dark'] .subtitle {
color: #e6e6e6;
}
body[data-theme='dark'] .container {
background-color: rgba(46, 49, 65, 0.8);
border-color: #3c4162;
}
body[data-theme='dark'] li {
background-color: #4d5278;
color: #e6e6e6;
padding: 8px 12px;
border-radius: 5px;
}
/* Greyscale Mode */
body[data-theme='greyscale'] {
background: linear-gradient(270deg, #000000, #333333, #555555, #777777, #999999, #bbbbbb, #dddddd, #ffffff);
background-size: 200% 200%;
animation: greyscaleBG 30s infinite;
color: #333;
}
body[data-theme='greyscale'] .container {
background-color: rgba(200, 200, 200, 0.8);
border-color: #aaa;
}
body[data-theme='greyscale'] li {
background-color: #e0e0e0;
color: #333;
}
/* Hacker Mode */
body[data-theme='hacker'] {
background: #000000;
color: #00ff00;
}
body[data-theme='hacker'] .title {
color: #00ff00;
}
body[data-theme='hacker'] .container {
background-color: rgba(0, 0, 0, 0.8);
border-color: #00ff00;
}
body[data-theme='hacker'] li {
background-color: #000000;
border: 1px solid #00ff00;
color: #00ff00;
}
body[data-theme='hacker'] li a {
color: #00ff00;
}
body[data-theme='hacker'] button,
body[data-theme='hacker'] select {
background-color: #000000;
border: 1px solid #00ff00;
color: #00ff00;
}
/* Brat Theme */
body[data-theme='brat'] {
background-color: #8ACE00 !important; /* Brat green background */
color: black;
}
body[data-theme='brat'] .title {
font-family: 'Arial Narrow', sans-serif; /* Use Arial Narrow in Brat theme */
color: black;
}
body[data-theme='brat'] .container {
background-color: #8ACE00;
border: 2px solid black;
}
body[data-theme='brat'] li {
background-color: #8ACE00;
color: black;
border: 1px solid black;
}
body[data-theme='brat'] a {
color: black;
}
body[data-theme='brat'] button,
body[data-theme='brat'] select,
body[data-theme='brat'] #searchBar,
body[data-theme='brat'] #rawList {
background-color: white;
border: 1px solid black;
color: black;
}
/* Ensure ADLaM Display font for title in all themes except Brat */
body:not([data-theme='brat']) .title {
font-family: 'ADLaM Display', cursive;
}
/* Dark Mode Link Styles */
body[data-theme='dark'] a {
color: #e6e6e6; /* Light color for better readability */
}
body[data-theme='dark'] a:visited {
color: #b0b0b0; /* Light gray for visited links to differentiate but still readable */
}