📄 webpack.config.js
📄 package.json
📁 scripts/
📄 manifest.js
📄 index.js
📁 stylesheets/
📄 main.scss
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export async function writeFile(path, content) { | |
await Deno.writeTextFile(path, content); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const fs = require('fs') | |
const sharp = require('sharp') | |
const prettyBytes = require('pretty-bytes') | |
// ------------------------------------------------------------- | |
// Script. | |
// | |
// Note: for optimal file sizes, export at highest quality |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a { | |
color: COLOR; | |
} | |
a:visited { | |
color: COLOR; /* Optional, especially on SPA apps. */ | |
} | |
a:hover { | |
color: COLOR; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a { | |
color: COLOR; | |
} | |
a:visited { | |
color: COLOR; /* Optional, especially on SPA apps. */ | |
} | |
a:hover { | |
color: COLOR; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Reset. | |
*/ | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Box-model: | |
* 1. Change default box-model to border-box (the better model). | |
* 2. All elements will inherit from the <html> box-model. | |
*/ | |
html { | |
box-sizing: border-box; /* 1 */ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {injectGlobal} from 'styled-components' | |
import normalize from './normalize' | |
import base from './base' | |
import site from './site' | |
// See: https://github.com/styled-components/styled-components/issues/1109 | |
// ------------------------------------------------------------- | |
// Manifest. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Copy in "~/Library/Application Support/Adobe/Lightroom/Metadata Field Lists/Matthieu Oger.lrtemplate" | |
return { | |
version = 1, | |
title = "Matthieu Oger", | |
id = "info.regex.lrmeta.v1.mo", | |
type = "MetadataFieldList", | |
items = { | |
{ formatter = 'com.adobe.captureDate', label="Date" }, | |
{ formatter = 'com.adobe.captureTime', label="Time" }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {injectGlobal} from 'styled-components' | |
injectGlobal` | |
p { | |
color: red; | |
} | |
` |
NewerOlder