Skip to content

Instantly share code, notes, and snippets.

View maculosa's full-sized avatar
🎯
Focusing

mo19 maculosa

🎯
Focusing
View GitHub Profile
@maculosa
maculosa / dabblet.css
Created September 18, 2019 01:19 — forked from csssecrets/dabblet.css
Conic gradients test
/**
* Conic gradients test
* PASS if green gradient, FAIL if red.
*/
background: red;
background: conic-gradient(limegreen, green, limegreen);
min-height: 100%;
@maculosa
maculosa / dabblet.css
Created September 18, 2019 01:18 — forked from csssecrets/dabblet.css
Polka dot
/**
* Polka dot
*/
background: #655;
background-image: radial-gradient(tan 20%, transparent 0),
radial-gradient(tan 20%, transparent 0);
background-size: 30px 30px;
background-position: 0 0, 15px 15px;
@maculosa
maculosa / dabblet.css
Created April 11, 2018 23:47 — forked from csssecrets/dabblet.css
Translucent borders
/**
* Translucent borders
*/
body {
background: url('http://csssecrets.io/images/stone-art.jpg');
}
div {
border: 10px solid hsla(0,0%,100%,.5);