File size: 677 Bytes
ab4a702
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import url('HomePage.css');
@import url('MainLayout.css');
@import url('DemoLayout.css');

* {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  margin: 0;
  height: 100%;
  background-color: var(--background);
}

body {
  font-family: 'Inconsolata', monospace;
}

a {
  text-decoration: none;
  color: var(--link)
}

a:hover {
  text-decoration: underline;
}

main {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
  padding-left: 15px;
  padding-right: 15px;
}

.CodeMirror {
  height: auto !important;
  margin: 1em 0;
}

.CodeMirror-scroll {
  height: auto !important;
  overflow: visible !important;
}