-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
100 lines (90 loc) · 1.77 KB
/
Copy pathcustom.css
File metadata and controls
100 lines (90 loc) · 1.77 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
body {
overflow: hidden;
}
#editor {
margin: 0px;
position: absolute;
top: 0px;
bottom: 0;
left: 0;
right: 0;
width: 58.3%;
}
#headings2{
position: absolute;
width: 40%;
top: 0;
margin: 0;
padding: 0;
right: 0;
padding-left: 1.5%;
border-left:1px Solid #eee;
}
#headings2 button{
margin-left: 0.5%;
border: 1px Solid #bbb;
border-radius: 2px;
background-color: #fff;
font-family: monospace;
color: #608000;
margin-top: 8px;
margin-bottom: 8px;
width: 100px;
font-size: 18px;
margin-right: 10px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.1s;
}
#headings2 button:hover {
background-color: #4CAF50; /* Green */
color: white;
}
#headings2 button:focus{
outline:0;
}
#output{
background-color: #fff;
color: black;
position: absolute;
width: 40%;
top: 45px;
bottom: 0;
right: 0;
font-family: monospace;
font-size: 16px;
margin-top: 0px;
padding-left: 20px;
padding-top: 16px;
border-top:1px Solid #eee;
border-left:1px Solid #eee;
overflow-y: scroll;
word-wrap: break-word;
white-space: pre-wrap;
}
#output ol{
margin-top: 0px;
margin-left: 0px;
padding-left: 20px;
overflow-y: scroll;
font-family: sans-serif;
list-style: decimal;
}
#output label,#output p{
font-family: sans-serif;
word-wrap: break-word;
white-space: pre-wrap;
}
#output p{
margin-left: 20px;
margin-top: 0px;
margin-bottom: 0px;
}
#output input{
height: 18px;
}
#output textarea{
font-family: sans-serif;
margin-left: 20px;
border-radius: 2px;
border-color: #ccc;
}