-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (70 loc) · 1.2 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
@import url(https://fonts.googleapis.com/css?family=PT+Sans|PT+Mono);
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
.controls {
font-family: 'PT Sans', sans-serif;
background-color: #031422;
width: 34%;
}
.canvas {
background-color: #071F33;
width: 65%;
height: 98.1vh;
overflow-y: scroll;
z-index: 10;
position: fixed;
}
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: #000;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #2c3e50;
}
body {
height: 100%;
width: 100%;
}
.box {
font-family: 'PT Mono', monospace;
}
.box {
width: 250px;
height: 121px;
background-color: #fff;
position: absolute;
bottom: 100;
left: 100;
color: #000;
font-size: 11px;
text-align: center;
}
.remote {
width: 250px;
height: 121px;
background-color: transparent;
position: absolute;
bottom: 100;
left: 100;
color: #000;
font-size: 11px;
text-align: center;
}
.winsize {
background: #eee;
position: absolute;
right: 5px;
top: 5px;
font-size: 11px;
color: #222;
padding: 3px 5px;
}