Mercurial > libervia-templates
diff default/static/styles.css @ 61:f76ec90e0e1e
base: menus handling, first draft:
this is a very basic way to handle menu (big buttons on the top), just a first draft to be able to navigate.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 11 Nov 2017 00:16:35 +0100 |
parents | a5dc14675d5e |
children | 9834106678da |
line wrap: on
line diff
--- a/default/static/styles.css Sat Nov 11 00:14:23 2017 +0100 +++ b/default/static/styles.css Sat Nov 11 00:16:35 2017 +0100 @@ -53,6 +53,40 @@ margin: 1.5em auto; } +/* generic */ + +.button:hover { + background-color: #bc0000; +} + +/* Menus */ + +.menu ul { + display: flex; + justify-content: center; + margin-top: 8px; + padding: 0; + list-style: none; +} + +.menu li { + margin: 0.5em; + text-align: center; +} + +.menu a { + color: inherit; + text-decoration: none; + border: solid 1px; + padding: 0.5em; + font-variant: small-caps; + border-radius: 1em; + background: #eee; +} + +.menu a:hover { +} + /* Forms */ .form_submit {