diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2021-03-13 16:37:10 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2021-03-13 16:39:22 +0100 |
| commit | 0a34686de31c7de8e821408d02a915fa0efdb3e9 (patch) | |
| tree | 89e1fe14723554bcd7e34d9cae3c22fb7aed2244 | |
| parent | 05895da4d1436ed586472145a71ffc27ed16696f (diff) | |
| download | quatuorbellefeuille.com-0a34686de31c7de8e821408d02a915fa0efdb3e9.tar.xz | |
Fix some inconsistencies with shades of gold
Use brighter shade of gold on index for
- hovering on title,
- hovering on menu button.
| -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"> |
