-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
89 lines (89 loc) · 1.8 KB
/
index.css
File metadata and controls
89 lines (89 loc) · 1.8 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
div.pure-menu > ul > li {
padding: 0px 10px;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
color: #4b4b4b;
text-transform: capitalize;
font-size: 0.875em;
line-height: 1.75;
}
div.pure-menu > ul > li.selected {
color: #2d2d2d;
font-weight: bold;
}
div.pure-menu > ul > li:nth-of-type(1) {
border-left: 3px solid #32d2fa;
}
div.pure-menu > ul > li:nth-of-type(2) {
border-left: 3px solid #0e90d2;
}
div.pure-menu > ul > li:nth-of-type(3) {
border-left: 3px solid #8058a5;
}
div.pure-menu > ul > li:nth-of-type(4) {
border-left: 3px solid #5eb95e;
}
div.pure-menu > ul > li:nth-of-type(5) {
border-left: 3px solid #dd514c;
}
div.pure-menu > ul > li:nth-of-type(6) {
border-left: 3px solid #f37b1d;
}
div.pure-menu > ul > li:nth-of-type(7) {
border-left: 3px solid #fad232;
}
html,
body {
height: 100%;
}
#main {
position: absolute;
height: 100%;
width: 100%;
}
#main > * {
display: none;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
-moz-overflow-scrolling: touch;
overflow-scrolling: touch;
}
#main > *.active {
display: block;
}
#main > #box-config {
padding: 1em;
}
#main > #box-editor {
width: 100%;
height: 100%;
}
#main > #box-editor > #box-editor-textarea {
width: 100%;
height: 100%;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
-moz-overflow-scrolling: touch;
overflow-scrolling: touch;
}
#main > #box-sandbox {
width: 100%;
height: 100%;
}
#main > #box-sandbox > #box-sandbox-iframe {
margin: 0;
border: none;
padding: 0;
width: 100%;
height: 100%;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
-moz-overflow-scrolling: touch;
overflow-scrolling: touch;
}
.CodeMirror,
textarea,
code {
font-family: 'Menlo', 'Monaco', 'Andale Mono', 'lucida console', 'Courier New', 'monospace' !important;
}