I hereby claim:
- I am moox on github.
- I am moox (https://keybase.io/moox) on keybase.
- I have a public key whose fingerprint is 9AB7 B020 7796 868F 8754 5C91 59CB 5F52 988F 2A32
To claim this, I am signing this object:
createClass({ | |
commonApi: { | |
method: function() { | |
// this will be the instance | |
} | |
}, | |
getInitialState() { | |
this.api = {} | |
Object.keys(this.commonApi).forEach(function(method) { | |
this.api[method] = this.commonApi[method].bind(this) |
{css:next} | |
{cssnext} | |
cssnext{} | |
.cssnext{} | |
.cssnext | |
#cssnext | |
{#cssnext} | |
@cssnext |
#!/usr/bin/env zsh | |
echo $1 | |
echo $@ |
require("event") |
.putainde-Tab body { background: red } | |
.putainde-Tab body::after { | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
-webkit-transform: translate(-50%, -50%); | |
transform: translate(-50%, -50%); | |
content: "I'm a custom style"; | |
} |
<Player> | |
<video> | |
<div className="control"> | |
<Button> | |
... | |
</div> | |
</Player> |
I hereby claim:
To claim this, I am signing this object:
:root, | |
.light { | |
--color: black; | |
} | |
.dark, | |
.light--inverted { | |
--color: white; | |
} |
var glob = require("glob") | |
var rimraf = require("rimraf") | |
module.exports = function(cb) { | |
glob.sync("./dist/!(config)*").forEach(function(path) { | |
rimraf.sync(path) | |
}) | |
cb() | |
} |
@media screen and (min-width: 320px) { | |
:root { | |
--size: 1em; | |
} | |
@media (min-height: 320px) { | |
:root { | |
--size: 0.5em; | |
} | |
} |