-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
505 lines (500 loc) · 9.26 KB
/
styles.css
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
@import url(base.css);
.grid-item,
.nav {
background-color: var(--dark-card);
}
.product-card h1,
p {
letter-spacing: 1px;
}
.article-card div a:hover,
.discord-card div a:hover,
.grid-item:hover,
.nav:hover {
border-color: var(--red-main);
transition: 0.3s ease-in-out;
}
.article-card div,
.to-do-card ul {
height: 100%;
width: 100%;
}
.product-card div ul li,
.to-do-card ul li,
body {
background-color: var(--dark-background);
}
.discord-card h3,
body {
display: flex;
align-items: center;
}
.product-card h1,
body {
color: var(--white-main);
}
.article-card div div p,
.discord-card div a,
.discord-card h3 i,
.discord-card p.sub,
a {
color: var(--grey-main);
}
body {
flex-direction: column;
gap: 54px;
font-family: Roboto;
padding: 3% 20%;
}
h1 {
font-size: 24px;
}
p {
font-size: 18px;
object-fit: fill;
}
a {
text-decoration: none;
}
.art-card:hover div > h1,
.art-card:hover div > i,
.artstation-card:hover div > h1,
.artstation-card:hover div > i,
.discord-card div a:hover > i,
.github-card:hover div > h1,
.github-card:hover div > i,
.insta-card:hover div > h1,
.insta-card:hover div > i,
.nav li a:hover,
.product-card div ul li:hover > a,
.product-card:hover > div h1,
.to-do-card ul li:hover > .content,
a:hover {
color: var(--red-main);
transition: 0.3s ease-in-out;
}
.profile-card span,
a.selected {
color: var(--red-main);
}
.nav,
.profile-card div div ul {
display: flex;
list-style-type: none;
}
.nav,
.profile-card div div {
justify-content: space-between;
}
.nav {
width: 320px;
gap: 12px;
border-radius: 2rem;
border: 2px solid var(--grey-main);
padding: 9px 18px;
font-size: 14px;
font-weight: 600;
}
.nav li a:hover,
.to-do-card ul li:hover > .content {
cursor: pointer;
}
#grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
list-style-type: none;
}
.grid-list-default {
grid-template-areas: 'profile-card profile-card map-card product-card' 'discord-card insta-card to-do-card product-card' 'article-card article-card to-do-card github-card' 'my-stack-card my-stack-card artstation-card art-card';
}
.grid-list-about {
grid-template-areas: 'profile-card profile-card map-card insta-card' 'my-stack-card my-stack-card to-do-card product-card' 'artstation-card github-card to-do-card product-card' 'discord-card article-card article-card art-card';
}
.grid-list-projects {
grid-template-areas: 'profile-card profile-card product-card to-do-card' 'artstation-card github-card product-card to-do-card' 'art-card my-stack-card my-stack-card insta-card' 'article-card article-card discord-card map-card';
}
.grid-list-media {
grid-template-areas: 'profile-card profile-card insta-card artstation-card' 'github-card art-card discord-card product-card' 'my-stack-card my-stack-card to-do-card product-card' 'article-card article-card to-do-card map-card';
}
.grid-item {
border-radius: 24px;
border: 2px solid var(--grey-main);
min-height: 260px;
min-width: 260px;
}
.grid-item,
.nav {
box-shadow: 6px 6px 16px var(--darkest);
}
.grid-item:hover,
.nav:hover {
box-shadow: 0px 0px 16px rgba(252, 52, 82, 100%);
}
.profile-card {
grid-area: profile-card;
padding: 26px 36px;
}
.profile-card p {
text-align: justify;
line-height: 1.5rem;
}
.profile-card span {
font-weight: 600;
}
.profile-card > div {
display: flex;
flex-direction: column;
gap: 24px;
}
.profile-card div div {
display: flex;
align-items: flex-start;
}
.profile-card div div ul {
gap: 16px;
font-size: 18px;
}
.profile-card div div ul li a {
padding: 9px;
}
.profile-card div img {
border-radius: 50%;
width: 113px;
}
.map-card,
.product-card {
grid-area: map-card;
overflow: hidden;
}
#map {
width: 101%;
height: 115%;
}
.product-card {
grid-area: product-card;
}
.product-card div,
.product-card div ul {
display: flex;
flex-direction: column;
height: 100%;
}
.product-card div {
gap: 42px;
width: 100%;
}
.product-card h1 {
text-align: center;
font-weight: 600;
margin-top: 48px;
}
.product-card div ul {
list-style-type: none;
gap: 32px;
align-items: center;
}
.product-card div ul li {
display: flex;
justify-content: center;
align-items: center;
border-radius: 12px;
width: 90%;
}
.product-card div ul li a {
text-decoration: none;
color: #fff;
width: 100%;
cursor: pointer;
font-weight: 400;
letter-spacing: 1px;
font-size: 24px;
padding: 25px 0;
font-family: Kanit;
}
.product-card div ul li:hover {
background-color: var(--darkest);
transition: 0.3s ease-in-out;
}
.discord-card {
grid-area: discord-card;
}
.discord-card div {
display: flex;
flex-direction: column;
gap: 12px;
padding: 18px 18px 0;
}
.article-card div div,
.discord-card div div {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.discord-card div > i {
font-size: 72px;
}
.discord-card div a {
height: fit-content;
width: fit-content;
}
.discord-card div a:hover {
transition: 0.3s ease-in-out;
}
.discord-card h3 {
font-size: 20px;
gap: 6px;
}
.art-card div a i,
.artstation-card div a i,
.discord-card h3 i,
.github-card div a i,
.insta-card div a i {
font-size: 12px;
}
.insta-card {
grid-area: insta-card;
}
.artstation-card {
grid-area: artstation-card;
}
.art-card h1,
.artstation-card h1,
.github-card h1,
.insta-card h1 {
letter-spacing: 1.5px;
}
.art-card div,
.artstation-card div,
.insta-card div {
display: flex;
flex-direction: column;
gap: 12px;
}
.art-card div,
.artstation-card div,
.github-card div,
.insta-card div {
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
position: relative;
}
.art-card div > i,
.artstation-card div > i,
.github-card div > i,
.insta-card div > i {
font-size: 96px;
color: #fff;
}
.art-card div a,
.artstation-card div a,
.github-card div a,
.insta-card div a {
position: absolute;
bottom: 16px;
left: 16px;
text-decoration: none;
color: var(--grey-main);
padding: 6px;
width: fit-content;
height: fit-content;
}
.art-card div a i:hover,
.article-card div a:hover,
.artstation-card div a i:hover,
.github-card div a i:hover,
.insta-card div a i:hover {
transition: 0.3s ease-in-out;
color: var(--red-main);
}
.article-card {
width: 560px;
grid-area: article-card;
}
.article-card h1,
.my-stack-card h1 {
letter-spacing: 1px;
}
.article-card h1 span {
font-style: italic;
}
.article-card div {
padding: 32px;
gap: 16px;
}
.article-card div div {
padding: 0;
align-items: center;
}
.article-card div a {
border: 1px solid var(--grey-main);
padding: 7px 12px;
display: flex;
gap: 12px;
align-items: center;
}
.to-do-card {
grid-area: to-do-card;
padding: 26px 0;
}
.article-card div,
.to-do-card ul,
.to-do-card ul li {
display: flex;
flex-direction: column;
}
.to-do-card ul {
gap: 6px;
list-style-type: none;
align-items: flex-end;
overflow-y: scroll;
padding: 0;
}
.to-do-card ul li {
width: 90%;
padding: 16px;
gap: 9px;
}
.to-do-card ul li p span {
font-weight: 600;
font-style: italic;
}
.to-do-card ul li:hover > .content {
transition: 0.3s;
}
.to-do-card ul li .content {
font-size: 16px;
}
.date,
.sub {
color: var(--grey-main);
font-size: 14px;
letter-spacing: unset;
}
::-webkit-scrollbar {
height: 7px;
width: 7px;
color: transparent;
}
::-webkit-scrollbar-corner {
background-color: transparent;
}
.my-stack-card:hover ::-webkit-scrollbar-thumb,
.to-do-card:hover > ::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
background-color: var(--red-main);
}
.to-do-card ::-webkit-scrollbar {
width: 25px;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
.to-do-card ::-webkit-scrollbar-thumb {
border: 10px solid var(--dark-card);
}
.to-do-card ::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
border-radius: 2rem;
background-color: var(--grey-main);
}
.my-stack-card {
grid-area: my-stack-card;
}
.my-stack-card div {
padding: 32px;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
.my-stack-card div ul {
margin-top: 21px;
list-style-type: none;
border-radius: 0.5rem;
display: flex;
overflow-x: scroll;
justify-content: flex-start;
gap: 24px;
width: 100%;
padding: 6px 32px;
}
.my-stack-card div ul::-webkit-scrollbar {
height: 5px;
border: 2px solid transparent;
}
.my-stack-card div ul::-webkit-scrollbar-thumb {
width: 10px;
}
.my-stack-card div ul li img {
width: 42px;
border: 1px solid rgb(31, 31, 31);
border-radius: 8px !important;
}
.github-card {
grid-area: github-card;
}
.github-card div {
padding: 32px;
display: flex;
flex-direction: column;
gap: 16px;
}
.art-card {
grid-area: art-card;
}
a i {
font-size: 16px !important;
}
.footer-text {
font-weight: 600;
color: var(--grey-main);
}
.footer-text:hover {
transition: 0.3s ease-in-out;
color: var(--red-main);
cursor: default;
}
.basic {
width: 280px;
height: 300px;
}
.large-horizontal {
width: 580px;
}
.large-vertical {
height: 620px;
}
* {
text-align: center;
border-radius: 32px !important;
}
.discord-card div h3,
.discord-card div p {
text-align: left;
}
.profile-card img {
border-radius: 50% !important;
}
.profile-card .emoji {
position: relative;
top: 2px;
height: 18px !important;
width: 18px !important;
}
.to-do-card ul li,
.product-card ul li {
border-radius: 1.3rem !important;
}
.my-stack-card ul {
background-color: var(--dark-background);
}
.my-stack-card ul,
.to-do-card .to-do-container li {
border-radius: 0.5rem !important;
}
.to-do-card .to-do-container {
border-radius: 1rem !important;
}