-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (106 loc) · 1.84 KB
/
style.css
File metadata and controls
119 lines (106 loc) · 1.84 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
111
112
113
114
115
116
117
118
119
body {
overflow: hidden;
font-family: Ubuntu;
margin: 0;
}
a {
color: #888;
font-size: 18px;
}
#container {
overflow: scroll;
padding: 10px;
position: fixed;
top: 0;
left: 0;
width: 50%;
height: 100%;
}
#memorysize {
background: #ddd;
border: none;
padding: 12px;
font-family: Ubuntu;
font-size: 15px;
}
#view {
display: inline-block;
}
#memory {
display: inline-block;
padding: 0;
margin-top: 20px;
list-style: none;
width: auto;
border-collapse: collapse;
border: 2px solid #ddd;
}
#memory td {
display: inline-block;
border: 2px solid #ddd;
font-family: "Ubuntu Mono";
font-size: 22px;
line-height: 40px;
text-align: center;
padding: 0;
}
#datapointer {
display: none;
position: absolute;
top: 100px;
left: 600px;
height: 44px;
width: 44px;
background: #ddd;
z-index: -1;
transition: top .2s, left .2s;
}
#control {
margin-top: 20px;
}
#control button {
background: #ddd;
border: none;
padding: 12px 20px;
margin: 0 8px 0 0;
font-family: Ubuntu;
font-size: 20px;
outline: none;
}
#output {
width: 47%;
height: 300px;
padding: 20px;
background: #ddd;
overflow-y: auto;
word-wrap: break-word;
font-family: "Ubuntu Mono";
font-size: 22px;
margin-top: 100px;
}
#editor {
position: fixed;
top: 0;
left: 50%;
height: 100%;
width: 100%;
background: #111;
border-left: 5px solid #444;
padding: 20px;
font-family: "Ubuntu Mono";
font-size: 22px;
font-weight: 600;
letter-spacing: 2px;
color: #ddd;
outline: none;
word-wrap: break-word;
overflow-y: auto;
}
#editor::selection {
background: rgba(255,255,255,.5);
color: #000;
}
#editor b {
background: #ddd;
color: #111;
}