-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
47 lines (46 loc) · 871 Bytes
/
index.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
/* Sowwyz#1337 */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');
/* Sowwyz#1337 */
* {
box-sizing: border-box;
}
/* Sowwyz#1337 */
body {
background-color: #0e0e0e;
color: #c5c8c6;
font-family: 'JetBrains Mono', monospace;
font-size: 16px;
margin: 0;
}
/* Sowwyz#1337 */
.terminal {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 20px;
}
/* Sowwyz#1337 */
.prompt {
color: #ffffff;
}
/* Sowwyz#1337 */
.input-line {
display: flex;
}
/* Sowwyz#1337 */
.input-line input[type=text] {
background-color: transparent;
border: none;
color: #c5c8c6;
flex-grow: 1;
font-family: monospace;
font-size: 16px;
outline: none;
padding: 0;
}
/* Sowwyz#1337 */
.output {
white-space: pre-wrap;
}
/* Sowwyz#1337 */