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/css/theme.css | |
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 'source/css/theme.css')
-rw-r--r-- | source/css/theme.css | 29 |
1 files changed, 29 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%; |