-
Notifications
You must be signed in to change notification settings - Fork 1
/
code-style.css
86 lines (73 loc) · 2.85 KB
/
code-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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@charset "UTF-8";
.filename { line-height: 0; float: right }
/* Below is based off of:
* http://benjeffrey.com/pandoc-syntax-highlighting-css
*/
/* .sourceCode pre code { font-family: Menlo,monospace; font-size: 100%; line-height: initial; background-color: #f3fff3; } */
/* .sourceCode pre { font-family: Menlo,monospace; font-size: 100%; line-height: initial; background-color: #f3fff3 } */
.sourceCode pre { background-color: #f3fff3 }
.sourceCode code {
/* font-family: FiraCode,Menlo,monospace; */
font-family: Menlo,monospace;
text-rendering: optimizeLegibility;
/* font-variant-ligatures: discretionary-ligatures; */
/* -webkit-font-variant-ligatures: discretionary-ligatures; */
/* font-size: 100%; */
line-height: initial;
background-color: #f3fff3;
}
pre { text-align: left; }
.reveal code {
/* font-family: FiraCode,Menlo,monospace; */
font-family: Menlo,monospace;
text-rendering: optimizeLegibility;
}
/* .sourceCode pre { text-align: left; } */
/* .sourceCode code { text-align: left; } */
/* .sourceCode pre code { background-color: #FDF6E3; } */
/* .sourceCode pre code { background-color: #fdf6e3; } */
/* .sourceCode .rust code { color: black; background-color: #f3fff3; display: block } */
.sourceCode pre.compile_error { color: black; background-color: #f7e8e8; }
.sourceCode .compile_error code { color: black; background-color: #f7e8e8; }
.sourceCode .compile_hidden code { color: black; background-color: white; }
.sourceCode .compile_error code { background-color: brightwhite; }
.sourceCode .bash { background-color: #F0F0F0; }
.sourceCode .javascript { background-color: #FFFFFF; }
.error_message code, .error_message pre {
font-family: Menlo,monospace;
color: black;
background-color: #brightwhite;
}
/* .sourceCode .rust { overflow: visible; } */
.sourceCode { overflow: visible; }
/* KeyWordTok */
/* .sourceCode .kw { color: #268BD2; } */
.sourceCode .kw { color: #268BA2; }
/* DataTypeTok */
/* .sourceCode .dt { color: #36ABE2; } */
.sourceCode .dt { color: #361BE2; }
/* CoNstructorTok */
.sourceCode .cn { color: #D33682; }
/* DecValTok (decimal value), BaseNTok, FloatTok */
.sourceCode .dv, .sourceCode .bn, .sourceCode .fl { color: #D33682; }
/* CharTok */
.sourceCode .ch { color: #DC322F; }
/* StringTok */
/* .sourceCode .st { color: #2AA198; } */
.sourceCode .st { color: #0A8108; }
/* CommentTok */
.sourceCode .co { color: #737171; font-style: normal; }
/* OtherTok */
.sourceCode .ot { color: #A57800; }
/* AlertTok */
.sourceCode .al { color: #CB4B16; font-weight: bold; }
/* FunctionTok */
.sourceCode .fu { color: #268BD2; }
/* RegionMarkerTok */
.sourceCode .re { }
/* ErrorTok */
.sourceCode .er { color: #D30102; font-weight: bold; }
/* PreProcessor (i.e. Macro) */
.sourceCode .pp { color: #DC322F; font-weight: bold; }
/* ATtribute */
.sourceCode .at { color: #DC322F; font-weight: bold; }