Skip to content

Instantly share code, notes, and snippets.

@titox
titox / dabblet.css
Created January 21, 2012 19:40
basic lines
/**
* basic lines
*/
background: linear-gradient(left, white 50%, #8b0 50%);
background-size: 2px;
@titox
titox / dabblet.css
Created January 21, 2012 19:37
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background:
radial-gradient(50% 59%, circle, #D2CAAB 3%, #364E27 4%, #364E27 11%, rgba(54,78,39,0) 12%, rgba(54,78,39,0)) 50px 0,
radial-gradient(50% 41%, circle, #364E27 3%, #D2CAAB 4%, #D2CAAB 11%, rgba(210,202,171,0) 12%, rgba(210,202,171,0)) 50px 0,
radial-gradient(50% 59%, circle, #D2CAAB 3%, #364E27 4%, #364E27 11%, rgba(54,78,39,0) 12%, rgba(54,78,39,0)) 0 50px,
/**
* bg2
*/
background:
linear-gradient(-45deg, #708090 22px, #d9ecff 22px, #d9ecff 24px, transparent 24px, transparent 67px, #d9ecff 67px, #d9ecff 69px, transparent 69px),
linear-gradient(225deg, #708090 22px, #d9ecff 22px, #d9ecff 24px, transparent 24px, transparent 67px, #d9ecff 67px, #d9ecff 69px, transparent 69px)0 64px;
background-color:#708090;
background-size: 64px 128px;
@titox
titox / dabblet.css
Created January 9, 2012 13:24
iOS Native App Default Style implemented in CSS
/* iOS Native App Default Style implemented in CSS */
/* Bootstrapping … */
* {
margin: 0;
padding: 0;
font-size: inherit;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
@titox
titox / dabblet.css
Created January 9, 2012 13:24
iOS Native App Default Style implemented in CSS
/* iOS Native App Default Style implemented in CSS */
/* Bootstrapping … */
* {
margin: 0;
padding: 0;
font-size: inherit;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
@titox
titox / dabblet.css
Created January 9, 2012 13:24
iOS Native App Default Style implemented in CSS
/* iOS Native App Default Style implemented in CSS */
/* Bootstrapping … */
* {
margin: 0;
padding: 0;
font-size: inherit;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
@titox
titox / dabblet.css
Created January 9, 2012 13:24
iOS Native App Default Style implemented in CSS
/* iOS Native App Default Style implemented in CSS */
/* Bootstrapping … */
* {
margin: 0;
padding: 0;
font-size: inherit;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
@titox
titox / dabblet.css
Created January 9, 2012 13:24 — forked from philippbosch/dabblet.css
iOS Native App Default Style implemented in CSS
/* iOS Native App Default Style implemented in CSS */
/* Bootstrapping … */
* {
margin: 0;
padding: 0;
font-size: inherit;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
/**
* Fire
*/
.fire {
margin: 50px 0 0 50px;
font-size: 50px;
color: red;
text-shadow: 0 0 4px white,
@titox
titox / dabblet.css
Created January 5, 2012 10:41
Basic Gradient
/**
* Basic Gradient
*/
.grad {
margin: 0px;
background: #f06;
background: linear-gradient(45deg, #f06, green);
height:500px;
}