Skip to content

Instantly share code, notes, and snippets.

View greystate's full-sized avatar
:octocat:
Octocatering

Chriztian Steinmeier greystate

:octocat:
Octocatering
View GitHub Profile
@greystate
greystate / dabblet.css
Created March 24, 2020 08:28
Using currentcolor to style referenced SVG
/**
* Using currentcolor to style referenced SVG
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
#logobox {
@greystate
greystate / dabblet.css
Created February 27, 2020 23:56
Text over image w/ CSS Grid
/**
* Text over image w/ CSS Grid
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
.heroic {
@greystate
greystate / dabblet.css
Created February 27, 2020 23:41
Clip Path Exploration
/**
* Clip Path Exploration
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
img {
@greystate
greystate / dabblet.css
Created January 21, 2020 21:58
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
box-shadow: 0 0 0 20px green inset;
padding: 20px;
box-sizing: border-box;
@greystate
greystate / dabblet.css
Created September 28, 2019 06:53
Andy's breakout button
/**
* Andy's breakout button
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
body {
@greystate
greystate / dabblet.css
Created September 28, 2019 06:32
Button style
/**
* Button style
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
font-size: 160%;
}
@greystate
greystate / SiteSetting.config
Created August 6, 2019 15:34
Checking Umbraco Cloud environment
<?xml version="1.0" encoding="UTF-8"?>
<SiteSettings environment="local">
<Settings for="development">
<!-- ... -->
</Settings>
<Settings for="live">
<!-- ... -->
</Settings>
</SiteSettings>
@greystate
greystate / dabblet.css
Created March 4, 2019 22:36
Dot with underlay
/**
* Dot with underlay
*/
.dot {
transition: max-width 0.7s ease-out;
box-sizing: border-box;
position: relative;
border-radius: 17px;
padding: 7px 17px 7px 7px;
background-color: rgba(0, 0, 0, 0.5);
@greystate
greystate / dabblet.css
Created January 28, 2019 11:52
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background:
linear-gradient(to bottom, #f06, #f06 5px, yellow 0, yellow 57px, #f06 0) no-repeat;
height: 62px;
@greystate
greystate / dabblet.css
Last active January 22, 2019 20:29
2DScroller Spike
/**
* 2DScroller Spike
*/
body { --value: 100; }
.item1, .item2 { box-sizing: border-box; }
section {
position: relative;