diff options
author | noisawe <3evasion@gmail.com> | 2017-11-05 13:46:32 +0100 |
---|---|---|
committer | noisawe <3evasion@gmail.com> | 2017-11-05 13:46:32 +0100 |
commit | 52b5886eb258d3bc7bf62b683038f307d91556b7 (patch) | |
tree | 9f7f9724639724263a405ba6a03ba273682f4abb | |
parent | 23dd196cc59c8a0d281128263cc8e22173e4f8a1 (diff) | |
download | iro-52b5886eb258d3bc7bf62b683038f307d91556b7.tar.gz |
Use border-right for the default separator
-rw-r--r-- | style.css | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -5,14 +5,18 @@ /* Content */ li:first-child:after { - content: '|'; + /*content: '|';*/ /*content: '\000BB';*/ /* For » arrows */ + content: ''; + border-right: 2px solid; + transition: border-right 50ms; } /* Hover effects */ ul:hover li:first-child:after { - font-weight: bolder; + /*font-weight: bolder;*/ + border-right: 4px solid; } @@ -97,6 +101,7 @@ li:hover, li:first-child { li:first-child:after { position: absolute; right: 0; + height: 1em; } li:first-child, h1 { |