Skip to content

Instantly share code, notes, and snippets.

@keithcollins
Last active December 17, 2015 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keithcollins/5572897 to your computer and use it in GitHub Desktop.
Save keithcollins/5572897 to your computer and use it in GitHub Desktop.
A couple of CSS classes from Project Wordsworth
.story-box {
z-index: auto;
box-shadow: rgb(153, 153, 153) 0px 0px 0px 0px;
-webkit-transform: matrix(1, 0, 0, 1, 0, 0);
-moz-transform: matrix(1, 0, 0, 1, 0, 0);
cursor: pointer;
margin-bottom:10px;
padding: 5px;
display: block;
min-height: 350px;
}
.story-box-up {
z-index: 10;
box-shadow: rgb(51, 51, 51) 0px 0px 40px -2px;
-webkit-transform: matrix(1.05, 0, 0, 1.05, 0, 0);
-moz-transform: matrix(1.05, 0, 0, 1.05, 0, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment