-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (94 loc) · 1.77 KB
/
style.css
File metadata and controls
110 lines (94 loc) · 1.77 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
background: url(stardust.png);
}
.terminal {
margin: 50px auto;
max-width: 640px;
width: 95%;
height: 320px;
box-shadow: 0 0 35px 0 #222;
border-radius: 4px;
}
.titlebar {
background: linear-gradient(rgb(227, 227, 227), rgb(206, 206, 206));
width: 100%;
height: 20px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.tabs {
height: 20px;
background: rgb(181, 181, 181);
border-bottom: 1px solid rgb(150, 150, 150);
border-top: 1px solid rgb(180, 180, 180);
font-size: 11px;
font-family: "Helvetica Neue", sans-serif;
color: rgb(59, 59, 59);
}
.tabs span {
display: block;
height: 100%;
width: 50%;
float: left;
padding: 3px;
text-align: center;
box-sizing: border-box;
cursor: pointer;
}
.tabs span.active {
background: rgb(209, 209, 209);
}
.tabs span:first-child {
border-right: 1px solid rgb(150, 150, 150);
}
.btn {
width: 10px;
height: 10px;
border-radius: 50%;
margin-top: 4px;
border: 1px solid black;
display: block;
float: left;
margin-left: 8px;
}
.btn.yellow {
background: rgb(255, 185, 24);
border-color: rgb(218, 149, 22);
}
.btn.red {
background: rgb(255, 86, 79);
border-color: rgb(219, 61, 56);
}
.btn.green {
background: rgb(37, 198, 58);
border-color: rgb(18, 161, 38);
}
.body {
font-family: monospace;
color: white;
padding: 8px;
background: black;
height: calc(100% - 20px);
word-wrap: break-word;
box-sizing: border-box;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.body .output.error {
color: red;
}
.body .label {
color: cyan;
margin-bottom: 4px;
}
.body .input {
height: 35%;
outline: none;
border-bottom: 1px solid white;
}
.body #output {
height: 65%;
}
.body .input, .body #output {
overflow-y: auto;
}