diff options
author | neodarz <neodarz@neodarz.net> | 2019-11-24 21:40:10 +0100 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-11-24 21:40:10 +0100 |
commit | 64da66626e7d9d809495c07d310969e44482d0f9 (patch) | |
tree | e84da1f5ee7972ee9c4db1a5aa4a30c8bd922528 /source | |
parent | 5c1e0dda4e2d3d04eaa70525d5d3f3020d542b64 (diff) | |
download | my_new_personal_website-64da66626e7d9d809495c07d310969e44482d0f9.tar.xz my_new_personal_website-64da66626e7d9d809495c07d310969e44482d0f9.zip |
Add right menu language switch
Diffstat (limited to '')
-rw-r--r-- | source/css/theme.css | 29 | ||||
-rw-r--r-- | source/css/theme.scss | 37 | ||||
-rw-r--r-- | source/template.html | 1 |
3 files changed, 67 insertions, 0 deletions
diff --git a/source/css/theme.css b/source/css/theme.css index 357e3c89..dd0726d3 100644 --- a/source/css/theme.css +++ b/source/css/theme.css @@ -91,6 +91,14 @@ ul li:before { margin: 0; padding: 0; } +.lia:hover .left-lia::after { + content: "█▓▒░"; + white-space: pre; } + +.lia:hover .right-lia::after { + content: "░▒▓█"; + white-space: pre; } + /* subMenu design */ .subnav { position: fixed; @@ -188,6 +196,27 @@ ul li:before { font-size: 12px !important; white-space: normal; } +/* menu lang switcher */ +.lang_switch { + position: fixed; + right: 11.5%; + width: 83px; + text-align: center; } + +.lang_switch .current { + color: black; } + +.lang_switch .current.lia li { + background-color: #fff; } + +.lang_switch .current .left-lia::after { + content: " "; + white-space: pre; } + +.lang_switch .current .right-lia::after { + content: " "; + white-space: pre; } + /* end menus design */ .content-separator, .footer { width: 60%; diff --git a/source/css/theme.scss b/source/css/theme.scss index ef5c3dc2..5ae5af95 100644 --- a/source/css/theme.scss +++ b/source/css/theme.scss @@ -138,6 +138,16 @@ ul li:before { } } +.lia:hover .left-lia::after { + content: "█▓▒░"; + white-space: pre; +} + +.lia:hover .right-lia::after { + content: "░▒▓█"; + white-space: pre; +} + /* subMenu design */ .subnav { position: fixed; @@ -282,6 +292,33 @@ ul li:before { } } +/* menu lang switcher */ + +.lang_switch { + position: fixed; + right: 11.5%; + width: 83px; + text-align: center; +} + +.lang_switch .current { + color: black; +} + +.lang_switch .current.lia li { + background-color: #fff; +} + +.lang_switch .current .left-lia::after { + content: " "; + white-space: pre; +} + +.lang_switch .current .right-lia::after { + content: " "; + white-space: pre; +} + /* end menus design */ diff --git a/source/template.html b/source/template.html index 2de53eb5..b98ce358 100644 --- a/source/template.html +++ b/source/template.html @@ -44,6 +44,7 @@ $endif$ ░░██ █████ ░░██ ███ ██ █████ ██ ░░ ░░░░░ ░░ ░░░ ░░ ░░░░░ ░░ </code></pre></div></a> + -- generate LANGSWITCH -- <nav class="nav"> <div class="lia-border"> -- generate menu here -- |