-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathextra.css
More file actions
56 lines (47 loc) · 1 KB
/
extra.css
File metadata and controls
56 lines (47 loc) · 1 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
@import url(https://unpkg.com/simple-icons-font@v5/font/simple-icons.min.css);
h2 {
position: relative;
}
h2::after {
display: block;
content: '';
width: 1rem;
height: 5px;
background: var(--md-primary-fg-color--light);
position: absolute;
bottom: -2px;
left: 0;
border-radius: 2px;
}
[data-md-color-scheme="slate"] h2::after {
background: var(--md-primary-fg-color--dark);
}
.picture-spacing {
height: var(--ps);
display: none;
visibility: hidden;
}
@media screen and (min-width: 45em) {
.picture-spacing {
display: block;
visibility: unset;
}
}
.si {
text-align: center;
vertical-align: middle;
}
b.si {
font-weight: normal;
font-size: 1.5rem;
padding-right: 0.3rem;
vertical-align: 1rem;
}
/* Center Markdown Tables (requires md_in_html extension) */
.center-table {
text-align: center;
}
.md-typeset .center-table :is(td,th):not([align]) {
/* Reset alignment for table cells */
text-align: initial;
}