summaryrefslogtreecommitdiff
path: root/style/menu.less
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2015-03-04 17:02:38 +0100
committerPeter Wu <peter@lekensteyn.nl>2015-03-04 17:02:38 +0100
commita76caf717fd2c60f30bc62baa2522a16e4467268 (patch)
tree5f2d8bf0936231a40ca98e84bd6191a6e1a3eed6 /style/menu.less
downloadsite-a76caf717fd2c60f30bc62baa2522a16e4467268.tar.gz
Initial commit
Diffstat (limited to 'style/menu.less')
-rw-r--r--style/menu.less28
1 files changed, 28 insertions, 0 deletions
diff --git a/style/menu.less b/style/menu.less
new file mode 100644
index 0000000..60d87ec
--- /dev/null
+++ b/style/menu.less
@@ -0,0 +1,28 @@
+/* menu */
+@import "colors.less";
+
+nav {
+ margin: 3em 0;
+
+ ul {
+ background: @color-primary-0;
+ }
+
+ li {
+ display: inline-block;
+ }
+ /* links */
+ a:link {
+ margin: 3px;
+ padding: 0.5em 1em;
+ background: @color-secondary-1-1;
+ border-radius: 5px;
+ box-shadow: @color-secondary-1-2 0 0 0px 1px;
+ display: inline-block;
+ }
+ a:link:hover {
+ background: @color-secondary-1-2;
+ }
+}
+
+/* vim: set sw=4 et ts=4: */