diff options
| -rw-r--r-- | en/template.html | 2 | ||||
| -rw-r--r-- | images/menu-gold.svg | 1 | ||||
| -rw-r--r-- | stylesheets/index.css | 4 | ||||
| -rw-r--r-- | template.html | 2 |
4 files changed, 7 insertions, 2 deletions
diff --git a/en/template.html b/en/template.html index 398783a..765132d 100644 --- a/en/template.html +++ b/en/template.html @@ -17,7 +17,7 @@ <body> <header class="slidingmenu"> <input type="checkbox"> - <img class="button open" src="../images/menu.svg"> + <img class="button open" src="../images/menu{ICONCOLOR}.svg"> <div class="content"> <img class="button close" src="../images/close.svg"> <header class="banner"> diff --git a/images/menu-gold.svg b/images/menu-gold.svg new file mode 100644 index 0000000..eec9988 --- /dev/null +++ b/images/menu-gold.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#e4b63a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu"><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg> diff --git a/stylesheets/index.css b/stylesheets/index.css index 8e6f167..dcacc72 100644 --- a/stylesheets/index.css +++ b/stylesheets/index.css @@ -2,6 +2,10 @@ body { background: no-repeat 70% 30%/cover black url('/images/index/bg1k.jpg'); } +body > header.banner:hover > a { + color: #e4b63a; +} + main { position: relative; } diff --git a/template.html b/template.html index 5afc5f3..09894a2 100644 --- a/template.html +++ b/template.html @@ -17,7 +17,7 @@ <body> <header class="slidingmenu"> <input type="checkbox"> - <img class="button open" src="images/menu.svg"> + <img class="button open" src="images/menu{ICONCOLOR}.svg"> <div class="content"> <img class="button close" src="images/close.svg"> <header class="banner"> |
