-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
81 lines (69 loc) · 1.12 KB
/
style.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
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
body {
font: 1.3rem monospace;
color: #00ff00;
text-shadow: 0 0 5px #00ff00;
box-shadow: 0 0 10px black;
background-color: black;
margin: 0;
padding: 1rem;
}
.prompt {
display: flex;
}
.prompt input {
margin-left: 10px;
}
.stdout {
display: none;
flex-wrap: wrap;
}
.terminal input {
width: 100%;
display: table-cell;
border: none;
outline: none;
font: 1.3rem monospace;
color: #00ff00;
text-shadow: 0 0 5px #00ff00;
box-shadow: 0 0 10px black;
background-color: black;
overflow: hidden;
}
.box1 {
flex: 1 1 auto;
border: 2px solid #00ff00;
padding: 5px;
margin: 10px;
box-shadow: 0 0 5px #00ff00;
}
.box2 {
flex: 2 1 auto;
border: 2px solid #00ff00;
padding: 5px;
margin: 10px;
box-shadow: 0 0 5px #00ff00;
}
.white {
color: #ffffff;
text-shadow: 0 0 5px #ffffff;
}
.green {
color: #00ff00;
text-shadow: 0 0 5px #00ff00;
}
.blue {
color: #0000ff;
text-shadow: 0 0 5px #0000ff;
}
.yellow {
color: #ffff00;
text-shadow: 0 0 5px #ffff00;
}
.red {
color: #ff0000;
text-shadow: 0 0 5px #ff0000;
}
.purple {
color: #ff00ff;
text-shadow: 0 0 5px #ff00ff;
}