-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (72 loc) · 1.42 KB
/
style.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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
*,
*:before,
*:after{
box-sizing: border-box;
font-family: "poppins", sans-serif;
}
html,
body{
margin: 0;
padding: 0;
}
body{
font-family: "poppins", sans-serif;
background-color: #1e1f26;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
}
ul{
padding: 0;
margin: 0;
display: block;
width: 100%;
overflow-y: hidden;
overflow-x: auto;
white-space: nowrap;
text-align: center;
scroll-behavior: smooth;
}
li{
position: sticky;
left: 0;
width: min(50vw, 350px);
display: inline-block;
text-align: center;
background-color: #16171f;
color: #9b9dad;
padding-bottom: 1.5rem;
font-size: clamp(16px, 2.5vw, 18px);
box-shadow: -10px 0 30px 0 rgba(0, 0, 0, 0.25);
margin-left: -4px;
text-transform: uppercase;
}
img{
display: block;
width: 100%;
max-width: 100%;
margin-bottom: 1.5rem;
}
h1{
font-size: clamp(20px, 2.5vw, 36px);
color: rgba(255, 255, 255, 0.8);
font-weight: 600;
text-align: center;
}
*::-webkit-scrollbar,
body::-webkit-scrollbar,
html::-webkit-scrollbar{
background-color: #1e1f26;
height: 20px;
width: 20px;
}
*::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb{
background-color: #383d4d;
border-radius: 99em;
border: 6px solid #1e1f26;
}