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 June 15, 2023 22:12
Pure CSS Reveal?
/**
* Pure CSS Reveal?
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@greystate
greystate / dabblet.css
Last active March 6, 2023 09:47
Overriding defaults with a layer
/**
* Overriding defaults with a layer
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
/* These are "Unlayered Styles" */
@greystate
greystate / dabblet.css
Created March 6, 2023 09:35
Image Cloud
/**
* Image Cloud
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
--pos-x: 48;
--pos-y: 320;
@greystate
greystate / dabblet.css
Created February 2, 2023 09:31
CSS hyphenation test (none, manual & auto)
/**
* CSS hyphenation test (none, manual & auto)
*/
.cards { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); border: 2px solid; padding: 1em; }
.card { padding: 10px; border: 3px outset orange; hyphens: auto; }
.no-hyphens { hyphens: none; background: rgba(200, 0, 0, 0.5); }
.manual-hyphens { hyphens: manual; background: rgba(240, 120, 0, 0.5); }
using System.Collections.Generic;
using System.Linq;
using Umbraco.Community.Contentment.DataEditors;
using Umbraco.Core.PropertyEditors;
using Umbraco.Web;
namespace MyWebsite.DataSources
{
public class PropertyDataDataSource : IDataListSource
{
@greystate
greystate / dabblet.css
Created September 18, 2020 13:10
SVG test
/**
* SVG test
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
svg circle {
@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;