-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (40 loc) · 723 Bytes
/
style.css
File metadata and controls
40 lines (40 loc) · 723 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
body {
font-family: system-ui, -apple-system, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
}
.terminal {
background-color: #1e1e1e;
color: #ffffff;
padding: 20px;
border-radius: 8px;
margin: 20px 0;
font-family: monospace;
}
.command-input {
background-color: transparent;
border: none;
color: #ffffff;
width: 100%;
font-family: monospace;
font-size: 16px;
outline: none;
}
.output {
margin-top: 10px;
color: #a0a0a0;
}
.command-history {
margin-top: 20px;
padding: 10px;
background-color: #ffffff;
border-radius: 8px;
}
.success {
color: #4CAF50;
}
.error {
color: #f44336;
}