forked from AlgebraicJulia/ACT2023Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
59 lines (51 loc) · 955 Bytes
/
styles.css
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
/* css styles */
@font-face {
font-family: JuliaMono-Regular;
src: url("https://cdn.jsdelivr.net/gh/cormullion/juliamono/webfonts/JuliaMono-Regular.woff2");
}
.rmenv,
.itenv {
padding: 0.5em;
margin-bottom: 1.2em;
border: 1px solid #007481;
}
.solenv {
margin-bottom: 1.8em;
}
.itenv {
font-style: italic;
}
.itenv em {
font-style: normal !important;
}
.itenv:before,
.rmenv:before {
content: attr(title)".";
font-weight: 600;
padding-right: 0.5em;
display: inline;
}
.itenv > p:first-of-type,
.rmenv > p:first-of-type,
.solenv > p:first-of-type {
margin-top: 0 !important;
display: inline;
}
.itenv > :last-child,
.rmenv > :last-child,
.solenv > :last-child {
margin-bottom: 0 !important;
}
.solenv:before {
content: "Solution.";
font-weight: 600;
padding-right: 0.5em;
display: inline;
}
.tikzcd {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 1em;
margin-top: 1em;
}