From 95818067acfb7f64ec6f4cdcf156853b2eae69ac Mon Sep 17 00:00:00 2001 From: Henrique Marques Date: Sat, 17 Aug 2024 11:14:09 +0100 Subject: add new posts --- static/favicon.ico | Bin 0 -> 10863 bytes static/style.css | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 static/favicon.ico (limited to 'static') diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..f6960d7 Binary files /dev/null and b/static/favicon.ico differ 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 ; -- cgit v1.3