Skip to content

Instantly share code, notes, and snippets.

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

Jeffrey Jorgensen jayjo

🏠
Working from home
View GitHub Profile
@jayjo
jayjo / dabblet.css
Created August 29, 2012 21:42
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
/* Green Button */
body { background-color: #000;
}
.green-button {
@jayjo
jayjo / dabblet.css
Created August 30, 2012 01:13
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
/* Value Prop Input */
body {
background: #3D3422;
}
@jayjo
jayjo / dabblet.css
Created August 30, 2012 01:20
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
/* Cozy Value Prop Form */
html, body {
width: 100%;
height: 100%;
background: #3f301a; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, #3f301a 0%, #362918 100%); /* FF3.6+ */
@jayjo
jayjo / dabblet.css
Created October 10, 2012 04:51
Super Sweet Gray Button
/**
* Super Sweet Gray Button
*/
body { background: #FFF; padding: 40px;}
.button {
position: relative;
padding: .70em 1.25em;
display: inline-block;
@jayjo
jayjo / dabblet.css
Created October 10, 2012 05:04
White Text Input
/**
* White Text Input
*/
body {
background: #f2f2f2;
}
input[type=text] {
outline: none;
@jayjo
jayjo / dabblet.css
Created February 7, 2013 18:22
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%;
@jayjo
jayjo / dabblet.css
Created February 7, 2013 19:15
Green Cozy Button
/**
* Green Cozy Button
*/
body {padding: 50px; }
.button {
margin: 20px;
padding: .75em 1.5em;
border: 1px solid #006158;
@jayjo
jayjo / dabblet.css
Created February 7, 2013 20:04
Green Cozy Button
/**
* Green Cozy Button
*/
body {padding: 50px; -webkit-font-smoothing: antialiased;}
.centered {
text-align: center;
}
@jayjo
jayjo / dabblet.css
Created July 24, 2014 00:33
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.bar.bar {color: orange;}
.foo .bar {
color: red;
}
@jayjo
jayjo / dabblet.css
Created September 20, 2014 01:03
ANIMATIONS ***********
/************* ANIMATIONS ************/
@-webkit-keyframes growth {
0% {
transform: scale(1);
}
25% {
transform: scale(0.85);
}
50% {
transform: scale(1.1);