Skip to content

Instantly share code, notes, and snippets.

@neirusalwa
Created June 17, 2017 20:16
Show Gist options
  • Save neirusalwa/86549bc5f11c8f1fd2d5570bf1d52048 to your computer and use it in GitHub Desktop.
Save neirusalwa/86549bc5f11c8f1fd2d5570bf1d52048 to your computer and use it in GitHub Desktop.
small effect. experimental stuff. proceed with caution.
/*transition top is kinda redundant*/
.AdaptiveMedia-singlePhoto img {
transition: all 1s ease;
}
.AdaptiveMedia.is-square,
.AdaptiveMedia.is-square .AdaptiveMedia-videoPreview,
img {
transition: all 1s ease;
transition: top 1s e1ase!important;
}
.AdaptiveMedia.is-square,
.AdaptiveMedia.is-square .AdaptiveMedia-videoPreview {
max-height: 50vh;
}
.AdaptiveMedia.is-square:hover,
.AdaptiveMedia.is-square:hover .AdaptiveMedia-videoPreview {
max-height: 100vh;
}
img:hover {
top: 0px!important;
}
.AdaptiveMedia-photoContainer {
background-color: #fff!important;
}
/*blur focus when clicking on a tweet (chrome with experimetal web platform only)*/
.PermalinkOverlay-with-background {
backdrop-filter: blur(5px) saturate(180%);
}
/*blurred user bar (same requirement as above)*/
.ProfileCanopy-navBar {
background-color: rgba(255, 255, 255, 0.65);
backdrop-filter: blur(20px) saturate(180%);
}
.ProfileNav-item--userActions {
background-color: rgba(255, 255, 255, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment