-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlightmodeling.css
More file actions
53 lines (43 loc) · 840 Bytes
/
lightmodeling.css
File metadata and controls
53 lines (43 loc) · 840 Bytes
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
/* CSS declarations go here */
body {
height: 85%;
max-height: 85%;
}
.container-fluid {
margin-top: 60px;
height: 900px;
overflow: auto;
}
#editors {
display: inline-block;
box-shadow: 0 0 15px #000;
border-radius: 3px;
margin-right: 5%;
overflow: auto;
background: #333;
}
#editors > div:last-child .CodeMirror {
margin-bottom: 40px;
}
#editors .CodeMirror.active {
background: #252525;
}
#editors div .CodeMirror {
border-bottom: 3px solid #111;
}
#editors .CodeMirror {
font-size: 13pt;
font-family: "Inconsolata", "Consolas", "Courier New", monospace;
display: inline-block;
min-width: 100%;
overflow: hidden;
padding: 2.5px 0;
border-bottom: 3px solid #111;
background: #222;
border-radius: 3px;
border: none;
}
#output {
border-radius: 3px;
box-shadow: 0 0 0px #111;
}