Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/scss/components/_markdown.scss')
-rwxr-xr-xsrc/scss/components/_markdown.scss32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/scss/components/_markdown.scss b/src/scss/components/_markdown.scss
new file mode 100755
index 0000000..cf15a38
--- /dev/null
+++ b/src/scss/components/_markdown.scss
@@ -0,0 +1,32 @@
+// Set markdown headings font size on large screen and up
+@media #{$large-and-up} {
+ .markdown {
+ @each $key, $value in $markdown-headings-font-size {
+ #{$key} {
+ font-size: $value;
+ }
+ }
+ }
+}
+
+// Reduce global font-size base and headings font size on small screen and down
+@media #{$small-and-down} {
+ .markdown {
+ @each $key, $value in $markdown-headings-font-size {
+ #{$key} {
+ font-size: $value - $markdown-headings-font-size-sm-screen-reduction-factor;
+ }
+ }
+ }
+}
+
+// Reduce global font-size base and headings font size on medium screen only
+@media #{$medium-only} {
+ .markdown {
+ @each $key, $value in $markdown-headings-font-size {
+ #{$key} {
+ font-size: $value - $markdown-headings-font-size-md-screen-reduction-factor;
+ }
+ }
+ }
+}