diff options
author | Jonas Smedegaard <dr@jones.dk> | 2022-03-26 00:59:27 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2022-03-26 01:15:23 +0100 |
commit | ace3f2e9138ed31e961cf842b3d25f3a5d297789 (patch) | |
tree | 5ef8e9ec7203a298b6ad511954814248d3cf1fd6 /style.scss |
initial draft
Diffstat (limited to 'style.scss')
-rw-r--r-- | style.scss | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/style.scss b/style.scss new file mode 100644 index 0000000..8ab9b17 --- /dev/null +++ b/style.scss @@ -0,0 +1,49 @@ +@charset 'utf-8'; + +/*! style.css | @License: GPL-3+ | http://source.couchdesign.dk/site/content.git */ + +$-normalize-include: null; +$-normalize-exclude: null; + +@import "normalize"; +@import "compass/typography"; + +@include normalize; + +@media print { +@import "gutenberg/gutenberg"; +} + +body { + margin: 2em; +// max-width: 62em; +} + +a { + @include hover-link; +} + +.topbar { + @media print { + display: none !important; + } + @include inline-list; +} + +.footer { + margin-left: -1em; + margin-right: -1em; + background-color: lightgrey; + p { + @include inline-block; + margin-left: 1em; + margin-right: 1em; + } +} + +@media print { + a[href*=".wikipedia.org/"]:after, + a[href*="//www.openstreetmap.org/"]:after { + content: ""; + } +} |