Skip to content

Instantly share code, notes, and snippets.

body {
background-color: black;
}
#preload {
display: block;
background-color: #fff;
box-shadow: 0 0 3px 3px #fff, 0 0 2px 2px #fff;
border-radius: 50%;
width: 2px;
@julia-r
julia-r / dabblet.css
Last active July 8, 2019 11:45
Untitled
body {
background-color: black;
}
#preload {
display: block;
background-color: #fff;
box-shadow: 0 0 3px 3px #fff, 0 0 2px 2px #fff;
border-radius: 50%;
width: 2px;
@julia-r
julia-r / dabblet.css
Last active June 25, 2019 06:28
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.wrapper-video-bg {
width: 100%;
height: 100%;
overflow: hidden;
position: absolute;
top: 0;
@julia-r
julia-r / dabblet.css
Last active January 18, 2019 15:04
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%;
@julia-r
julia-r / dabblet.css
Last active March 23, 2018 12:48
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.container {
display: flex;
border: solid 1px red;
//overflow: scroll;
//resize: both;
}
@julia-r
julia-r / dabblet.css
Last active March 23, 2018 10:45
Untitled
*{
--footer-height: 30px;
}
#container {
height: calc(100vh - var(--footer-height));
}
footer {
height: var(--footer-height);
@julia-r
julia-r / dabblet.css
Created March 22, 2018 14:08
Untitled
#container { }
footer { }
#container {
background-color: skyblue;
margin: 0;
padding: 0;
@julia-r
julia-r / dabblet.css
Created March 22, 2018 14:08
Untitled
#container { }
footer { }
#container {
background-color: skyblue;
margin: 0;
padding: 0;
@julia-r
julia-r / dabblet.css
Last active March 16, 2018 15:01
CSS Grid Layout
/**
* CSS Grid Layout
* Source: https://codepen.io/mozilladevelopers/pen/GMjwvG
*/
.container {
display: grid;
width: 750px;
height: 600px;
grid-template-columns: 200px 1fr 1fr;
@julia-r
julia-r / dabblet.css
Last active March 22, 2018 15:19
CSS Grid
/**
* CSS Grid
*/
.container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(5, 1fr);
}