diff options
Diffstat (limited to 'public/style.css')
| -rw-r--r-- | public/style.css | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/public/style.css b/public/style.css index e5558f4..7e9d019 100644 --- a/public/style.css +++ b/public/style.css @@ -27,10 +27,51 @@ header h1 { } footer { + /* display: flex; */ + /* flex-direction: row; */ + /* align-items: center; */ + /* align-content: center; */ text-align: center ; clear: both ; } +.menu-list { + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden; +} + +.menu-item { + float: left; + margin: 0 5px; +} + +.menu-item a { + display: block; + color: white; + text-align: center; + padding: 14px 16px; + text-decoration: none; + border-width: 1px; + border-bottom-width: 1px; + border-color: #282828; + border-bottom-color: white; + border-style: solid; + transition-delay: 200ms; + -moz-transition: all 200ms ease-in; + -webkit-transition: all 200ms ease-in; + -o-transition: all 200ms ease-in; + transition: all 200ms ease-in; +} + +.menu-item a:hover { + background-color: #333; + border-width: 1px 1px 1px 1px; + border-color: white; + border-style: solid; +} + /* For TAGLIST.HTML */ .taglist { text-align: center ; |
