-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (100 loc) · 1.47 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
body {
background: #404050;
display: flex;
flex-direction: column;
align-items: stretch;
align-content: stretch;
margin: 0px;
height: 100%;
color: white;
font-family: monospace;
}
textarea {
border-width: 0px 1px 0px 0px;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
outline: none;
}
.flex {
display: flex;
}
#menubar, #examples {
background: #222233;
min-height: 24px;
padding: 4px;
}
#examples {
background: #303040;
}
#statusbar {
background: #222233;
min-height: 24px;
}
#middle {
display: flex;
width: 100%;
height: 100%;
}
#editor {
background: #404050;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
#reference {
height: 200px;
border: 1px solid rgb(110, 110, 110);
border-width: 1px 1px 0px 0px;
padding: 10px;
overflow-y: scroll;
}
#reference p {
margin: 4px;
}
#editorBox {
background: #404050;
display: flex;
width: 100%;
height: 100%;
flex-direction: column;
}
#codearea {
display: flex;
width: 100%;
height: 100%;
resize: none;
}
#code {
background: #404050;
color: #dadada;
width: 50%;
height: 100%;
resize: none;
margin-left: 10px;
flex-grow: 1;
}
#numbers {
border: 0px;
background: #3c3c4c;
color: #dadada;
width: 24px;
height: 100%;
resize: none;
overflow: hidden;
text-align: right;
}
#binary, #hex, #octal {
color: #999999;
background: #303040;
width: 10%;
height: 100%;
resize: none;
}
#display {
width: 780px;
height: 100%;
flex-grow: 0;
flex-shrink: 0;
}