Skip to content

Instantly share code, notes, and snippets.

@dbonates
Created August 11, 2015 11:37
Show Gist options
  • Select an option

  • Save dbonates/91c53787143e6adb7b89 to your computer and use it in GitHub Desktop.

Select an option

Save dbonates/91c53787143e6adb7b89 to your computer and use it in GitHub Desktop.
css for popup cubic curve
.popup {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
display: block;
text-align: center;
margin: 0 auto;
color: #f0c600;
background-color: rgba(0,0,0,0.9);
padding: 50px;
-webkit-transform: scale(0.5);
opacity: 0;
transition: all 0.55s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment