-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse-outline.css
More file actions
162 lines (139 loc) · 3.64 KB
/
course-outline.css
File metadata and controls
162 lines (139 loc) · 3.64 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
Course outline (syllabus) — readable HTML spacing.
- Section headings: red text, blue rule underneath
- Comfortable space between sections and paragraphs
*/
#quarto-document-content {
font-family: Arial, Helvetica, sans-serif;
font-size: 11pt;
line-height: 1.5;
color: #000000;
}
#quarto-document-content > #title-block-header:first-child {
margin-top: 0 !important;
padding-top: 0 !important;
}
#quarto-document-content #title-block-header {
text-align: center;
margin: 0 0 0.75rem 0 !important;
padding: 0 !important;
border: none;
}
/* Empty author/date block still reserves space — hide for this page */
#quarto-document-content #title-block-header .quarto-title-meta {
display: none !important;
}
#quarto-document-content #title-block-header .quarto-title {
width: 100%;
box-sizing: border-box;
margin: 0 !important;
padding: 0 !important;
border: none;
}
#quarto-document-content #title-block-header h1.title {
display: block;
width: 100%;
max-width: none;
box-sizing: border-box;
font-size: 12pt;
font-weight: 700;
color: #000000;
margin: 0 !important;
padding: 0 !important;
border: none !important;
}
#quarto-document-content #title-block-header .subtitle,
#quarto-document-content #title-block-header .subtitle.lead {
font-size: 12pt;
font-weight: 400;
color: #000000;
margin: 0.35rem 0 0 0 !important;
padding: 0 !important;
}
#quarto-document-content section:is(.level1, .level2, .level3, .level4, .level5, .level6)
> :is(h1, h2, h3, h4, h5, h6) {
display: block;
width: 100%;
max-width: none;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
font-size: 12pt;
font-weight: 700;
color: #c00000;
margin-top: 1.75rem;
margin-bottom: 0.65rem !important;
margin-left: -1.5rem;
margin-right: -1.5rem;
padding: 0 1.5rem 0.35rem 1.5rem;
border-bottom: 1pt solid #4472c4;
}
#quarto-document-content #title-block-header + section {
margin-top: 0 !important;
padding-top: 0 !important;
}
#quarto-document-content #title-block-header + section > :is(h1, h2, h3, h4, h5, h6) {
margin-top: 0.85rem !important;
}
#quarto-document-content section:is(.level1, .level2, .level3, .level4, .level5, .level6) {
margin-bottom: 1.25rem;
padding-bottom: 0.25rem;
}
#quarto-document-content #course-information > p:first-of-type {
margin-top: 0.35rem;
margin-bottom: 0.65rem;
}
#quarto-document-content .table {
--bs-table-border-color: #bfbfbf;
font-size: 10.5pt;
margin-top: 0.5rem;
margin-bottom: 0.85rem;
}
#quarto-document-content .table > :not(caption) > * > * {
border-color: #bfbfbf;
}
#quarto-document-content p {
margin-top: 0.45rem;
margin-bottom: 0.65rem;
}
#quarto-document-content a {
color: #0000ff;
text-decoration: underline;
}
#quarto-document-content a:hover {
color: #954f72;
}
#quarto-document-content ul,
#quarto-document-content ol {
font-size: 11pt;
margin-top: 0.45rem;
margin-bottom: 0.75rem;
}
/* Topics: readable spacing between numbered lines */
#quarto-document-content #topics ol {
margin-top: 0.5rem;
margin-bottom: 0.75rem;
padding-left: 1.4rem;
}
#quarto-document-content #topics ol > li {
margin-top: 0;
margin-bottom: 0.35rem;
padding-top: 0;
padding-bottom: 0;
line-height: 1.45;
}
#quarto-document-content #topics ol > li > p {
margin: 0 !important;
padding: 0;
}
#quarto-document-content #topics ol > li br {
display: none;
}
@media (max-width: 575.98px) {
#quarto-document-content section:is(.level1, .level2, .level3, .level4, .level5, .level6)
> :is(h1, h2, h3, h4, h5, h6) {
margin-left: -1rem;
margin-right: -1rem;
padding-left: 1rem;
padding-right: 1rem;
}
}