-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
106 lines (106 loc) · 1.69 KB
/
Copy pathstyles.css
File metadata and controls
106 lines (106 loc) · 1.69 KB
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
@font-face{
font-family: "Iosevka";
src: url("/src/fonts/IosevkaTermNerdFontMono-Regular.ttf");
}
@keyframes blink{
0% {color: black;}
50% {color: white;}
100% {color: black;}
}
*{
color: white;
background-color: black;
font-family: "Iosevka";
}
body{
margin: 5rem 5rem 5rem 5rem;
}
@media screen and (max-width: 540px) {
body{
margin: 1rem 1rem 1rem 1rem;
}
}
h2, h4{
padding-top: 2rem;
}
figure{
margin: 0;
}
embed{
width: 45rem;
filter: invert(100%) sepia(0%) saturate(200%) hue-rotate(195deg) brightness(100%) contrast(100%);
}
button{
border: none;
font-size: 2.5rem;
cursor: pointer;
position: relative;
top: 0.5rem;
}
ul{
list-style: none;
padding: 0;
}
li:before{
content: "*";
margin-right: 1ch;
}
footer{
padding-top: 0.5rem;
}
img, embed{
max-width: 100%;
height: auto;
}
.logo{
font-size: 32px;
vertical-align: sub;
}
.pilcrow{
color: rgba(0, 0, 0, 0);
text-decoration: none;
}
h2:hover > .pilcrow{
color: gray;
}
h3:hover > .pilcrow{
color: grey;
}
.hidden{
display: none;
}
#not-found{
font-size: x-large;
text-align: center;
}
#four-o-four{
letter-spacing: 3.5rem;
padding-left: 3.2rem;
margin-bottom: -2.5rem;
font-size: xx-large;
}
#shrugger{
font-size: xx-large;
}
#go-home{
text-decoration: none;
}
#title{
padding-left: 1ch;
}
#ipa{
margin-top: -1rem;
color: grey;
cursor: help;
}
#cursor{
animation-name: blink;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: steps(1, end);
padding-left: 0.5rem;
}
#modrinth{
margin-top: 12.5px;
margin-bottom: 5px;
}