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
|
/* Makes the text look better on Mac retina displays (the Furo CSS disables*/
/* subpixel antialiasing). */
body {
-webkit-font-smoothing: auto;
-moz-osx-font-smoothing: auto;
}
/* Disable the fancy scrolling behavior when jumping to headers (this is too
slow for long pages) */
html {
scroll-behavior: auto;
}
/* Make checkboxes from the tasklist extension ('- [ ]' in Markdown) not add bullet points to the checkboxes.
This can be removed once https://github.com/executablebooks/mdit-py-plugins/issues/59 is addressed.
*/
.contains-task-list {
list-style: none;
}
/* Make the checkboxes indented like they are bullets */
.task-list-item-checkbox {
margin: 0 0.2em 0.25em -1.4em;
}
|