-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.html
More file actions
343 lines (288 loc) · 10.1 KB
/
Copy pathrules.html
File metadata and controls
343 lines (288 loc) · 10.1 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
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spin Wheel Submission Rules</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg-color: transparent;
--text-color: #000000;
--header-color: #000000;
--card-bg: #f9fafb;
--card-hover-bg: #ffffff;
--accent-bg: #eff6ff;
--border-color: #bfdbfe;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: transparent;
--text-color: #FFFFFF;
--header-color: #FFFFFF;
--card-bg: #eff2f6;
--card-hover-bg: #374151;
--accent-bg: #eaeefa;
--border-color: #3b82f6;
}
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--bg-color);
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.text-center {
text-align: center;
}
.mb-4 {
margin-bottom: 1rem;
}
.mb-3 {
margin-bottom: 0.75rem;
}
.mb-16 {
margin-bottom: 4rem;
}
.mt-12 {
margin-top: 3rem;
}
.text-3xl {
font-size: 1.875rem;
}
.text-2xl {
font-size: 1.5rem;
}
.text-xl {
font-size: 1.25rem;
}
.font-bold {
font-weight: 700;
}
.font-semibold {
font-weight: 600;
}
.text-gray-900 {
color: var(--text-color);
}
.text-header-h2 {
color : var(--header-color);
}
.text-gray-600 {
color: var(--text-color);
opacity: 0.8;
}
.text-gray-700 {
color: var(--text-color);
opacity: 0.9;
}
.text-blue-600 {
color: #2563eb;
}
.text-yellow-600 {
color: #d97706;
}
.text-red-600 {
color: #dc2626;
}
.text-green-600 {
color: #059669;
}
.text-purple-600 {
color: #7c3aed;
}
.text-orange-600 {
color: #ea580c;
}
.bg-gray-50 {
background-color: var(--card-bg);
}
.bg-blue-50 {
background-color: var(--accent-bg);
}
.bg-blue-100 {
background-color: rgba(59, 130, 246, 0.2);
}
.bg-yellow-100 {
background-color: rgba(217, 119, 6, 0.2);
}
.bg-red-100 {
background-color: rgba(220, 38, 38, 0.2);
}
.bg-green-100 {
background-color: rgba(5, 150, 105, 0.2);
}
.bg-purple-100 {
background-color: rgba(124, 58, 237, 0.2);
}
.bg-orange-100 {
background-color: rgba(234, 88, 12, 0.2);
}
.rounded-2xl {
border-radius: 1rem;
}
.rounded-xl {
border-radius: 0.75rem;
}
.p-6 {
padding: 1.5rem;
}
.p-8 {
padding: 2rem;
}
.p-3 {
padding: 0.75rem;
}
.inline-flex {
display: inline-flex;
}
.grid {
display: grid;
gap: 2rem;
}
.max-w-3xl {
max-width: 48rem;
}
.max-w-2xl {
max-width: 42rem;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
}
.border {
border-width: 1px;
}
.border-blue-200 {
border-color: var(--border-color);
}
@media (min-width: 768px) {
.md\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (min-width: 1024px) {
.lg\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (min-width: 768px) {
.md\:text-4xl {
font-size: 2.25rem;
}
}
.icon {
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<section id="submission-rules">
<div class="container">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4 text-header-h2">
Spin Wheel Submission Rules
</h2>
<p class="text-header-h2">
Please review the following guidelines before submitting your wheel to the community.
These rules help maintain a safe and enjoyable experience for all users.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3">
<div class="bg-gray-50 rounded-2xl p-6 text-center flex flex-col items-center">
<div class="inline-flex p-3 rounded-xl bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-shield-alt icon"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-3 ">
Review Process
</h3>
<p class="text-gray-600">
All wheels submitted to the Spin Wheel Community are subject to review and may be either approved or rejected at our discretion.
</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 text-center flex flex-col items-center">
<div class="inline-flex p-3 rounded-xl bg-yellow-100 text-yellow-600 mb-4">
<i class="fas fa-exclamation-triangle icon"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-3">
Content Guidelines
</h3>
<p class="text-gray-600">
Submitted content must comply with community guidelines and must not include any offensive, misleading, or copyrighted material.
</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 text-center flex flex-col items-center">
<div class="inline-flex p-3 rounded-xl bg-red-100 text-red-600 mb-4">
<i class="fas fa-ban icon"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-3">
Prohibited Content
</h3>
<p class="text-gray-600">
Wheels containing duplicate content or promoting gambling or similar activities may be rejected.
</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 text-center flex flex-col items-center">
<div class="inline-flex p-3 rounded-xl bg-green-100 text-green-600 mb-4">
<i class="fas fa-briefcase icon"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-3">
Usage Restrictions
</h3>
<p class="text-gray-600">
Published wheels are intended for personal and community use only and may not be used for commercial purposes.
</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 text-center flex flex-col items-center">
<div class="inline-flex p-3 rounded-xl bg-purple-100 text-purple-600 mb-4">
<i class="fas fa-copyright icon"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-3">
Intellectual Property
</h3>
<p class="text-gray-600">
By submitting a wheel, you acknowledge that it becomes the intellectual property of the Spin Wheel App. The content may be modified, altered, or removed at any time without prior notice.
</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 text-center flex flex-col items-center">
<div class="inline-flex p-3 rounded-xl bg-orange-100 text-orange-600 mb-4">
<i class="fas fa-bolt icon"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-3">
Platform Integrity
</h3>
<p class="text-gray-600">
The service must not be misused or exploited in any manner that could harm or interfere with the functionality or integrity of the platform.
</p>
</div>
</div>
<div class="mt-12 bg-blue-50 border border-blue-200 rounded-2xl p-8 text-center">
<div class="inline-flex p-3 rounded-xl bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-download icon"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-3">
Important Notice
</h3>
<p class="text-gray-700 text-lg max-w-2xl mx-auto">
By submitting your wheel, you agree to comply with all community guidelines and rules.
Failure to adhere to these rules may result in content rejection or account restrictions.
</p>
</div>
</div>
</section>
</body>
</html>