-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodetext.css
52 lines (42 loc) · 921 Bytes
/
codetext.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
code, pre, .blob-code, .blob-code>* {
font-family: consolas!important;
background: #141414!important;
color: #ffffff!important;
border-radius: 5px!important;
font-size: px!important;
}
pre {
padding: 20px!important
}
code {
padding: 5px 20px
}
pre>code {
padding: 0
}
code, pre, .blob-code, .blob-code>* {
font-family: 'consolas'!important;
background: rgb(0,0,0)!important;
color: rgb(255, 255, 255);
border-radius: px!important;
font-size: px!important;
}
pre {
padding: px!important;
filter: invert(1);
background: rgb(255, 255, 255)!important;
color: rgb(0, 0, 0)!important;
}
code {
padding: px;
}
pre>code {
padding: 0!important;
background: rgb(255, 255, 255)!important;
color: rgb(0, 0, 0)!important;
}
pre>* {
padding: 0!important;
background: rgb(255, 255, 255)!important;
color: rgb(0, 0, 0)!important;
}