From b3b79c93f0a319d75b4d5310754c040f8105abd1 Mon Sep 17 00:00:00 2001 From: AlexFlipnote Date: Fri, 23 Apr 2021 14:56:31 +0200 Subject: [PATCH] Release v3, including markdown --- scss/assets/_credits.scss | 2 +- scss/components/_themeColours.scss | 25 +++++++++++++++++++++++++ scss/modesta.scss | 1 + 3 files changed, 27 insertions(+), 1 deletion(-) diff --git a/scss/assets/_credits.scss b/scss/assets/_credits.scss index 4af411b..a7cd91b 100644 --- a/scss/assets/_credits.scss +++ b/scss/assets/_credits.scss @@ -1,6 +1,6 @@ // scss-lint:disable Comment /*! - * Modesta v3.0.0-beta (https://modesta.alexflipnote.dev) + * Modesta v3.0.0 (https://modesta.alexflipnote.dev) * Made by AlexFlipnote (https://alexflipnote.dev) * Licensed under MIT (https://github.com/AlexFlipnote/Modesta/blob/master/LICENSE) */ diff --git a/scss/components/_themeColours.scss b/scss/components/_themeColours.scss index f84f2df..1a7ee4b 100644 --- a/scss/components/_themeColours.scss +++ b/scss/components/_themeColours.scss @@ -30,6 +30,31 @@ $themes-container: ( } } + .markdown-jekyll { + color: $text; + + hr { + background-color: $secondary; + border-bottom: 1px solid $secondary; + border-bottom-color: $secondary; + } + + h1, h2 { + border-bottom: 1px solid $secondary; + } + + tr { + background-color: $primary; + &:nth-child(2n) { background-color: $secondary; } + } + + .highlight { background: $secondary !important; } + .highlighter-rouge { + background: $secondary !important; + border: 1px solid $secondary; + } + } + .tooltip::after { background-color: $secondary; color: $text; diff --git a/scss/modesta.scss b/scss/modesta.scss index 12bc583..6cc69a0 100644 --- a/scss/modesta.scss +++ b/scss/modesta.scss @@ -15,6 +15,7 @@ @import 'components/grid'; @import 'components/objects'; @import 'components/emojis'; +@import 'components/markdown'; // Last items @import 'components/responsive';