-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (40 loc) · 750 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (40 loc) · 750 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
body {
background-color: black;
background-image: radial-gradient(rgba(0, 150, 0, 0.75), black 120%);
height: 100vh;
color: white;
font: 1.3rem Inconsolata, monospace;
text-shadow: 0 0 5px #c8c8c8;
}
body::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: repeating-linear-gradient(
0deg,
rgba(black, 0.15),
rgba(black, 0.15) 1px,
transparent 1px,
transparent 2px
);
}
::selection {
background: #0080ff;
text-shadow: none;
}
pre {
margin: 0;
}
@media only screen and (max-width: 420px) {
body {
font: 1rem Inconsolata, monospace;
}
}
@media only screen and (max-width: 330px) {
body {
font: 0.8rem Inconsolata, monospace;
}
}