blogcontent/blog/static/css/custom.css
Jack Jackson 8001b5bd76 Grafana-oncall entry
Also disables the TK-block-check (not-yet reliable and don't have
monitoring for it), and submits the TK-block-check article as a draft.
2022-09-14 06:28:50 -07:00

35 lines
628 B
CSS

blockquote {
border-left: 5px solid grey;
padding-left: 10px;
}
section.footnotes > hr {
/*
Pushes the footnotes down so they do not clash
with the "Footnotes" title, defined below
*/
margin-bottom: 40px;
}
section.footnotes > *:first-child::before {
content: 'Footnotes';
font-family: 'Georgia', serif;
margin: 10px 0;
color: #444;
font-size: 25px;
}
div.tracking-notification.div {
color: darkgrey;
}
/*
Color only code that exists in prose, not block-code
https://stackoverflow.com/a/14900779/1040915
*/
:not(pre) > code {
font-family: Courier,monospace;
background-color: lightgray;
}