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
/* font-size tests*/ | |
div{ | |
background:#eee; | |
margin:30px; | |
} | |
#d1{ | |
font-size:38px; | |
width:378px; | |
height:189px; |
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
/** | |
* CSS3 transform + transition experiment | |
*/ | |
@import url("http://fonts.googleapis.com/css?family=Indie+Flower"); | |
#e{ | |
margin-top:40px; | |
} | |
#e>div{ | |
display:inline-block; | |
width:300px; |
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
/** | |
* Smiling dice | |
* http://dabblet.com/gist/3299972 | |
*/ | |
html{ | |
background: #333; | |
color: white; | |
} | |
#cube { |
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
/** | |
* 3D cube | |
*/ | |
html,body{ | |
overflow:hidden; | |
} | |
#cube { | |
position:relative; | |
background:#ccc; | |
perspective: 200px; |
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
/** | |
* 3D cube | |
*/ | |
#cube { | |
position:relative; | |
background:#ccc; | |
width:300px; | |
height:300px; | |
margin:0 auto; |
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
/* My first 3D trasform + transition test */ | |
#c | |
{ | |
left: 50%; | |
perspective: 230px; | |
perspective-origin: 50% 80%; | |
position: absolute; | |
top: 50%; |
NewerOlder