Skip to content

Instantly share code, notes, and snippets.

View mlpassos's full-sized avatar
🏠
Working from home

Márcio Passos mlpassos

🏠
Working from home
View GitHub Profile
@mlpassos
mlpassos / index.html
Created September 19, 2012 19:38
Interactive nodes built from image data. Play with your mouse :)
<canvas id='canvas'></canvas>
@mlpassos
mlpassos / index.html
Created September 19, 2012 19:44
using text-shadow and keyframe animations to produce neon light effect. Javascript to enable it and hide the button.
<div class="title">Neon Lights</div>
<div class="content">
<span id="switch">Turn em on</span>
<h1 id="lights">rlemon's diner<br />$4.95 a plate!</h1>
</div>​
@mlpassos
mlpassos / dabblet.css
Created November 14, 2012 12:07
outline:1px solid red;
body {
background:url(http://i.imgur.com/qKsVr.png);
}
header {
width:240px;
background: white;
margin:50px;
@mlpassos
mlpassos / dabblet.css
Created November 14, 2012 12:09
outline:1px solid red;
body {
background:url(http://i.imgur.com/qKsVr.png);
}
header {
width:240px;
background: white;
margin:50px;
@mlpassos
mlpassos / dabblet.css
Created November 14, 2012 12:25
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body{
-webkit-perspective: 1000px;
-moz-perspective: 1000px;
-o-perspective: 1000px;
perspective: 1000px;
}
@mlpassos
mlpassos / dabblet.css
Created November 14, 2012 13:29
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body{
-webkit-perspective: 1000px;
-moz-perspective: 1000px;
-o-perspective: 1000px;
perspective: 1000px;
}
@mlpassos
mlpassos / dabblet.css
Created January 17, 2013 04:17
Untitled
body{background-color:black;padding:5%;}
.engine{width:500px;
background-color:red;
padding:2%;border-radius:50%;height:500px;
border:25px dashed black;
position:relative;
animation: anima 5s infinite ease-in-out;
}
@keyframes anima{
from{}
@mlpassos
mlpassos / dabblet.css
Created January 18, 2013 03:19
Untitled
body{background-color:black;padding:5%;}
.engine{
width:200px;
background-color:red;
padding:2%;
border-radius:50%;
height:200px;
border:20px dashed black;
position:relative;
animation: anima 3s infinite linear;
@mlpassos
mlpassos / dabblet.css
Created January 18, 2013 21:53
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body{
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
.wrapper{width:90%;background-color:blue;height:auto;padding:5%;}
@mlpassos
mlpassos / dabblet.css
Created January 18, 2013 23:20
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body{
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
.wrapper{width:90%;background-color:blue;height:auto;padding:5%;}