Skip to content

Instantly share code, notes, and snippets.

View cjcheshire's full-sized avatar

Chris Cheshire cjcheshire

View GitHub Profile
@cjcheshire
cjcheshire / config.json
Created August 9, 2019 10:52
Sketch palette config for Amazon style dictionary (https://github.com/amzn/style-dictionary)
{
"source": [
"properties/**/*.json"
],
"platforms": {
"sketch": {
"transforms": ["name/cti/camel","attribute/cti", "color/sketch"],
"buildPath": "build/sketch/",
"files": [
{
@cjcheshire
cjcheshire / fullscreen.scss
Created June 21, 2012 14:34
SASS 3.2 HTML5 Fullscreen Support
@mixin fullscreen() {
&:-webkit-full-screen {
@content;
}
&:-mozilla-full-screen {
@content;
}
&:full-screen {
@content;
}