-
Notifications
You must be signed in to change notification settings - Fork 0
/
Style.css
59 lines (42 loc) · 884 Bytes
/
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
:root {
--Zoom : 1 ;
}
body {
background : #010409 ;
color : white ;
justify-content : center ;
flex-direction : column ;
align-items : center ;
display : flex ;
gap : 4rem ;
height : 100dvh ;
width : 100dvw ;
margin : 0 ;
}
.Text {
text-size-adjust : auto ;
letter-spacing : -1px ;
font-family : monospace ;
user-select : none ;
line-height : 1 ;
min-width : fit-content ;
font-size : 100% ;
overflow : clip ;
height : 9ch ;
scale : max( 0.2 , min( 1 , var( --Zoom ) ) ) ;
}
.GitHub {
position : fixed ;
bottom : 1rem ;
right : 1rem ;
text-decoration : none ;
font-family : monospace ;
font-weight : bold ;
font-size : 1.2rem ;
color : white ;
cursor : pointer ;
transition : all 100ms ease-in-out ;
}
.GitHub:hover {
color : #a90640 ;
}