-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (52 loc) · 778 Bytes
/
Copy pathstyle.css
File metadata and controls
60 lines (52 loc) · 778 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
body{
margin:0;
background:#111;
font-family:monospace;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
}
.terminal{
width:750px;
background:black;
border-radius:10px;
overflow:hidden;
box-shadow:0 0 40px black;
}
.topbar{
background:#2b2b2b;
padding:10px;
display:flex;
gap:8px;
}
.btn{
width:12px;
height:12px;
border-radius:50%;
}
.red{background:#ff5f56;}
.yellow{background:#ffbd2e;}
.green{background:#27c93f;}
.screen{
padding:20px;
height:400px;
overflow-y:auto;
color:#00ff88;
}
.input-line{
display:flex;
}
.prompt{
margin-right:5px;
color:#58a6ff;
}
input{
background:none;
border:none;
color:#00ff88;
font-family:monospace;
font-size:16px;
outline:none;
width:100%;
}