Skip to content

Instantly share code, notes, and snippets.

View ffoodd's full-sized avatar
🎯
Focusing

Gaël Poupard ffoodd

🎯
Focusing
View GitHub Profile
@ffoodd
ffoodd / dabblet.css
Last active August 29, 2015 14:06
POC bouton de rechargement
/**
* POC bouton de rechargement
*/
@keyframes move-up {
from {
transform: translateY( 100% ) translateZ( 0 );
opacity: 0;
}
}
@ffoodd
ffoodd / dabblet.css
Last active August 29, 2015 14:06
Alignement de définitions
/**
* Alignement de définitions
*/
dl {
color: #666;
margin: 0;
padding: 0;
}
@ffoodd
ffoodd / dabblet.css
Created September 11, 2014 12:31
Le cercle magique — №2
/**
* Le cercle magique — №2
*/
*,
:after,
:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
@ffoodd
ffoodd / dabblet.css
Created September 23, 2014 15:06
Essai d’animation
/**
* Essai d’animation */
@keyframes move-up {
0% {
transform: translateY( 100% ) translateZ( 0 );
opacity: 0;
}
10% {
@ffoodd
ffoodd / dabblet.css
Created September 24, 2014 07:35
MQ tester
/**
* MQ tester */
@media (min-width: 1300px) {
body { background: red; }
}
@ffoodd
ffoodd / dabblet.css
Created September 24, 2014 15:28
Chorégraphie de contenu
/**
* Chorégraphie de contenu
*/
body {
font: 3em Lucida Sans Unicode, Lucida Sans, sans-serif;
color: #333;
background: #F2F2E2;
}
ul {
@ffoodd
ffoodd / dabblet.css
Last active August 29, 2015 14:08 — forked from anonymous/dabblet.css
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
li {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
}
span {
@ffoodd
ffoodd / dabblet.css
Created November 4, 2014 14:50
Hakunamatata
/**
* Hakunamatata
*/
li {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
}
span {
@ffoodd
ffoodd / dabblet.css
Created November 4, 2014 14:51
Hakunamatata
/**
* Hakunamatata
*/
li {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
}
span {
@ffoodd
ffoodd / dabblet.css
Created November 17, 2014 13:26
Tiens !
/**
* Tiens !
*/
h1 { font-size: x-large; }
small { font-size: small; }