-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (66 loc) · 1.25 KB
/
Copy pathstyle.css
File metadata and controls
76 lines (66 loc) · 1.25 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
html {
color-scheme: dark;
}
body {
font-family: 'Courier New', Courier, monospace;
background: black;
color: white;
font-size: 1.2em;
text-align: center;
}
#page {
text-align: left;
width: 800px;
max-width: calc(100% - 2em);
display: inline-block;
word-wrap: break-word;
overflow-wrap: break-word;
}
@media (max-width: 600px) {
body {
font-size: 1em;
}
}
a {
color: white;
}
ul {
list-style-type: circle;
}
#terminal-input,
#terminal-input:focus,
#terminal-input:hover,
#terminal-input:active {
background: transparent !important;
background-color: transparent !important;
background-image: none !important;
border: none !important;
color: white !important;
font-family: inherit;
font-size: inherit;
outline: none !important;
width: 70%;
caret-color: white;
padding: 0;
margin: 0;
box-shadow: none !important;
-moz-appearance: none;
appearance: none;
border-radius: 0 !important;
}
#terminal-input:-moz-ui-invalid,
#terminal-input:invalid {
box-shadow: none !important;
border: none !important;
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}