-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.sass
572 lines (560 loc) · 12.7 KB
/
style.sass
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
$color-black: #000
$color-white: #FFF
$color-grey-dark: #1A1A1A
$color-grey-light: #DADADA
$color-grey-lighter: #3A3A3A
$color-grey: #939393
$color-yellow-primary: #FFFC00
$color-pink: #FF00C7
$media-width: 1000px
*
font-family: Arial, Helvetica, sans-serif
html
background: $color-black
scroll-behavior: smooth
height: 100vh
.body
position: relative
h1,h2,h3,h4
font-weight: 400
#showLess
display: none
.menu
position: fixed
top: 40px
left: 32px
display: flex
flex-direction: column
gap: 10px
mix-blend-mode: difference
z-index: 2
@media(max-width: $media-width)
display: none
&-item
color: $color-white
text-decoration: unset
cursor: pointer
&:hover
text-decoration: underline
&.active
color: $color-pink
.burger
z-index: 2
position: fixed
top: 40px
right: 32px
cursor: pointer
mix-blend-mode: difference
visibility: hidden
@media(max-width: $media-width)
visibility: visible
.mobile-menu
visibility: hidden
display: flex
flex-direction: column
align-items: center
justify-content: space-between
position: fixed
z-index: 3
width: 100vw
height: 100vh
background: $color-yellow-primary
&.visible
visibility: visible
.close
z-index: 2
position: fixed
top: 40px
right: 32px
cursor: pointer
.menu-links
display: flex
flex-direction: column
gap: 20px
text-align: center
margin-top: 50px
.menu-item
color: $color-black
font-size: 32px
line-height: 57px
.paper
font-size: 32px
line-height: 57px
margin: 50pxs
.mobile-socials
margin-bottom: 50px
display: flex
gap: 40px
mix-blend-mode: difference
.socials
z-index: 2
position: fixed
top: 40px
right: 32px
display: flex
flex-direction: column
gap: 32px
mix-blend-mode: difference
@media(max-width: $media-width)
display: none
.main-badge
z-index: 2
position: fixed
bottom: 100px
left: -32px
display: flex
background-color: $color-yellow-primary
color: $color-black
padding: 2px 21px
border-radius: 20px
transform: rotate(-90deg)
font-size: 16px
line-height: 31px
mix-blend-mode: difference
text-decoration: none
@media(max-width: $media-width)
display: none
.section
&-weare,&-gameapps,&-roadmap
background-color: $color-grey-dark
&-weare
position: relative
display: flex
flex-direction: column
align-items: center
justify-content: center
color: $color-white
padding: 50px
@media(max-width: $media-width)
padding: 16px
.title
font-size: 30px
text-align: center
margin: 0
line-height: 34px
@media(max-width: $media-width)
font-size: 24px
.logo
width: 600px
object-fit: contain
margin: 100px 0 50px
@media(max-width: $media-width)
height: 100px
margin: 50px
width: auto
.text
font-size: 24px
line-height: 31px
color: $color-grey
text-align: center
margin-bottom: 45px
max-width: 930px
@media(max-width: $media-width)
font-size: 18px
.hidden-info
max-height: 0
overflow: hidden
transition: 1s
.title
margin-top: 80px
&:last-child
margin-bottom: 100px
@media(max-width: $media-width)
margin-top: 20px
.text-block
display: flex
justify-content: center
gap: 40px
max-width: 800px
font-size: 18px
color: $color-grey
@media(max-width: $media-width)
gap: 10px
flex-direction: column
.small-text
font-size: 18px
.normal-text
font-size: 22px
.w50
width: 50%
@media(max-width: $media-width)
width: 100%
.text-center
text-align: center
.borders
display: flex
margin: auto
@media(max-width: $media-width)
display: none
.last-title
text-align: center
margin: 20px 0 100px 0px
@media(max-width: $media-width)
margin: 20px 0 40px 0px
.button
display: flex
gap: 10px
color: $color-yellow-primary
font-size: 30px
border: unset
background: unset
cursor: pointer
margin-bottom: 60px
.plus, .minus
font-size: 36px
line-height: 32px
.description
color: $color-grey
margin: 0
.arrow
color: $color-yellow-primary
font-size: 100px
position: absolute
bottom: -50px
mix-blend-mode: difference
@media(max-width: $media-width)
font-size: 40px
bottom: -22px
&-nft
background-color: $color-yellow-primary
padding: 80px 0 170px
display: flex
flex-direction: column
align-items: center
overflow: hidden
width: 100%
@media(max-width: $media-width)
padding: 32px 0
.title
font-size: 52px
line-height: 60px
text-align: center
margin-bottom: 16px
@media(max-width: $media-width)
font-size: 32px
line-height: 37px
.text
margin: 0
font-size: 24px
line-height: 31px
text-align: center
color: $color-black
max-width: 930px
@media(max-width: $media-width)
font-size: 18px
line-height: 25px
.carousel
z-index: 2
margin: 70px 0 40px
width: 100%
@media(max-width: $media-width)
gap: 16px
margin: 20px 0
.img
width: 170px
height: 170px
object-fit: contain
border-radius: 12px
@media(max-width: $media-width)
width: 128px
height: 128px
.link
font-size: 30px
line-height: 34px
text-align: center
color: $color-black
background: $color-white
border-radius: 6px
padding: 10px
text-decoration: unset
&-gameapps
padding: 80px 150px
@media(max-width: $media-width)
padding: 16px
.title
color: $color-white
font-size: 52px
line-height: 60px
max-width: 936px
margin: auto
margin-bottom: 80px
@media(max-width: $media-width)
font-size: 32px
line-height: 37px
.game
display: flex
gap: 40px
justify-content: space-between
margin: auto
margin-bottom: 130px
max-width: 936px
&:nth-child(3)
flex-direction: row-reverse
@media(max-width: $media-width)
flex-direction: column-reverse
&:last-child
margin-bottom: 0
&-info
display: flex
flex-direction: column
max-width: 500px
position: sticky
align-self: flex-start
top: 0
&-name
display: flex
align-items: center
gap: 10px
font-size: 30px
line-height: 34px
color: $color-white
margin-top: 0
margin-bottom: 16px
@media(max-width: $media-width)
font-size: 24px
flex-direction: column
align-items: start
margin: 0
&-version
color: $color-grey
font-size: 18px
line-height: 21px
&-description
margin-top: 0
margin-bottom: 40px
color: $color-grey
font-size: 24px
line-height: 30px
@media(max-width: $media-width)
font-size: 18px
line-height: 25px
&-screenshot-wrapper
position: relative
@media(max-width: $media-width)
background-image: unset
width: 100%
padding: 0
&-screenshot
width: 255px
height: 500px
@media(max-width: $media-width)
width: 100%
height: 275px
object-fit: cover
&-border
width: 285px
position: absolute
top: -15px
left: -16px
height: 535px
@media(max-width: $media-width)
display: none
&-links
display: flex
gap: 10px
.link
display: flex
align-items: center
justify-content: center
border-radius: 4px
background: $color-yellow-primary
font-size: 24px
line-height: 28px
text-align: center
color: $color-black
text-decoration: unset
height: 50px
width: 180px
@media(max-width: $media-width)
flex-direction: column-reverse
margin-bottom: 50px
&-roadmap
padding: 80px 150px
overflow: hidden
@media(max-width: $media-width)
padding: 16px
.wrapper
max-width: 936px
margin: auto
.title
font-size: 52px
line-height: 60px
color: $color-white
margin: 0
.table-wrapper
position: relative
height: 500px
margin-top: 80px
overflow-x: scroll
width: 1200px
@media(min-width: 1500px)
width: 2100px
@media(max-width: $media-width)
margin-left: 15px
width: 100%
.table
position: absolute
color: $color-grey
border-collapse: collapse
display: flex
flex-direction: column
.row
display: flex
border-bottom: 1px solid $color-grey-lighter
&-months
height: 80px
.task-wrapper
height: 66px
position: relative
.row-header
padding-top: 20px
width: 135px
border-right: 1px solid $color-grey-lighter
color: $color-white
display: flex
justify-content: center
position: sticky
left: 0
background: $color-grey-dark
z-index: 3
.cell
position: relative
display: flex
flex-direction: column
gap: 1px
border-right: 1px dashed $color-grey-lighter
width: 360px
min-height: 66px
.header
display: flex
align-items: center
border-right: 1px dashed $color-grey-lighter
width: 360px
min-height: 66px
.month
margin-left: 12px
.data
position: absolute
left: 12px
top: 12px
text-align: center
font-size: 18px
padding: 10px 20px
display: flex
justify-content: center
align-items: center
color: $color-black
background-color: $color-grey-light
border-radius: 100px
z-index: 2
&.count-1
width: calc(300px * 1)
&.count-2
width: calc(330px * 2)
&.count-3
width: calc(340px * 3)
&.count-4
width: calc(345px * 4)
&.count-5
width: calc(350px * 5)
&.count-6
width: calc(350px * 6)
&:nth-child(2)
top: 60px
&:nth-child(3)
top: 110px
&-contacts
background-color: $color-black
@media(max-width: $media-width)
padding: 10px
.title
font-size: 52px
line-height: 60px
text-align: center
color: $color-white
@media(max-width: $media-width)
font-size: 32px
line-height: 37px
.description
font-size: 30px
line-height: 34px
text-align: center
color: $color-grey
width: 750px
margin: 20px auto 80px
@media(max-width: $media-width)
width: unset
font-size: 18px
line-height: 25px
margin: 10px
.heroes
display: flex
gap: 35px
align-items: center
justify-content: center
@media(max-width: $media-width)
flex-wrap: wrap
.hero
.image
width: 150px
height: 150px
object-fit: contain
@media(max-width: $media-width)
width: 135px
.name
color: $color-white
font-size: 24px
line-height: 28px
margin: 0
text-align: center
.email
color: $color-yellow-primary
font-size: 102px
line-height: 117px
text-align: center
@media(max-width: $media-width)
font-size: 32px
line-height: 37px
.links
display: flex
justify-content: center
gap: 10px
.link
font-size: 14px
line-height: 16px
color: $color-grey
.rights
font-size: 14px
line-height: 16px
color: $color-grey
text-align: center
padding-bottom: 50px
.privacy
background-color: $color-grey-dark
color: $color-white
height: 100%
.logo
margin: 32px
.content
max-width: 770px
margin: auto
@media(max-width: $media-width)
margin: 30px
.heading
font-size: 88px
margin: 0
margin-bottom: 70px
@media(max-width: $media-width)
font-size: 44px
margin-bottom: 30px
.title
font-size: 30px
@media(max-width: $media-width)
font-size: 20px
.text
font-size: 18px
color: $color-grey
@media(max-width: $media-width)
font-size: 14px
.carousel-cell
margin-right: 10px