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 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%;
@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;
/**
* 3D cube
*/
html,body{
overflow:hidden;
}
#cube {
position:relative;
background:#ccc;
perspective: 200px;
@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 {
@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
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 29, 2012 13:04
css3 new units: vh, vw, vmin, vmax
/* css3 new units: vh, vw, vmin, vmax */
/* (webkit) */
div{
position:absolute;
top:0;
left:0;
}
#d0{
height:20vmax;
@yukulele
yukulele / dabblet.css
Created August 30, 2012 20:49
Menu CSS3
/**
* Menu CSS3
*/
nav{
display:block;
text-align:center;
}
nav ul{
list-style:none;
margin:0;padding:0;
@yukulele
yukulele / dabblet.css
Created September 18, 2012 13:52
CSS3 checkbox
/* CSS3 checkbox */
/* don't works on firefox :-( */
input[type=checkbox]{
position:relative;
display:inline-block;
width : 40px;
height : 40px;
font-size: 40px;
background:#009;
visibility:hidden;
@yukulele
yukulele / dabblet.css
Created September 19, 2012 10:33
pure css vertical/horizontal aligner
#my_div{
background:#aaa;
width:500px;
height:400px;
resize:both;
overflow:auto;
}
#my_div>div{
background:#444;
color:#eee;