diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-03-06 23:54:49 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-03-06 23:54:49 +0100 |
commit | ca1a6aa7df6703c10d1cd97afedd9c6838ba425b (patch) | |
tree | ca8a7fbd6fd4d43268a095ead32f7b4fecd38b72 /style/footer.less | |
parent | e2f172624be2c0cc96461bdd9418e23e798a93b2 (diff) |
First commit of the ousia based website architecture
Diffstat (limited to 'style/footer.less')
-rw-r--r-- | style/footer.less | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/style/footer.less b/style/footer.less new file mode 100644 index 0000000..1a86b18 --- /dev/null +++ b/style/footer.less @@ -0,0 +1,41 @@ +/* + * Ousía Website CSS + * + * (c) Andreas Stöckel, 2015 + * + * This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 + * International License. <http://creativecommons.org/licenses/by-sa/4.0/> + */ + +footer { + overflow: hidden; + font-size: 10pt; + color: white; + padding: 0; + background-color: @color-footer; + padding: 1em 0; + line-height: 1.75; + + a, a:link { + color: white; + } + + a:visited { + color: #CCC; + } + + nav ul h3 { + color: @color-main; + text-transform: uppercase; + font-weight: bold; + } +} + +@media (min-width: 50rem) { + footer nav ul > li { + vertical-align: top; + display: inline-block; + width: 8rem; + margin: 0; + } +} |