Skip to content

Instantly share code, notes, and snippets.

@csssecrets
csssecrets / dabblet.css
Last active September 19, 2021 16:29
Inserting line breaks
/**
* Inserting line breaks
*/
dt, dd {
display: inline;
margin: 0;
}
dd {
@csssecrets
csssecrets / dabblet.css
Last active September 19, 2021 16:42
Zebra striped text lines
/**
* Zebra striped text lines
*/
pre {
padding: .5em;
line-height: 1.5;
background: hsl(20, 50%, 95%);
background-image: linear-gradient(
rgba(120,0,0,.1) 50%, transparent 0);
@csssecrets
csssecrets / dabblet.css
Last active September 19, 2021 16:48
Adjusting tabs
/**
* Adjusting tabs
*/
pre {
padding: .5em;
line-height: 1.5;
background: hsl(20, 50%, 95%);
font-family: Consolas, Monaco, monospace;
}
@csssecrets
csssecrets / dabblet.css
Last active September 19, 2021 16:55
Ligatures
/**
* Ligatures
*/
body {
font: 200%/1.6 "Adobe Caslon Pro", Baskerville, serif;
font-variant-ligatures: common-ligatures discretionary-ligatures historical-ligatures;
}
@csssecrets
csssecrets / dabblet.css
Last active September 19, 2021 17:02
Fancy Ampersands
/**
* Fancy Ampersands
*/
@font-face {
font-family: Ampersand;
src: local('Baskerville-Italic'), local('GoudyOldStyleT-Italic'), local('Garamond-Italic'), local('Palatino-Italic');
unicode-range: U+26;
}
@csssecrets
csssecrets / dabblet.css
Last active September 19, 2021 17:15
Custom underlines
/**
* Custom underlines
*/
body {
font: 250%/1.6 Baskerville, Palatino, serif;
}
a {
background: linear-gradient(gray, gray) no-repeat;
@csssecrets
csssecrets / dabblet.css
Last active September 19, 2021 17:15
Wavy underlines
/**
* Wavy underlines
*/
body {
font: 250%/1.6 Baskerville, Palatino, serif;
}
a {
background: linear-gradient(-45deg, transparent 40%, red 0, red 60%, transparent 0) 0 1em,
@csssecrets
csssecrets / dabblet.css
Created February 5, 2015 07:32
Letterpress
/**
* Letterpress
*/
body {
font: 250%/1.6 Baskerville, Palatino, serif;
}
p {
padding: .8em 1em;
@csssecrets
csssecrets / dabblet.css
Last active September 28, 2021 20:08
Stroked text
/**
* Stroked text
*/
h1 {
margin: 0;
color: white;
}
h1:first-child { text-shadow: 1px 1px black, -1px -1px black, 1px -1px black, -1px 1px black; }
@csssecrets
csssecrets / dabblet.css
Last active September 28, 2021 20:24
Glowing text
/**
* Glowing text
*/
body {
background: #203;
font: bold 500%/1 Rockwell, serif;
}
a {