-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (56 loc) · 1.26 KB
/
styles.css
File metadata and controls
68 lines (56 loc) · 1.26 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
/* ---------- Responsive tables (HTML only) ---------- */
/* Wrapper for wide tables */
.table-responsive {
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
margin-bottom: 1.5rem;
}
/* Prevent tables from blowing up layout */
.table-responsive table {
width: 100%;
max-width: 100%;
border-collapse: collapse;
}
/* Slightly smaller font for dense tables */
.table-responsive th,
.table-responsive td {
font-size: 0.95rem;
vertical-align: top;
}
/* Allow long tokens (e.g., filenames) to wrap in HTML */
.table-responsive td {
word-break: break-word;
overflow-wrap: anywhere;
}
/* Optional: monospace columns behave better */
.table-responsive code {
white-space: normal;
}
.table-small {
font-size: 70%;
}
/* constrain navbar icon size */
.navbar-nav img {
height: 30px;
width: auto;
vertical-align: middle;
}
/* ================================
Global figure styling
================================ */
/* Light border around all figure images */
figure img,
.quarto-figure img {
border: 1px solid #e0e0e0;
padding: 2px;
border-radius: 4px;
background-color: #ffffff;
}
/* Slight spacing polish for captions */
figure figcaption,
.quarto-figure figcaption {
margin-top: 0.4em;
font-size: 0.9em;
color: #555;
}