-
Notifications
You must be signed in to change notification settings - Fork 55
/
main.css
63 lines (56 loc) · 1.11 KB
/
main.css
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
body {
font-family: 'Cousine', ;
padding: 0;
margin: 0;
height: 100%;
width: 100%;
background: rgba(255, 255, 255, .1);
}
#app {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: flex-start;
/* align items in Main Axis */
align-items: stretch;
/* align items in Cross Axis */
align-content: stretch;
/* Extra space in Cross Axis */
}
#wrapper {
position: absolute;
display: flex;
width: 100%;
height: 100%;
}
#parsed-markdown,
#codemirror-target {
display: flex;
width: 50%;
justify-content: flex-start;
/* align items in Main Axis */
align-items: stretch;
/* align items in Cross Axis */
align-content: stretch;
/* Extra space in Cross Axis */
}
#parsed-markdown {
min-width: 200px;
width: 50%;
margin: 0 auto;
}
#codemirror-target {
background: #f9fafa;
}
.markdown-body {
padding: 30px;
overflow: auto;
width: 100%;
}
.CodeMirror {
font-family: 'Cousine', !important;
background: #f9fafa !important;
width: 100% !important;
cursor: text;
}