File size: 5,417 Bytes
2003543
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f1f1f1;
    background-image: url("/images/grass-background.png");
    background-size: auto;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background-color: #141414;
    color: #f1f1f1;
}

header {
    background-color: #4caf50;
    color: black;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

main {
    flex: 1;
    padding: 20px;
}
.darkmodediv {
    padding-left: 480px;
    padding-right: 480px;
    background: grey;
}

.counter, .info, .clients, .danger-zone {
    margin-bottom: 20px;
}

.Container18, .Container15, .Container112, .ContainerOther {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

button, .source-btn, .dsc-btn, .clr-btn {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.clientbutton button {
    background-color: #5fff5a;
}
button:hover {
    transform: scale(1.05)
}
.clr-btn:hover {
    background-color: #ff3c00;
    transform: scale(1.05);
}
.dsc-btn:hover {
    background-color: #9656ce;
    transform: scale(1.05);
}
.source-btn:hover {
    background-color: #000;
    transform: scale(1.05);
}
.source-btn {
    background-color: #000; /* Black color for GitHub button */
}

.dsc-btn {
    background-color: #9656ce;
}

.clr-btn {
    background-color: #ff3c00;
}

.search-container {
    margin: 20px 0;
}

#search-bar {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 50%;
    max-width: 400px;
    transition: border-color 0.3s ease;
}

#search-bar:focus {
    border-color: #4caf50;
    outline: none;
}

.footer {
    background-color: #808080;
    color: white; /* Light text color for footer */
    padding: 10px;
    text-align: center;
    opacity: 0.9;
}

.footer a {
    color: white; /* Light text color for footer links */
    text-decoration: none;
    margin: 0 10px;
    opacity: 1;
}

.footer a:hover {
    text-decoration: underline;
    opacity: 1;
}

.footer button {
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    opacity: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.modal h2 {
    color: #333;
}

.modal p {
    color: #555;
    margin-bottom: 20px;
}

.modal button {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    margin: 5px;
}

.modal button.cancel-btn {
    background-color: #f44336;
}

.modal button:hover {
    background-color: #45a049;
}

.modal button.cancel-btn:hover {
    background-color: #e53935;
}

.copy-link {
    background-color: #f4f4f4;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

.copy-btn {
    background-color: #9656ce;
}

.copy-btn:hover {
    background-color: #5b209a;
}

/* Dark Mode Styles */
body.dark-mode .modal-content {
    background-color: #333;
    color: #f1f1f1;
}

body.dark-mode .modal h2 {
    color: #f1f1f1;
}

body.dark-mode .modal p {
    color: #ccc;
}

body.dark-mode #search-bar {
    background-color: #444;
    color: #f1f1f1;
    border-color: #555;
}

body.dark-mode #search-bar:focus {
    border-color: #4caf50;
}

body.dark-mode .footer {
    background-color: #444; /* Dark gray color for footer in dark mode */
    color: white; /* Light text color for footer in dark mode */
}

body.dark-mode .footer a {
    color: white; /* Light text color for footer links in dark mode */
}

body.dark-mode .footer button.server-list {
    background-color: #000; /* Black color for Server List button in dark mode */
}

body.dark-mode .footer button.server-list:hover {
    background-color: #333; /* Slightly lighter shade for hover effect in dark mode */
}

body.dark-mode .footer button.eaglerrinth-mod-list {
    background-color: #9656ce; /* Same color as Discord link button in dark mode */
}

body.dark-mode .footer button.eaglerrinth-mod-list:hover {
    background-color: #a751f2; /* Slightly lighter shade for hover effect in dark mode */
}