This repository was archived by the owner on Dec 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
149 lines (126 loc) · 2.26 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
html {
background-color: #000000;
}
header {
color: #B5B5B5;
font-family: "Trebuchet MS", sans-serif;
font-size: 60px;
margin-left: 20px;
}
#menu {
float: left;
margin: 20px;
width: 206px;
color: #B5B5B5;
font-family: "Lucida Console", "Lucida Sans Typewriter", "Consolas", monospace;
font-size: 16px;
font-weight: 900;
}
#menu div {
border: 3px double #B3B3B3;
cursor: default;
height: 50px;
margin-bottom: 20px;
text-align: center;
width: 200px;
}
#menu div p {
margin: 17px 0 17px 0;
}
#uploadbutton input {
display: none;
}
#statusmessage {
height: 17px;
margin: -22px 0 5px 0;
width: 1000px;
}
#nodes {
float: left;
width: 1020px;
}
.row {
clear: right;
}
.node {
background-color: #000000;
border: 3px double #B3B3B3;
display: inline-table;
height: 192px;
margin: 20px;
width: 206px;
}
.node textarea {
background-color: #000000;
border: none;
border-right: 3px double #B3B3B3;
color: #B5B5B5;
font-family: "Lucida Console", "Lucida Sans Typewriter", "Consolas", monospace;
font-size: 13px;
font-weight: 900;
height: 192px;
line-height: 0.98em;
margin: 0 0 -4px 2px;
outline: none;
overflow: auto;
padding: 0;
resize: none;
text-transform: uppercase;
width: 155px;
}
.sidecolumn {
float: right;
height: 192px;
width: 46px;
}
.sidecell {
color: #B5B5B5;
cursor: default;
font-family: "Lucida Console", "Lucida Sans Typewriter", "Consolas", monospace;
font-size: 13px;
font-weight: 900;
height: 46px;
text-align: center;
width: 46px;
}
.sidecell:not(.bottom) {
border-bottom: 3px double #B3B3B3;
}
.sidecell p {
margin: 0;
padding-top: 8px;
}
.execnode .sidecolumn .exec {
background-color: #B3B3B3;
color: #000000;
}
.stcknode .sidecolumn .stck {
background-color: #B3B3B3;
color: #000000;
}
.stcknode textarea {
text-align: center;
}
.errnode {
border: 3px solid #A40D0D;
}
.errnode textarea {
border-right: 3px solid #A40D0D;
color: #A40D0D;
text-align: center;
}
.errnode .sidecolumn .sidecell {
color: #A40D0D;
}
.errnode .sidecolumn .sidecell:not(.bottom) {
border-bottom: 3px solid #A40D0D;
}
.errnode .sidecolumn .err {
background-color: #A40D0D;
color: #000000;
}
footer {
color: white;
float: left;
font-size: 12px;
}