-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcustom.css
More file actions
88 lines (75 loc) · 3.56 KB
/
Copy pathcustom.css
File metadata and controls
88 lines (75 loc) · 3.56 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
/* ============================================================
Chem 3240 — Iowa State theme for the MyST book-theme
Brand: Cardinal #C8102E · Gold #F1BE48
(Avenir on Apple devices; Mulish — a close match — everywhere else)
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
:root {
--isu-cardinal: #c8102e;
--isu-gold: #f1be48;
--solution-violet: #7c3aed;
}
/* ---- Typography ----------------------------------------------- */
html, body, button, input, select, textarea {
font-family: 'Avenir', 'Avenir Next', 'Mulish', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Avenir', 'Avenir Next', 'Mulish', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
letter-spacing: -0.012em;
font-weight: 700;
}
/* Comfortable reading size & line rhythm in the article body */
main, article {
font-size: 1.05rem;
line-height: 1.72;
}
/* ---- Branded content links (cardinal text, gold hover) -------- */
main a, article a {
color: var(--isu-cardinal) !important;
text-decoration: none !important;
border-bottom: none !important;
transition: background 0.15s ease, color 0.15s ease;
}
main a:hover, article a:hover {
background: var(--isu-gold) !important;
border-radius: 0.2em;
color: #1a1a1a !important;
}
/* ---- ISU gold text selection ---------------------------------- */
::selection { background: var(--isu-gold); color: #1a1a1a; }
::-moz-selection { background: var(--isu-gold); color: #1a1a1a; }
/* ---- Keep the logo tidy in the header ------------------------- */
header img[src*="isu-logo"] { max-height: 38px; width: auto; }
/* ============================================================
Admonition palette — distinct, consistent cards
note=blue · tip=green · warning=amber (theme defaults)
important=Cardinal · solution=violet (overridden below)
============================================================ */
/* IMPORTANT -> Cardinal (key equations, laws, definitions to remember) */
.myst-admonition-important { border-left-color: var(--isu-cardinal) !important; }
.myst-admonition-important .myst-admonition-header {
background-color: rgba(200, 16, 46, 0.09) !important;
color: var(--isu-cardinal) !important;
}
.myst-admonition-important .myst-admonition-header svg { color: var(--isu-cardinal) !important; }
/* SOLUTION -> violet collapsible card (worked answers to problems) */
.myst-admonition.solution { border-left-color: var(--solution-violet) !important; }
.myst-admonition.solution .myst-admonition-header {
background-color: rgba(124, 58, 237, 0.10) !important;
color: var(--solution-violet) !important;
}
.myst-admonition.solution .myst-admonition-header svg { color: var(--solution-violet) !important; }
/* ---- Figures: clean, readable numbered captions --------------- */
figure figcaption {
font-size: 0.92rem;
line-height: 1.5;
color: #475569;
}
figure figcaption .caption-number,
figure figcaption strong:first-child { color: var(--isu-cardinal); font-weight: 700; }
:is(html.dark, html[data-theme="dark"]) figure figcaption { color: #cbd5e1; }
/* ---- Dark mode: gold content links ---------------------------- */
:is(html.dark, html[data-theme="dark"]) main a,
:is(html.dark, html[data-theme="dark"]) article a { color: var(--isu-gold) !important; }
:is(html.dark, html[data-theme="dark"]) main a:hover,
:is(html.dark, html[data-theme="dark"]) article a:hover { color: #1a1a1a !important; background: var(--isu-gold) !important; }