improved visibility of crt toggle
This commit is contained in:
parent
46401e9dd9
commit
a757c76c74
3 changed files with 17 additions and 21 deletions
|
@ -89,7 +89,7 @@ header ul li span {
|
|||
color: #aaa;
|
||||
border-color: #aaa;
|
||||
cursor: default;
|
||||
text-decoration: none !important;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
header ul li a:hover {
|
||||
|
@ -99,23 +99,22 @@ header ul li a:hover {
|
|||
text-decoration: none;
|
||||
}
|
||||
|
||||
#toggle-crt {
|
||||
margin-top: 4px;
|
||||
padding: 4px;
|
||||
fill: var(--links);
|
||||
cursor: pointer;
|
||||
transition: fill .1s, opacity .1s;
|
||||
opacity: .5;
|
||||
}
|
||||
|
||||
#toggle-crt:hover {
|
||||
fill: #eee;
|
||||
}
|
||||
|
||||
#toggle-crt.active {
|
||||
#toggle-crt a {
|
||||
color: var(--primary);
|
||||
border-color: var(--primary);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#toggle-crt a:hover {
|
||||
color: #111;
|
||||
background-color: var(--primary) !important;
|
||||
}
|
||||
|
||||
#toggle-crt.disabled a {
|
||||
opacity: .5 !important;
|
||||
}
|
||||
|
||||
main {
|
||||
width: min(calc(100% - 4rem), 720px);
|
||||
min-height: calc(100vh - 10.3rem);
|
||||
|
|
Reference in a new issue