vortexa64 commited on
Commit
7656a9a
·
verified ·
1 Parent(s): e626888

Create style.css

Browse files
Files changed (1) hide show
  1. public/style.css +24 -0
public/style.css ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ background: #111;
3
+ color: #0f0;
4
+ font-family: monospace;
5
+ padding: 20px;
6
+ }
7
+ .terminal {
8
+ background: #000;
9
+ padding: 15px;
10
+ border-radius: 8px;
11
+ max-width: 800px;
12
+ margin: auto;
13
+ }
14
+ input {
15
+ background: transparent;
16
+ border: none;
17
+ color: #0f0;
18
+ width: 80%;
19
+ font-size: 1em;
20
+ }
21
+ pre {
22
+ margin-top: 1em;
23
+ white-space: pre-wrap;
24
+ }