-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhugo-book.css
More file actions
135 lines (127 loc) · 3.37 KB
/
hugo-book.css
File metadata and controls
135 lines (127 loc) · 3.37 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* Windows CMD */
div.literalblock.cmd pre {
background-color: #0C0C0C;
color: #F2F2F2;
}
div.literalblock.cmd pre .conum {
background: #FFF945 !important;
color: #0C0C0C !important;
}
/* Game Transcripts */
.exampleblock.gametranscript > .content {
background-color: #F7FDFF;
color: #0089B6;
border-color: #CCF2FF;
}
.exampleblock.gametranscript > .content .red {
color: #c80062;
}
.exampleblock.gametranscript > .content .yellow {
color: #f2c900;
}
.exampleblock.gametranscript > .content .green {
color: #19a600;
}
/* Highlight theme for Hugo syntax */
.listingblock code[data-lang=hugo]::before {
color: #a09f93;
}
.listingblock pre[class=highlight][lang=hugo] {
background-color: #2d2d2d;
border-radius: 4px;
border: 1px solid #a09f93;
}
.listingblock pre[class=highlight][lang=hugo] > code {
color: #d3d0c8;
font-family: Consolas, Monaco, "Courier New", Courier, monospace;
font-size: 1em;
}
.listingblock pre[class=highlight][lang=hugo] .hl {
color: #d3d0c8;
}
.listingblock pre[class=highlight][lang=hugo] .hl.num {
color: #ffcc66;
}
.listingblock pre[class=highlight][lang=hugo] .hl.esc {
color: #f99157;
}
.listingblock pre[class=highlight][lang=hugo] .hl.ipl {
color: #ffcc66;
}
.listingblock pre[class=highlight][lang=hugo] .hl.str {
color: #99cc99;
}
.listingblock pre[class=highlight][lang=hugo] .hl.ppc {
color: #cc99cc;
}
.listingblock pre[class=highlight][lang=hugo] .hl.pps {
color: #66cccc;
}
.listingblock pre[class=highlight][lang=hugo] .hl.com {
color: #a09f93;
font-style: italic;
}
.listingblock pre[class=highlight][lang=hugo] .hl.slc {
color: #a09f93;
font-style: italic;
}
.listingblock pre[class=highlight][lang=hugo] .hl.lin {
color: #747369;
}
.listingblock pre[class=highlight][lang=hugo] .hl.opt {
color: #66cccc;
}
.listingblock pre[class=highlight][lang=hugo] .hl.kwa {
color: #f2777a;
}
.listingblock pre[class=highlight][lang=hugo] .hl.kwb {
color: #6699cc;
}
.listingblock pre[class=highlight][lang=hugo] .hl.kwc {
color: #ffcc66;
}
.listingblock pre[class=highlight][lang=hugo] .hl.kwd {
color: #cc99cc;
}
.listingblock pre[class=highlight][lang=hugo] .hl.kwde {
color: #66cccc;
}
.listingblock pre[class=highlight][lang=hugo] .hl.kwf {
color: #d27b53;
}
/* Footnotes in Hugo Code Blocks (Issue #23) */
div.listingblock div.content pre[class=highlight][lang=hugo] code sup.footnote,
div.listingblock div.content pre[class=highlight][lang=hugo] code sup.footnote a {
color: #fff;
font-weight: normal;
font-style: normal;
}
/* Hugo Syntax Definitions (Issue #35) */
div.literalblock.hugosyntax pre {
background-color: #192D34;
color: #62B1CB;
}
div.literalblock.hugosyntax div.content pre > sup.footnote,
div.literalblock.hugosyntax div.content pre > sup.footnote a {
color: #FAFAF9;
font-weight: normal;
font-style: normal;
}
/* Escapes in File Paths Temp Fix (Issue #33) */
.listingblock.noescapes pre[class=highlight][lang=hugo] .hl.esc, .listingblock.noescapes pre[class=highlight][lang=hugo] .hl.ipl {
color: #99cc99;
}
/* Book I/II Alternative Titles */
@media screen and (min-width: 768px) {
div.openblock.partintro.text-center.big.ortitle > .content {
line-height: 1.2;
font-size: 1.4375em;
font-variant: small-caps;
font-weight: 300;
}
div.openblock.partintro.text-center.big.ortitle > .content em {
font-weight: 400;
color: #2160AB;
}
}
/*# sourceMappingURL=hugo-book.css.map */