-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
48 lines (45 loc) · 935 Bytes
/
main.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
html,
body {
margin: 0;
height: 100%;
}
.fullpage {
display: flex;
height: 100%;
justify-content: center;
align-items: center;
background-image: linear-gradient(to bottom, #2d1214, #060e14);
}
h1 {
display: block;
position: absolute;
top: 30%;
left: 12%;
margin: 0;
font-family: "Akshar", system-ui, sans-serif;
font-size: 12vmin;
color: #2affff;
text-shadow: 0 0 32px hsl(180deg 100% 60% / 25%),
-15px -4px 12px hsl(180deg 100% 10%);
cursor: crosshair;
width: 5em;
z-index: 2;
}
.scroll-rows {
user-select: none;
display: flex;
flex-direction: column;
justify-content: center;
position: absolute;
top: 0;
bottom: 0;
right: 12%;
font-family: "Akshar", system-ui, sans-serif;
font-size: 11px;
line-height: 1.5;
color: #bb2c19;
text-align: right;
letter-spacing: 0.1em;
text-shadow: 0 0 2px hsl(7deg 20% 50% / 30%),
15px -4px 3px hsl(7deg 100% 30% / 61%);
}