summaryrefslogtreecommitdiffhomepage
path: root/resources/sass
diff options
context:
space:
mode:
authorCamil Staps2021-06-23 19:20:29 +0200
committerCamil Staps2021-06-23 19:20:29 +0200
commitbbc049b5c7749b8f9c4e1ade9cf1da4f91f37c0d (patch)
tree9fe20b0549b51a7165b847ac1a6a5f56a128ff92 /resources/sass
parentAdd author on articles (diff)
Add article series on the clean sandbox
Diffstat (limited to 'resources/sass')
-rw-r--r--resources/sass/style.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/resources/sass/style.scss b/resources/sass/style.scss
index e401645..1523344 100644
--- a/resources/sass/style.scss
+++ b/resources/sass/style.scss
@@ -96,11 +96,27 @@ span.tt {
* title and subtitle. So we adapt the font size of the headings in the
* markdown content so that they are not larger than the page title. */
.markdown {
+ h1, h2, h3 { font-weight: bold; }
h1 { font-size: 18px; } /* size of h4 */
h2 { font-size: 14px; } /* size of h5 */
h3 { font-size: 12px; } /* size of h5 */
}
+pre code {
+ tab-size: 4;
+ -moz-tab-size: 4;
+ white-space: pre;
+}
+
+pre code.lang-js {
+ tab-size: 2;
+ -moz-tab-size: 2;
+}
+
+blockquote {
+ font-size: unset;
+}
+
footer {
padding: 1em 0;
}
@@ -108,3 +124,7 @@ footer {
.obfuscate > span {
display: none;
}
+
+.breadcrumb {
+ margin-bottom: 0;
+}