diff options
author | noisawe <3evasion@gmail.com> | 2017-11-04 22:19:38 +0100 |
---|---|---|
committer | noisawe <3evasion@gmail.com> | 2017-11-04 22:19:38 +0100 |
commit | 0b206dfaa5ed6064d99ac62abe4ce6135cfea914 (patch) | |
tree | 9df100fe72f95587b9424b5f51e17e60076f55ee | |
parent | 65c46cceaabcdb6eb692d7267e74f65d73bb958c (diff) | |
download | iro-0b206dfaa5ed6064d99ac62abe4ce6135cfea914.tar.gz |
Fix spacing and change separator
-rw-r--r-- | style.css | 22 |
1 files changed, 20 insertions, 2 deletions
@@ -64,6 +64,7 @@ li { display: inline-block; position: relative; font-size: 2em; + letter-spacing: normal; } li:hover, li:first-child { @@ -73,15 +74,32 @@ li:hover, li:first-child { li:first-child:after { position: absolute; right: 0; - content: '\000BB'; + content: '|'; +} + +ul:hover li:first-child:after { + font-weight: bolder; } li:first-child, h1 { pointer-events: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +li:nth-child(2) { + margin-left: .25em; } li:not(:first-child) + li:before { content: '|'; - margin-right: 5px; + margin-left: .25em; + margin-right: .25em; color: white; } + +div { + letter-spacing: -1em; +} |