-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (46 loc) · 958 Bytes
/
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
body {
margin: 0;
overflow: hidden;
}
.CodeMirror {
font-family: 'JetBrains Mono', monospace !important;
font-size: 16pt !important;
width: 100%;
height: 100% !important;
position: absolute !important;
left: 0;
top: 0;
resize: none;
background-color: rgba(0, 0, 0, 0) !important;
color: white;
border: none;
outline: none;
}
pre.CodeMirror-line {
padding-left: 0 !important;
}
.CodeMirror.hidden {
transition: 0.25s;
opacity: 0;
}
.CodeMirror {
transition: 0.25s;
opacity: 1;
}
.CodeMirror span {
background-color: black;
}
.CodeMirror-selected {
background: rgba(0, 255, 0, 0.5) !important;
}
.CodeMirror-matchingbracket {
background: rgba(0, 255, 0, 0.5) !important;
}
/* hack to make highlights work */
div[role=presentation] div {
z-index: 10 !important;
}
@font-face {
font-family: 'FSEX301';
src: url('FSEX301-L2.ttf') format('truetype');
}