diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2020-05-31 12:59:40 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2020-05-31 12:59:40 +0200 |
commit | 4913ad5fa636e110dc8fd6a618c71b8fa27a3561 (patch) | |
tree | 4e4cdfc21b55b17a631de6f1c624282b77e63939 /sass | |
parent | 164c306795577ec7667d338c28a7544bbb8c241b (diff) | |
download | rabalderz-4913ad5fa636e110dc8fd6a618c71b8fa27a3561.tar.gz rabalderz-4913ad5fa636e110dc8fd6a618c71b8fa27a3561.tar.bz2 rabalderz-4913ad5fa636e110dc8fd6a618c71b8fa27a3561.zip |
Add styling, default license etc.
Diffstat (limited to 'sass')
-rw-r--r-- | sass/styles.scss | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/sass/styles.scss b/sass/styles.scss index f9093ee..4dbe180 100644 --- a/sass/styles.scss +++ b/sass/styles.scss @@ -1,6 +1,15 @@ body { background: #322; - color: #999; + color: #aaa; + line-height: 1.5; + + a { + color: #acc; + } + + h1, h2, h3 { + color: #bcc; + } } img { @@ -13,4 +22,18 @@ img { } .figure { text-align: center; + padding-top: 1em; + padding-bottom: 0.5em; +} + +.license { + display: flex; + border-top: 1px solid #aaa; + padding-top: 0.5em; + .cc-by-sa-logo { + width: 10em; + } + .license-text { + font-size: small; + } } |