-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtutorial.html
More file actions
355 lines (309 loc) · 8.92 KB
/
Copy pathtutorial.html
File metadata and controls
355 lines (309 loc) · 8.92 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
344
345
346
347
348
349
350
351
352
353
354
355
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tutorial</title>
<style>
/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background: radial-gradient(circle at top left, #0d0f1a, #141627);
color: #fff;
scroll-behavior: smooth;
overflow-x: hidden;
}
/* Floating Elements */
.floating-circle {
position: absolute;
width: 150px;
height: 150px;
background: linear-gradient(135deg, #1969ff, #21a6ff);
border-radius: 50%;
filter: blur(50px);
opacity: 0.6;
z-index: -1;
animation: float 6s infinite alternate ease-in-out;
}
.circle-1 { top: 10%; left: 10%; }
.circle-2 { bottom: 10%; right: 10%; }
@keyframes float {
from { transform: translateY(0); }
to { transform: translateY(-20px); }
}
/* Sticky Navigation Bar */
.navbar {
position: fixed;
top: 0;
width: 100%;
padding: 10px 20px;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.navbar a {
color: #fff;
font-size: 1rem;
text-decoration: none;
font-weight: 500;
padding: 10px;
border-radius: 20px;
transition: background 0.3s ease;
}
.navbar a:hover {
background: rgba(255, 255, 255, 0.2);
}
.nav-links {
display: flex;
gap: 30px;
margin-left: 530px;
}
/* Button Styling */
.navbar-btn {
margin-left: auto;
margin-right: 40px;
padding: 8px 24px;
font-size: 1rem;
border-radius: 20px;
background: linear-gradient(90deg, #115cff, #1d99ff);
color: #fff;
border: none;
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease;
box-shadow: 0 4px 15px rgba(255, 118, 184, 0.4);
}
/* Section Styling */
.section {
padding: 60px 20px;
text-align: center;
max-width: 900px;
margin: 0 auto;
}
/* Glassmorphism Card */
.glass-card {
background: rgba(255, 255, 255, 0.07);
border-radius: 20px;
backdrop-filter: blur(15px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
padding: 50px;
margin-bottom: 40px;
border: 1px solid rgba(255, 255, 255, 0.18);
transition: transform 0.3s ease;
width: 100%; /* Expands the card to take full width of the parent container */
max-width: 2000px; /* Allows the card to expand more while keeping a limit */
}
.glass-card:hover {
transform: translateY(-14px);
}
/* Heading Styling */
h1, h2, h3 {
background: linear-gradient(90deg, #0d45ff, #75fff8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
/* TIMELINE */
.timeline-container {
display: flex;
justify-content: center;
gap: 20px;
padding: 20px;
list-style: none;
overflow-x: visible; /* Allow items to be visible */
flex-wrap: wrap; /* Allow wrapping to prevent cutting off */
}
.timeline-item {
background: rgba(255, 255, 255, 0.07);
padding: 20px;
border-radius: 12px;
backdrop-filter: blur(10px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
width: 500px; /* Increase width */
text-align: center;
transition: transform 0.3s ease;
height: 200px;
list-style: none;
flex-shrink: 0; /* Prevent shrinking */
}
.timeline-item:hover {
transform: translateY(-10px);
}
.timeline-item::before {
content: '';
position: absolute;
top: 50%;
left: -20px;
width: 15px;
height: 15px;
border-radius: 50%;
transform: translateY(-50%);
}
.timeline-item:last-child::before {
display: none;
}
/* Scrollbar Styling */
.timeline-container::-webkit-scrollbar {
height: 8px;
}
.timeline-container::-webkit-scrollbar-thumb {
background-color: #2bb7e2;
border-radius: 10px;
}
/* Button Styling */
.btn {
background: linear-gradient(90deg, #1553fd, #4493fc);
padding: 12px 32px;
color: #fff;
font-size: 1rem;
font-weight: 500;
border: none;
border-radius: 30px;
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease;
margin-top: 15px;
}
.faq-item {
background: rgba(255, 255, 255, 0.05);
padding: 15px;
border-radius: 12px;
margin-bottom: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
transition: background 0.3s ease;
text-align: left;
}
.faq-item summary {
font-size: 1.2rem;
font-weight: 600;
color: #fff;
cursor: pointer;
list-style: none;
outline: none;
display: flex;
justify-content: space-between;
align-items: center;
}
.faq-item summary::after {
content: '▼';
font-size: 1rem;
transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
transform: rotate(180deg);
}
.faq-item p {
padding: 10px 0;
color: #d1d1e9;
margin: 0;
}
.join-btn {
margin-top: 20px;
background: linear-gradient(90deg, #1c2bff, #288bfc);
padding: 14px 40px;
color: #fff;
font-size: 1.2rem;
border: none;
border-radius: 30px;
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease;
box-shadow: 0 4px 15px rgba(126, 214, 223, 0.4);
}
.join-btn:hover {
background: linear-gradient(90deg, #C77DFF,#E040FB);
transform: scale(1.05);
}
.navbar-btn:hover {
background: linear-gradient(90deg, #C77DFF,#E040FB);
transform: scale(1.05);
}
/* Edge Images */
.edge-image {
position: fixed;
z-index: -1; /* Keep behind content */
opacity: 0.7;
transition: transform 0.3s ease;
}
.edge-image:hover {
transform: scale(1.05);
}
/* Left side images */
.edge-image.left {
left: 20px;
}
/* Right side images */
.edge-image.right {
right: 20px;
}
.edge-image {
width: 100px; /* Adjust as needed */
height: auto;
}
.special{
top: 100px;
}
</style>
<script>
document.querySelectorAll('.nav-link').forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 60, // Adjust for navbar height
behavior: 'smooth'
});
}
});
});
</script>
</head>
<body >
<!-- Floating Elements -->
<div class="floating-circle circle-1"></div>
<div class="floating-circle circle-2"></div>
<div id="intro" class="section">
<div class="glass-card">
<h1>Want Some Help?</h1>
<p class="handwriting">Connect with the awesome community or follow some of our tips. Choice is yours!</p>
</div>
</div>
<div id="tutorial" class="section">
<div class="glass-card">
<h2>Tools/Software</h2>
<p>There is an abundance of good softare out there. Here are some of our favourites</p>
<br>
<h3>For 2D</h3>
<ul>
<li>Krita</li>
<li>Libresrite</li>
<li>Opentoonz</li>
<li>GIMP</li>
<li>Pixelorama</li>
<li>GraphicsGale</li>
</ul>
<br>
<h3>For 3D</h3>
<ul>
<li>Blender</li>
<li>Magica Voxel</li>
<li>Plask</li>
</ul>
</div>
</div>
<div id="resources" class="section">
<div class="glass-card">
<h2>Resources</h2>
<p>The tool is as good as the craftsman. So to learn your tools to the fullest, we tried to find some good resources</p>
<a href="https://www.youtube.com/watch?v=lfR7Qj04-UA&list=PLp99DFIAFv-xM8l6Uzmg83yvGRu6jMfid">Saultoons Guide for Pixel Art and Aseprite</a>
<a href="https://youtu.be/4haAdmHqGOw?si=5LI25kgcesYZyZz1">Blender Guru's Donut</a>
<a href="https://www.youtube.com/watch?v=G2GXE1IMdLw&list=PLyZDKlVOJ6PD-5sEIx1bo09RnIiaTxbKi">Magica Voxel guide by Pedro Casavecchia</a>
</div>
</div>