-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (86 loc) · 1.77 KB
/
Copy pathstyles.css
File metadata and controls
95 lines (86 loc) · 1.77 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
body {
background-color: black;
color: white;
font-family: monospace;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
#terminal {
width: 80%;
height: 80%;
overflow-y: auto;
padding: 10px;
box-sizing: border-box;
display: flex;
flex-direction: column;
}
#output {
/* Do not grow unnecessarily */
flex-grow: 0;
overflow-y: auto;
white-space: pre-wrap;
word-wrap: break-word;
}
#input-line {
flex-shrink: 0;
display: flex;
/* Add some spacing between output and input */
margin-top: 10px;
}
#banner {
/* Green color for the banner */
color: #00ff00;
margin-bottom: 10px;
}
#banner a {
/* Green color for the link */
color: #00ff00;
text-decoration: underline;
}
#prompt {
margin-right: 5px;
/* Green color for the prompt */
color: #00ff00;
font-weight: bold
}
#input {
background: none;
border: none;
/* Cyan color for the input */
color: #00ff00;
outline: none;
flex-grow: 1;
font-family: monospace;
/* Allow text to wrap */
white-space: pre-wrap;
/* Disable resizing */
resize: none;
/* Hide scrollbar */
overflow: hidden;
/* Improve readability */
line-height: 1.5;
/* Remove padding */
padding: 0;
/* Remove margin */
margin: 0;
/* Allow dynamic height adjustment */
height: auto;
/* Minimum height for one line */
min-height: 1.5em;
/* Set the width of tab characters (optional) */
tab-size: 4;
}
/* Style for command output */
.output-command {
/* Green color for commands */
color: #00ff00;
}
/* Style for command result */
.output-result {
/* Cyan color for results */
color: #00ffff;
}