Created
December 18, 2011 09:57
-
-
Save ilyabrin/1492902 to your computer and use it in GitHub Desktop.
CSS
This file contains 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
/** | |
* CSS | |
*/ | |
div { | |
box-shadow: 1px -1px 10px rgba(0,0,0,.8) inset; | |
margin: auto; | |
margin-top: 120px; | |
width: 100px; | |
height: 120px; | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height:100%; | |
} | |
div:hover { | |
box-shadow: 1px -1px 10px rgba(1,1,56,.7) inset; | |
margin: auto; | |
width: 105px; | |
height: 125px; | |
background: #f06; | |
background: linear-gradient(45deg, #f07, gold); | |
min-height:100%; | |
} |
This file contains 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
<!-- content to be placed inside <body>…</body> --> | |
<div></div> |
This file contains 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
{"page":"css","view":"split-vertical"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment