diff --git a/_img/home_banner.xcf b/_img/home_banner.xcf index 4c52621..30afec5 100644 Binary files a/_img/home_banner.xcf and b/_img/home_banner.xcf differ diff --git a/_includes/base.njk b/_includes/base.njk index 70882d4..9fe47c2 100644 --- a/_includes/base.njk +++ b/_includes/base.njk @@ -6,7 +6,7 @@
- yukinets +
{% include "topmost_navbar.njk" %} diff --git a/css/main.scss b/css/main.scss index 9db22b6..3b29c67 100644 --- a/css/main.scss +++ b/css/main.scss @@ -1,3 +1,5 @@ +@use "sass:color" as c; + @use "general"; @use "fonts"; @use "main-palette" as mp; @@ -8,14 +10,28 @@ body { background-repeat: repeat;*/ a { color: mp.$link; } + a:hover { color: c.adjust($color: mp.$link, $saturation: 4%, $lightness: 10%); } } -.header-wrapper{ - display: inline; - +.header-wrapper { .header-banner { - display: inherit; + background-image: url("/img/home_banner.jpg"); + width: 300px; + height: 140px; border: 1px solid mp.$border; border-radius: 0% 0% 20px 0%; } -} \ No newline at end of file + .header-banner:hover{ background-image: url("/img/home_banner_hover.jpg"); } +} + +.navbar-wrapper { + ul li { + display: inline; + + a { + font-family: fonts.$ll; + font-weight: normal; + font-size: 1em; + } + } +} diff --git a/img/home_banner_hover.jpg b/img/home_banner_hover.jpg new file mode 100644 index 0000000..0bfd8b6 Binary files /dev/null and b/img/home_banner_hover.jpg differ