Skip to content

Instantly share code, notes, and snippets.

@LemonGirl
LemonGirl / dabblet.css
Last active May 8, 2019 02:50 — forked from csssecrets/dabblet.css
Text on a circle
/**
* Text on a circle
*/
body {
font: bold 120% Helvetica, sans-serif;
margin: 0;
pading: 0;
}
@LemonGirl
LemonGirl / dabblet.css
Last active May 8, 2019 02:48 — forked from csssecrets/dabblet.css
Extruded text
/**
* Extruded text
*/
body {
background: #58a;
margin: 50px;
font: bold 500%/1 Rockwell, serif;
color: white;
text-shadow: 0 1px hsl(0,0%,85%)
@LemonGirl
LemonGirl / dabblet.css
Last active April 4, 2019 01:57 — forked from csssecrets/dabblet.css
Glowing text
/**
* Glowing text
*/
body {
background: #203;
font: bold 500%/1 Rockwell, serif;
}
p {
@LemonGirl
LemonGirl / dabblet.css
Last active May 8, 2019 02:44 — forked from csssecrets/dabblet.css
Stroked text
/**
* Stroked text
*/
h1 {
margin: 0;
color: white;
}
h1.textshadow{
@LemonGirl
LemonGirl / dabblet.css
Last active May 8, 2019 02:43 — forked from csssecrets/dabblet.css
Letterpress
/**
* Letterpress
*/
body {
font: 250%/1.6 Baskerville, Palatino, serif;
}
p.lightBottom {
padding: .8em 1em;
@LemonGirl
LemonGirl / dabblet.css
Last active May 8, 2019 02:40 — forked from csssecrets/dabblet.css
Custom underlines
/**
* Custom underlines
*/
body {
font: 250%/1.8 Baskerville, Palatino, serif;
}
p.default a {
text-decoration: underline;
@LemonGirl
LemonGirl / dabblet.css
Last active May 8, 2019 02:27 — forked from csssecrets/dabblet.css
Fancy Ampersands
/**
* Fancy Ampersands
*/
@font-face {
font-family: Ampersand;
src: url("http://s6.qhres.com/static/1208d5c9aa18d2d9.ttf"), url("http://s9.qhres.com/static/645941fdd87d0589.ttf");
/*unicode-range: U+26; // Unicode码位*/
}
@LemonGirl
LemonGirl / dabblet.css
Last active May 8, 2019 02:25
Ligatures
/**
* Ligatures
*/
@font-face{
font-family: "Adobe Caslon Pro";
src: url("http://s9.qhres.com/static/9087e3ed9cc7c604.otf");
}
@font-face{
font-family: Baskerville;
src: url("http://s0.qhres.com/static/999881397bb7da46.otf");
@LemonGirl
LemonGirl / dabblet.js
Last active March 30, 2019 09:51 — forked from csssecrets/dabblet.css
Untitled
// alert('Hello world!');
@LemonGirl
LemonGirl / dabblet.css
Last active May 8, 2019 02:17
Adjusting tabs
/**
* Adjusting tabs
*/
pre {
padding: .5em;
line-height: 1.5;
background: hsl(20, 50%, 95%);
font-family: Consolas, Monaco, monospace;
}
code {