Skip to content

Instantly share code, notes, and snippets.

View lastguest's full-sized avatar
🥞
Cooking…

Stefano Azzolini lastguest

🥞
Cooking…
View GitHub Profile
@lastguest
lastguest / LICENSE.txt
Created August 6, 2012 13:26 — forked from 140bytes/LICENSE.txt
140byt.es -- Click ↑↑ fork ↑↑ to play!
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@lastguest
lastguest / LICENSE.txt
Created August 6, 2012 13:44 — forked from p01/LICENSE.txt
Music SoftSynth
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 Mathieu 'p01' Henri http://www.p01.org/releases/
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@lastguest
lastguest / dabblet.css
Created August 21, 2012 09:31 — forked from daneden/dabblet.css
Photo Stack Gallery
/**
* Photo Stack Gallery
*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@lastguest
lastguest / dabblet.css
Created August 21, 2012 10:38
Radar Pulse
/**
* Radar Pulse
*/
/* Default Stuff */
body {
background:#222;
font-family:sans-serif;
font-size:11px;
@lastguest
lastguest / dabblet.css
Created August 21, 2012 10:41
Sugar Text Effect
/**
* Sugar Text Effect
*/
body {
background: -webkit-gradient(radial, center center, 100, center center, 400, from(#9dcce1), to(#52a2c8));
}
.sugarText {
resize:none;
@lastguest
lastguest / dabblet.css
Created August 22, 2012 11:58
Dabblet logo
/**
* Dabblet logo
*/
@font-face {
font-family: 'Dabblet';
src: url(/img/dabblet.ttf);
}
html { background: white }
@lastguest
lastguest / dabblet.css
Created August 22, 2012 12:38
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body{
background-color: #cacace;
}
.card {
display: block;
width: 200px;
@lastguest
lastguest / dabblet.css
Created August 29, 2012 09:26 — forked from JoelBesada/dabblet.css
CSS States
/* CSS States */
body {
background: url(http://dabblet.com/img/noise.png);
background-color: #F5F2F0;
font-family: Georgia, serif;
font-size: 18px;
line-height: 1.6em;
text-shadow: 0 2px 0 white;
color: #222;
}
@lastguest
lastguest / dabblet.css
Created September 11, 2012 12:17
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
@lastguest
lastguest / dabblet.css
Created October 23, 2012 09:05
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
@-webkit-keyframes yspin {
from { -webkit-transform: rotateY(0deg); }
to { -webkit-transform: rotateY(360deg); }
}
.spiny { -webkit-animation: yspin 2s ease-in-out infinite; }