From 5090df09e8f43b2cdce98fa17bb1636fccbd4f89 Mon Sep 17 00:00:00 2001 From: Jason Haas Date: Sun, 6 Sep 2015 16:55:13 -0400 Subject: css and template changes to resolve issue #152 - Change the default ul type to be disc, add margin - Create a new ul class "blank" to use for the navbar - Changes are designed to stay in lockstep with how the http://www.gumbyframework.com/docs/#!/introduction website looks --- gum/static/style.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'gum/static') diff --git a/gum/static/style.css b/gum/static/style.css index 32d2fec..b618422 100644 --- a/gum/static/style.css +++ b/gum/static/style.css @@ -188,6 +188,20 @@ a:focus { color: #34495E; } .label:hover, .label:focus {color:#eee; } +ul, ol { + margin-bottom: 0.273em; + margin-left: 1.5em; +} + +ul { + list-style: disc outside; +} + +ul.blank { + list-style: none outside; + margin-left: 0; +} + /* Footer --------------------------------------------------------- */ .bg { background:#eee; margin-top:35px; padding-top:25px; border-top:5px solid #3498DB; } -- cgit