Skip to content

Instantly share code, notes, and snippets.

@Otann
Last active March 27, 2018 14:56
Show Gist options
  • Save Otann/8e74c57094546e79732d351116ea309d to your computer and use it in GitHub Desktop.
Save Otann/8e74c57094546e79732d351116ea309d to your computer and use it in GitHub Desktop.
.home_right_column > div:nth-child(1),
.home_right_column > div:nth-child(4),
#userNav,
#universalNav,
#pinnedNav,
#appsNav,
#createNav,
#pagelet_rhc_footer {
-webkit-transition: opacity 250ms ease-in-out;
-moz-transition: opacity 250ms ease-in-out;
-ms-transition: opacity 250ms ease-in-out;
-o-transition: opacity 250ms ease-in-out;
transition: opacity 250ms ease-in-out;
opacity: 0.05;
}
.home_right_column:hover > div:nth-child(1),
.home_right_column:hover > div:nth-child(4),
#userNav:hover,
#universalNav:hover,
#pinnedNav:hover,
#appsNav:hover,
#createNav:hover,
#pagelet_rhc_footer:hover {
opacity: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment