-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (50 loc) · 973 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
body {
background-color: black;
background-image: radial-gradient(
rgba(25, 100, 25, 0.75), black 200%
);
height: 100vh;
margin: 0;
overflow-x: hidden;
padding: 2rem;
color: white;
font: 1.3rem Inconsolata, monospace;
text-shadow: 0 0 3px #C8C8C8;
&::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
);
pointer-events: none;
}
}
::selection {
background: #0080FF;
text-shadow: none;
}
pre {
margin: 0;
}
input[type="text"], textarea {
background-color : rgba(0, 0, 0, 0.25);
color: white;
font: 1.3rem Inconsolata, monospace;
}
button {
background-color : rgba(0, 0, 0, 0);
border-color : rgba(100, 100, 100, 0.75);
color: white;
font: 1.3rem Inconsolata, monospace;
}
a {
color: white;
}