blob: 83b1aa6f943e186a3f7b21600617c145be368855 (
plain)
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
|
@import "variables";
div.highlight {
overflow: unset;
margin-bottom: 5px;
color: #d9d9d9;
border: 1px solid #535353;
}
pre.highlight{
max-width: 100%;
line-height: 1.5;
background: $background;
}
code {
font-family: "JetBrains Mono";
font-size: 13px;
font-weight: 300;
position: relative;
font-variant-ligatures: none;
}
code img {
margin: 0px;
filter: invert(0.7);
}
code.language-plaintext {
padding: 0.4px 5px;
padding-bottom: 0;
background: #000;
border: 1px solid #757575;
font-size: 12.5px;
color: #d9d9d9;
border-radius: 0;
}
|