From b247b2de3436b269cff7b658cc02e18ce7fed945 Mon Sep 17 00:00:00 2001 From: Tilo Mitra Date: Mon, 25 Aug 2014 10:25:44 -0700 Subject: [PATCH] add customized menu example --- src/menus/tests/manual/menus.html | 65 +++++++++++++++++++++++++++++-- 1 file changed, 62 insertions(+), 3 deletions(-) diff --git a/src/menus/tests/manual/menus.html b/src/menus/tests/manual/menus.html index dbe57f6..b8a6527 100644 --- a/src/menus/tests/manual/menus.html +++ b/src/menus/tests/manual/menus.html @@ -14,8 +14,44 @@ font-weight: normal; } body { - padding: 2em; + padding: 2em 2em 8em; } + + .pure-menu-custom, + .children-custom { + background: #111; + } + + .pure-menu-custom { + padding: 0.8em; + border-radius: 5px; + } + + .heading-custom { + color: white; + } + + .link-custom { + color: #ddd; + transition: color 0.5s; + } + + .link-custom:hover { + color: #40a4ff; + } + + .children-custom > .pure-menu-item { + padding-top: 0.8em; + } + + .toggle-custom { + margin-top: 6px; + margin-right: 15px; + color: white; + } + + + @@ -53,7 +89,7 @@