summaryrefslogtreecommitdiffstats
path: root/docs/custom.less
diff options
context:
space:
mode:
authorJames Moger <james.moger@gmail.com>2013-03-08 19:19:48 -0500
committerJames Moger <james.moger@gmail.com>2013-03-08 19:20:14 -0500
commit926634baaccf8f19f30fa179298ca7edebfeb58d (patch)
tree9f50715e2d9cb3d0732c2321ec154add48f701f0 /docs/custom.less
parent69be7ea90171acfba352ebb5d0f05c72dc63e72a (diff)
downloadiciql-926634baaccf8f19f30fa179298ca7edebfeb58d.tar.gz
iciql-926634baaccf8f19f30fa179298ca7edebfeb58d.zip
Mostly complete migration of build script to Moxie
Diffstat (limited to 'docs/custom.less')
-rw-r--r--docs/custom.less40
1 files changed, 40 insertions, 0 deletions
diff --git a/docs/custom.less b/docs/custom.less
new file mode 100644
index 0000000..31098f5
--- /dev/null
+++ b/docs/custom.less
@@ -0,0 +1,40 @@
+
+// GLOBAL VALUES
+// --------------------------------------------------
+@standardGray: #ccc;
+@cornflower: #abd4ff;
+@white: #fff;
+
+// Dropdown
+// -------------------------
+@dropdownLinkBackgroundHover: @cornflower;
+
+// Navbar
+// -------------------------
+@navbarHeight: 55px;
+@navbarBackground: @cornflower;
+@navbarBackgroundHighlight: @cornflower;
+@navbarText: @white;
+@navbarLinkColor: @white;
+@navbarLinkColorHover: @white;
+@navbarLinkColorActive: @white;
+@navbarLinkBackgroundHover: transparent;
+@navbarLinkBackgroundActive: transparent;
+
+.navbar {
+ .brand {
+ @elementHeight: 48px;
+ padding: 7px;
+ }
+}
+
+.navbar .nav > li > a {
+ font-size: @baseFontSize + 2;
+ text-shadow: 0 1px 0 #6b94df;
+}
+
+body { padding-top: @navbarHeight + 15 } /* 60px to make the container go all the way to the bottom of the topbar */
+footer { margin-top: 25px; padding: 15px 0 16px; border-top: 1px solid #E5E5E5; }
+
+a:hover { text-decoration: underline !important; }
+em { color: #50a000; }