-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (56 loc) · 1.05 KB
/
style.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
64
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap')
@font-face {
font-family: 'CascadiaCode';
src: url('/fonts/CascadiaCode.woff2') format('woff'); /* For modern browsers */
}
body {
margin: 0;
overflow: hidden;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #1e1e1e;
color: #abb2bf;
}
.editor {
display: flex;
height: 100vh;
}
.editMode {
flex: 1;
padding: 10px;
font-size: 19px;
height: 100vh;
}
#code {
width: 100%;
height: 100%;
background-color: #1e1e1e;
color: #abb2bf;
border: none;
outline: none;
font-family: "Fira Code", monospace;
font-size: 20px;
}
.codeOut {
flex: 1;
padding: 10px;
background-color: #282c34;
overflow-y: auto;
}
h3 {
margin: 0;
font-size: 16px;
color: #61dafb;
}
#output {
white-space: pre-wrap;
color: #ffffff;
font-size: 18px;
font-family: "Fira Code", monospace;
}
.CodeMirror {
font-family: monospace;
height: 100vh;
color: #000;
direction: ltr;
font-family: "Fira Code", monospace;
}