aboutsummaryrefslogtreecommitdiff
path: root/themes/docsy/assets/scss/_content.scss
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2019-10-06 21:10:46 +0200
committerDimitri Staessens <dimitri@ouroboros.rocks>2019-10-06 21:10:46 +0200
commit568553394d0a8b34668a75c9839a0f1f426469b2 (patch)
tree175c08844f05611b059ba6900fb6519dbbc735d2 /themes/docsy/assets/scss/_content.scss
parentd5d6f70371958eec0679831abd283498ff2731e5 (diff)
downloadwebsite-568553394d0a8b34668a75c9839a0f1f426469b2.tar.gz
website-568553394d0a8b34668a75c9839a0f1f426469b2.zip
theme: Switch to docsy theme
Diffstat (limited to 'themes/docsy/assets/scss/_content.scss')
-rw-r--r--themes/docsy/assets/scss/_content.scss82
1 files changed, 82 insertions, 0 deletions
diff --git a/themes/docsy/assets/scss/_content.scss b/themes/docsy/assets/scss/_content.scss
new file mode 100644
index 0000000..3e72e00
--- /dev/null
+++ b/themes/docsy/assets/scss/_content.scss
@@ -0,0 +1,82 @@
+//
+// Style Markdown content
+//
+
+.td-content {
+ order: 1;
+
+ p, li, td {
+ font-weight: $font-weight-body-text;
+ }
+
+ > h1 {
+ font-weight: $font-weight-bold;
+ margin-bottom: 1rem;
+ }
+
+ > h2 {
+ margin-bottom: 1rem;
+ }
+
+ > h2:not(:first-child) {
+ margin-top: 3rem;
+ }
+
+ > h2 + h3 {
+ margin-top: 1rem;
+ }
+
+ > h3, > h4, > h5, > h6 {
+ margin-bottom: 1rem;
+ margin-top: 2rem;
+ }
+
+ img {
+ @extend .img-fluid;
+ }
+
+ > table {
+ @extend .table-striped;
+
+ @extend .table-responsive;
+
+ @extend .table;
+ }
+
+ > blockquote {
+ padding: 0 0 0 1rem;
+ margin-bottom: $spacer;
+ color: $gray-600;
+ border-left: 6px solid $secondary;
+ }
+
+ > ul li, > ol li {
+ margin-bottom: .25rem;
+ }
+
+ strong {
+ font-weight: $font-weight-bold;
+ }
+
+ > pre, > .highlight, > .lead, > h1, > h2, > ul, > ol, > p, > blockquote, > dl dd, .footnotes, > .alert {
+ @extend .td-max-width-on-larger-screens;
+ }
+
+ .alert:not(:first-child) {
+ margin-top: 2 * $spacer;
+ margin-bottom: 2 * $spacer;
+ }
+
+ .lead {
+ margin-bottom: 1.5rem;
+ }
+}
+
+.td-title {
+ margin-top: 1rem;
+ margin-bottom: .5rem;
+
+ @include media-breakpoint-up(sm) {
+ font-size: 3rem;
+ }
+} \ No newline at end of file