File size: 1,055 Bytes
341f1e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body {
  margin: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

h1 {
  font-family: Helvetica, sans-serif;
  font-size: 24px;
  border-radius: 4px;
  border: 1px solid darkgray;
  background: #e1e1e1;
  padding: 10px;
}

h2 {
  font-family: Helvetica, sans-serif;
  font-size: 18px;
  border-bottom: 1px solid darkgray;
  margin-bottom: 5px;
}

.description {
  font-family: Helvetica, sans-serif;
  border-radius: 4px;
  border: 1px solid darkgray;
  background: #e1e1e1;
  padding: 4px 10px;
  margin-bottom: 5px;
}

.editors {
  display: flex;
  flex-direction: row;
  flex: 1;
}

.editor-column {
  flex: 0.5;
  display: flex;
  flex-direction: column;
  max-width: 50%;
  box-sizing: border-box;
}

.editor-column:nth-child(1) {
  padding-right: 10px;
}

.editor-column:nth-child(2) {
  padding-left: 10px;
}

.editor {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid grey;
}

.CodeMirror {
  flex: 1;
}