Skip to content

Instantly share code, notes, and snippets.

@oliverzy
oliverzy / dabblet.css
Last active November 2, 2015 03:45
Untitled
html, body {
width: 100%;
min-height: 100%;
max-height: 100%;
display: flex;
}
@oliverzy
oliverzy / dabblet.css
Created October 27, 2015 13:34
Untitled
.flex-container {
display: flex;
flex-wrap: wrap;
width: 300px;
height: 240px;
background-color: Silver;
}
.flex-item {
@oliverzy
oliverzy / dabblet.css
Created October 27, 2015 13:26
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@oliverzy
oliverzy / dabblet.css
Created October 27, 2015 13:26
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@oliverzy
oliverzy / dabblet.css
Created October 27, 2015 09:32 — 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);