-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (56 loc) · 2.13 KB
/
styles.css
File metadata and controls
67 lines (56 loc) · 2.13 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
/* css styles */
figure.quarto-float-tbl figcaption.quarto-float-caption-top {
text-align: left;
}
.MathJax { font-size: 1em !important; }
/* NMTRAN-specific highlighting using semantic CSS variables */
/* Scope nmtran-only highlighting so other languages use the global theme */
/* Token class map (Skylighting):
kw=Keyword, cf=ControlFlow, fu=Function, va=Variable, bu=BuiltIn, at=Attribute,
dt=DataType, dv=DecVal, bn=BaseN, fl=Float, st=String, ch=Char, co=Comment,
op=Operator, pp=Preprocessor */
/* NMTRAN code blocks only */
pre code.sourceCode.nmtran span.kw,
pre code.sourceCode.nmtran span.cf { color: var(--nmtran-keyword) !important; font-weight: 700; }
pre code.sourceCode.nmtran span.fu { color: var(--nmtran-function) !important; }
pre code.sourceCode.nmtran span.va { color: var(--nmtran-parameter) !important; }
pre code.sourceCode.nmtran span.bu { color: var(--nmtran-builtin) !important; }
pre code.sourceCode.nmtran span.at { color: var(--nmtran-attribute) !important; }
pre code.sourceCode.nmtran span.dt { color: var(--nmtran-controlrecordoption) !important; }
pre code.sourceCode.nmtran span.dv,
pre code.sourceCode.nmtran span.bn,
pre code.sourceCode.nmtran span.fl { color: var(--nmtran-number) !important; }
pre code.sourceCode.nmtran span.st,
pre code.sourceCode.nmtran span.ch { color: var(--nmtran-string) !important; }
pre code.sourceCode.nmtran span.co { color: var(--nmtran-comment) !important; font-style: italic; }
pre code.sourceCode.nmtran span.op { color: var(--nmtran-operator) !important; }
pre code.sourceCode.nmtran span.pp { color: var(--nmtran-controlrecord) !important; font-weight: 700 !important; }
.navbar-brand > img {
max-height: 40px;
}
.index-card {
background-color: #f3f3ee;
padding: 1rem;
border-radius: 4px;
position: relative;
}
.quarto-dark .index-card {
background-color: #323230;
}
.card-title {
display: block;
font-size: 1.15em;
font-weight: 700;
margin-bottom: 0.25rem;
color: var(--bs-link-color);
}
.card-title:hover {
color: var(--bs-link-hover-color);
}
.card-badge {
position: absolute;
top: 0.75rem;
right: 0.75rem;
font-size: 0.7em;
border-radius: 6px;
}