:Fade resume icons in lower-res views

master
Mike Gerwitz 2017-07-30 22:17:23 -04:00
parent 50a05be618
commit b26e73f278
Signed by: mikegerwitz
GPG Key ID: 8C917B7F5DC51BA2
1 changed files with 12 additions and 0 deletions

View File

@ -203,6 +203,10 @@ h1 { font-size: 2.2em; }
list-style: none;
margin: 0px;
/* see @media layouts */
transition: filter 0.15s; /* quick fade in */
}
#header ul.links li {
margin: 0px;
@ -303,6 +307,14 @@ h1 { font-size: 2.2em; }
padding: 0px 2em 0px 3em;
margin: 0px 50px 0px 0px;
}
/* now that icons are a part of the main content,
make them blend better (otherwise the vibrant color
is too jarring/distracting) */
#header ul.links:not(:hover) {
filter: saturate(25%);
transition: filter 3s; /* slow fade */
}
}