Skip to content

Instantly share code, notes, and snippets.

View fabiox's full-sized avatar

Fabio Ortiz fabiox

View GitHub Profile
@fabiox
fabiox / dabblet.css
Created April 4, 2013 17:33
Untitled
/*Transform e Rotate*/
div
{
width:100px;
height:100px;
background-color:#FFA;
font-size:15pt;
border:1px solid black;
margin:100px auto;
transition: all 2s linear;
@fabiox
fabiox / dabblet.css
Created April 4, 2013 13:37
Untitled
@keyframes teste{
100%{
transform:rotate(360deg);
-ms-transform:rotate(360deg); /* IE 9 */
-webkit-transform:rotate(360deg); /* Safari and Chrome */
-o-transform:rotate(360deg); /* Opera */
}
}
div
@fabiox
fabiox / dabblet.css
Created April 3, 2013 14:53 — forked from bhargav2785/dabblet.css
Onda com CSS *
/** Onda com CSS **/
div.wave{
position: relative;
width: 100%;
}
div.wave > span{
float: left;
width: 10%;
height: 300px;
animation: animate 1.5s ease-in-out alternate infinite;
@fabiox
fabiox / dabblet.css
Created April 3, 2013 14:47
Untitled
@keyframes teste{
0%{
background-size:20%;
}
50%{
background-size:100%;
}
100%{
background-size:20%;
}
@fabiox
fabiox / dabblet.css
Created April 3, 2013 14:47
Untitled
@keyframes teste{
0%{
background-size:20%;
}
50%{
background-size:100%;
}
100%{
background-size:20%;
}
@fabiox
fabiox / dabblet.html
Created June 22, 2012 13:52
Novos Input Types - email e url
<!DOCTYPE html>
<html>
<body>
<form action="#">
Seu Nome: <input type="text" name="nomeUsuario" /><br />
Seu e-mail: <input type="email" name="emailUsuario" /><br />
Digite seu e-mail: <input type="url" name="siteUsuario" /><br />
<input type="submit" />
@fabiox
fabiox / dabblet.css
Created May 28, 2012 19:46
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@fabiox
fabiox / dabblet.css
Created May 28, 2012 19:40
Grafico CSS3 - Redondo
@keyframes grafico1 {
0%{
-webkit-transform:rotate(1deg);
-moz-transform:rotate(1deg);
-o-transform:rotate(1deg);
transform:rotate(1deg);
}
100%{
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
@keyframes teste{
0%{
background-size:60px;
}
50%{
background-size:90px;
}
100%{
background-size:60px;
}