-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcondition.html
More file actions
252 lines (219 loc) · 8.25 KB
/
condition.html
File metadata and controls
252 lines (219 loc) · 8.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms and Conditions - SketchCode</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Google+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined" rel="stylesheet">
<style>
:root {
--primary-color: #6750A4;
--bg-color: #fffbff;
--surface-color: #f3edf7;
--text-main: #1c1b1f;
--text-sub: #49454f;
--border-color: #e0e0e0;
--error-color: #b3261e;
}
body {
margin: 0;
padding: 0;
font-family: 'Google Sans', 'Roboto', sans-serif;
background-color: var(--bg-color);
color: var(--text-main);
line-height: 1.6;
}
.container {
width: 100%;
max-width: 600px;
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
}
/* Top Header */
.top-bar {
display: flex;
align-items: center;
gap: 16px;
padding: 12px 0;
position: sticky;
top: 0;
background: var(--bg-color);
z-index: 10;
}
.back-btn {
text-decoration: none;
color: var(--text-main);
display: flex;
align-items: center;
padding: 8px;
border-radius: 50%;
}
.back-btn:active { background: var(--surface-color); }
.top-bar h1 {
font-size: 22px;
margin: 0;
font-weight: 700;
}
.meta-info {
font-size: 13px;
color: var(--text-sub);
margin-bottom: 30px;
padding-bottom: 10px;
border-bottom: 1px solid var(--border-color);
}
/* Content Sections */
.section {
margin-bottom: 28px;
}
.section-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}
.section-header i {
color: var(--primary-color);
font-size: 22px;
}
.section-header h2 {
font-size: 18px;
font-weight: 700;
margin: 0;
color: var(--text-main);
}
.content-body {
font-size: 14px;
color: var(--text-sub);
padding-left: 34px;
}
.content-body p { margin: 0 0 12px 0; }
.content-body ul {
margin: 0;
padding-left: 20px;
}
.content-body li { margin-bottom: 8px; }
/* Protection Box */
.legal-notice {
background-color: var(--surface-color);
border-left: 4px solid var(--primary-color);
padding: 20px;
border-radius: 12px;
margin: 30px 0;
}
.legal-notice h3 {
margin: 0 0 10px 0;
font-size: 16px;
color: var(--primary-color);
display: flex;
align-items: center;
gap: 8px;
}
.legal-notice p {
margin: 0;
font-size: 13px;
color: var(--text-main);
font-weight: 500;
}
/* Footer Links */
.footer-nav {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid var(--border-color);
display: flex;
flex-direction: column;
gap: 12px;
align-items: center;
}
.footer-link {
text-decoration: none;
color: var(--primary-color);
font-size: 14px;
font-weight: 500;
}
.copyright {
text-align: center;
padding: 30px 20px;
font-size: 12px;
color: var(--text-sub);
}
.bold { font-weight: 700; color: var(--text-main); }
</style>
</head>
<body>
<div class="container">
<div class="top-bar">
<a href="index.html" class="back-btn">
<span class="material-icons-outlined">arrow_back</span>
</a>
<h1>Terms of Service</h1>
</div>
<div class="meta-info">Effective Date: January 28, 2026</div>
<p style="font-size: 14px; color: var(--text-sub);">By using SketchCode Store, you agree to these Terms of Service. These rules ensure a transparent and collaborative environment for the development community.</p>
<div class="section">
<div class="section-header">
<span class="material-icons-outlined">groups</span>
<h2>1. Public Sharing & Collaboration</h2>
</div>
<div class="content-body">
<p>SketchCode is a free platform for sharing knowledge. By uploading content, you agree to the following:</p>
<ul>
<li>Any source code or project uploaded to SketchCode becomes <span class="bold">publicly accessible</span> to all users.</li>
<li>Users are permitted to download, study, and <span class="bold">modify</span> any shared assets for their own projects.</li>
<li>All shared materials are strictly for <span class="bold">educational purposes</span>.</li>
</ul>
</div>
</div>
<div class="section">
<div class="section-header">
<span class="material-icons-outlined">assignment_late</span>
<h2>2. Disclaimer of Liability</h2>
</div>
<div class="content-body">
<p>Responsibility for the use of shared code lies solely with the user who downloads or modifies it:</p>
<ul>
<li>The original uploader (developer) is <span class="bold">not responsible</span> for any errors, bugs, or consequences arising from the use or modification of their code by others.</li>
<li>SketchCode (CodeBySonu) provides the platform "as-is" and is not liable for issues caused by external files or third-party modifications.</li>
<li>Users download and implement code at their own risk.</li>
</ul>
</div>
</div>
<div class="section">
<div class="section-header">
<span class="material-icons-outlined">psychology</span>
<h2>3. Content Rights</h2>
</div>
<div class="content-body">
<p>While collaboration is encouraged, certain restrictions apply to prevent spam:</p>
<ul>
<li>You may modify and use codes, but <span class="bold" style="color:var(--error-color);">re-uploading</span> the exact same file or duplicate content back to the platform is strictly prohibited.</li>
<li>Content must match its description. Malicious or misleading uploads will result in an immediate account ban.</li>
</ul>
</div>
</div>
<div class="section">
<div class="section-header">
<span class="material-icons-outlined">visibility</span>
<h2>4. Manual Review</h2>
</div>
<div class="content-body">
<p>Reports regarding malicious content or scams will trigger a <span class="bold">manual review and investigation</span>. Tampering with the app's internal system will lead to a permanent ban.</p>
</div>
</div>
<div class="legal-notice">
<h3><span class="material-icons-outlined">info</span> Final Authority</h3>
<p>SketchCode (CodeBySonu) reserves the <span class="bold">final and discretionary right</span> to remove content or restrict accounts to maintain the safety and integrity of the free community.</p>
</div>
<div class="footer-nav">
<a href="privacy.html" class="footer-link">Privacy Policy</a>
<a href="index.html" class="footer-link">Download App</a>
<a href="Donation.html" class="footer-link">Donation & Support Policy</a>
<a href="mailto:codebysonu95@gmail.com" class="footer-link">Contact Us</a>
</div>
<div class="copyright">
<p>© 2026 CodeBySonu | SketchCode Store<br>All Rights Reserved.</p>
</div>
</div>
</body>
</html>