-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (46 loc) · 923 Bytes
/
style.css
File metadata and controls
55 lines (46 loc) · 923 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
* {
padding: 0;
margin: 0;
font-family: "Kiwi Maru", monospace;
list-style: none;
scroll-behavior: smooth;
}
::-moz-selection {
background-color: burlywood;
}
h1 {
font-size: 2em;
user-select: none;
font-weight: 700;
cursor: pointer;
}
body {
background-color: black;
transition-duration: 1s;
transition-timing-function: ease-in;
}
.link-container {
display: flex;
justify-content: center;
}
.link-container>.link {
padding: 5px;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: nowrap;
flex-direction: column;
width: 100dvw;
margin-bottom: 3em;
}
.list {
text-decoration: none;
font-size: 1.3em;
width: calc(100dvw / 1.1);
}
.list>.line::before {
content: '~ ';
}