Skip to content

Instantly share code, notes, and snippets.

@gunnarbittersmann
gunnarbittersmann / dabblet.css
Created January 28, 2014 15:43
workshop: sudoku
/**
* workshop: sudoku
*/
table
{
border-collapse: collapse;
margin: 4em auto;
}
@gunnarbittersmann
gunnarbittersmann / dabblet.css
Created January 28, 2014 15:18
workhop: form
/**
* workhop: form
*/
*
{
box-sizing: border-box;
}
html
@gunnarbittersmann
gunnarbittersmann / dabblet.css
Created January 28, 2014 14:38
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
*
{
box-sizing: border-box;
}
form
@gunnarbittersmann
gunnarbittersmann / dabblet.css
Created January 28, 2014 09:44
workshop: udhr
/**
* workshop: udhr
*/
html
{
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.5em;
background: hsl(200, 10%, 60%);
color: #333333;
@gunnarbittersmann
gunnarbittersmann / dabblet.css
Created January 20, 2014 08:31
progress fallback pseudo-element
/**
* progress fallback pseudo-element
*/
progress::after
{
content: attr(value);
}
@gunnarbittersmann
gunnarbittersmann / dabblet.css
Created November 7, 2013 09:47
heading decorated
/**
* heading decorated
*/
html
{
height: 100%;
background: linear-gradient(
to right bottom,
yellow,
@gunnarbittersmann
gunnarbittersmann / dabblet.css
Created November 5, 2013 19:03
heading decorated
/**
* heading decorated
*/
h1
{
font-size: 1.25em; /* use relative unit */
text-align: center;
background:
linear-gradient(
@gunnarbittersmann
gunnarbittersmann / dabblet.css
Created November 5, 2013 18:39
heading decorated
/**
* heading decorated
*/
h1
{
font-size: 1.25em; /* use relative unit */
text-align: center;
position: relative;
}
@gunnarbittersmann
gunnarbittersmann / dabblet.css
Created November 5, 2013 18:02
heading decorated
/**
* heading decorated
*/
h1
{
font-size: 1.25em; /* use relative unit */
text-align: center;
background-image: linear-gradient(
to right,
@gunnarbittersmann
gunnarbittersmann / dabblet.css
Created November 5, 2013 14:35 — forked from anonymous/dabblet.css
heading underlined
/**
* heading underlined
*/
h1
{
font-size: 1.25em; /* use relative unit */
text-align: center;
text-decoration-line: line-through;
text-decoration-skip: box-decoration;