diff options
| author | Henrique Marques <[email protected]> | 2024-08-17 11:14:09 +0100 |
|---|---|---|
| committer | Henrique Marques <[email protected]> | 2024-08-17 11:14:09 +0100 |
| commit | 95818067acfb7f64ec6f4cdcf156853b2eae69ac (patch) | |
| tree | b83dbaa35173e1eaf00c8fcb781ee88ba8c5094c /static/style.css | |
| parent | 8113f43b368e83fe51800b8ffc78681821d011f4 (diff) | |
add new posts
Diffstat (limited to 'static/style.css')
| -rw-r--r-- | static/style.css | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index e5558f4..7e9d019 100644 --- a/static/style.css +++ b/static/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 ; |
