Skip to content

Instantly share code, notes, and snippets.

View yukulele's full-sized avatar

Clément P yukulele

  • France
View GitHub Profile
@yukulele
yukulele / dabblet.css
Created August 29, 2012 12:23
font-size tests
/* font-size tests*/
div{
background:#eee;
margin:30px;
}
#d1{
font-size:38px;
width:378px;
height:189px;
@yukulele
yukulele / dabblet.css
Created August 24, 2012 15:06
CSS3 transform + transition experiment
/**
* 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;
@yukulele
yukulele / dabblet.css
Last active October 8, 2015 07:37
Smiling dice
/**
* Smiling dice
* http://dabblet.com/gist/3299972
*/
html{
background: #333;
color: white;
}
#cube {
/**
* 3D cube
*/
html,body{
overflow:hidden;
}
#cube {
position:relative;
background:#ccc;
perspective: 200px;
@yukulele
yukulele / dabblet.css
Created August 8, 2012 14:35 — forked from LeaVerou/dabblet.css
3D cube
/**
* 3D cube
*/
#cube {
position:relative;
background:#ccc;
width:300px;
height:300px;
margin:0 auto;
@yukulele
yukulele / dabblet.css
Created May 30, 2012 15:49 — forked from anonymous/dabblet.css
My first 3D trasform + transition test
/* My first 3D trasform + transition test */
#c
{
left: 50%;
perspective: 230px;
perspective-origin: 50% 80%;
position: absolute;
top: 50%;