Skip to content

Instantly share code, notes, and snippets.

View boblemarin's full-sized avatar

boblemarin boblemarin

View GitHub Profile
@boblemarin
boblemarin / dabblet.css
Created December 7, 2012 09:51 — forked from lipelip/dabblet.css
Controler une animation CSS3 (c)lipelip
/**
* Controler une animation CSS3 (c)lipelip
*/
body {
background: #003366;
font-family: "comic sans ms";
}
#nyancat {
@boblemarin
boblemarin / dabblet.css
Created December 7, 2012 09:50 — forked from lipelip/dabblet.css
3D transform: une porte comic (c) lipelip
/**
* 3D transform: une porte comic (c) lipelip
*/
#container {
width: 250px;
height: 400px;
background: #CCC;
-webkit-perspective: 1000px;
@boblemarin
boblemarin / dabblet.css
Created December 7, 2012 09:50 — forked from lipelip/dabblet.css
Animation: contrôler l'état de départ et de fin (c) lipelip
/**
* Animation: contrôler l'état de départ et de fin (c) lipelip
*/
p {
font-family: sans-serif;
text-align: center;
width: 150px; margin: 30px auto;
padding: 10px;
@boblemarin
boblemarin / dabblet.css
Created December 4, 2012 14:58 — forked from Aqro/dabblet.css
Filters, filters everywhere. (c) aqro
/**
* Filters, filters everywhere. (c) aqro
*/
* {margin: 0; padding: 0;}
html, body {height: 100%; width: 100%;}
body {
overflow: hidden;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
@boblemarin
boblemarin / dabblet.css
Created December 4, 2012 14:55 — forked from Aqro/dabblet.css
3D Scene with rotation
/**
* 3D Scene with rotation
*/
html, body {
-webkit-transform-style: preserve-3d;
-webkit-perspective: 1200px;
height: 100%;
padding: 0;
margin: 0;
@boblemarin
boblemarin / dabblet.css
Created December 4, 2012 14:08 — forked from Aqro/dabblet.css
Menu duo séparation chose
/**
* Menu duo séparation chose
*/
body {
background: white;
padding: 0;
margin: 0;
}
@boblemarin
boblemarin / dabblet.css
Created December 4, 2012 11:21 — forked from Aqro/dabblet.css
Paradise Lost (c) aqro
/**
* Paradise Lost (c) aqro
*/
* {margin: 0; padding: 0;}
html, body {height: 100%;}
@-webkit-keyframes rotate {
from {
-webkit-transform: rotate(0deg);
@boblemarin
boblemarin / dabblet.css
Created December 4, 2012 09:16 — forked from lipelip/dabblet.css
mongol fière (c) lipelip
/**
* mongol fière (c) lipelip
**/
#nacelle {
width: 200px; height: 150px;
background: #BADA55;
position: absolute;
left: 50%; margin-left: -100px;
@boblemarin
boblemarin / dabblet.css
Created December 4, 2012 09:15 — forked from lipelip/dabblet.css
Pac Man (c) lipelip
/**
* Pac Man (c) lipelip
*/
/* aniation des deux demi-cercles de pacman */
@keyframes eatup {
0% { transform: rotate(0deg); }
50% { transform: rotate(45deg); }
@boblemarin
boblemarin / dabblet.css
Created December 4, 2012 09:15 — forked from lipelip/dabblet.css
3D transform (c) lipelip
/**
* 3D transform (c) lipelip
*/
body {
background: #deddcd;
}