-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
70 lines (59 loc) · 1021 Bytes
/
Copy pathstyles.css
File metadata and controls
70 lines (59 loc) · 1021 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
html {
background-color: black;
}
html, body {
height: fit-content;
margin: 0;
}
#terminal {
background-color: inherit;
color: #ffffff;
padding: 3%;
height: 100%;
font-family: 'Courier New', Courier, monospace;
font-size: x-large;
}
#terminal > p {
margin: 0;
margin-top: 0.25em;
margin-bottom: 0.25em;
padding: 0;
display: inline-block;
}
.warning {
color: yellow;
}
.error {
color: black;
background-color: red;
font-weight: bold;
}
.success {
color: limegreen;
}
a {
font-weight: bold;
}
a:hover {
text-decoration: none;
}
#terminal > img {
display: block;
}
#prefix, #terminal-input {
background-color: inherit;
resize: none;
font-size: inherit;
font-family: inherit;
color: inherit;
border: none;
overflow: hidden;
outline: none;
height: 1.25em;
padding: 0;
margin: 0;
margin-top: 0.25em;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}