blob: 5271e5c1e6be758ade05812082f1fdb081f90fac (
plain) (
blame)
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
|
.main {
margin: 0;
}
#editor {
font-size: 16px;
border-left: 1px solid black;
position: fixed;
top: 0; bottom: 0;
right: 0;
width: 500px;
padding: 10px;
}
#editor input,
#editor textarea,
#editor button,
#editor select {
width: 100%;
font-family: "Inconsolata", monospace;
font-size: 16px;
}
#editor textarea {
height: 418px;
}
#editor-save-button {
height: 40px;
}
|