Last active
December 17, 2015 07:29
-
-
Save keithcollins/5572897 to your computer and use it in GitHub Desktop.
A couple of CSS classes from Project Wordsworth
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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