View Trooper
Luke is dead! ,ooo888888888888888oooo, | |
o8888YYYYYY77iiiiooo8888888o | |
8888YYYY77iiYY8888888888888888 | |
[88YYY77iiY88888888888888888888] | |
88YY7iYY888888888888888888888888 | |
[88YYi 88888888888888888888888888] | |
i88Yo8888888888888888888888888888i | |
i] ^^^88888888^^^ o [i | |
oi8 i o8o i 8io | |
,77788o ^^ ,oooo8888888ooo, ^ o88777, |
View SassMeister-input.scss
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
// sRGB GAMMA CORRECTION, per spec: https://en.wikipedia.org/wiki/SRGB | |
@function re-gamma($n) { @if $n <= 0.0031308 { @return $n * 12.92; } @else { @return 1.055 * pow($n,1/2.4) - 0.055; } } | |
@function de-gamma($n) { @if $n <= 0.04045 { @return $n / 12.92; } @else { @return pow((($n + 0.055)/1.055),2.4); } } | |
// sRGB BT-709 BRIGHTNESS |
View dabblet.css
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
section { | |
background: gray; | |
max-width: 700px; | |
display: flex; | |
flex-flow: row wrap; | |
} |
View vendors.php
#!/usr/bin/env php | |
<?php | |
/* | |
* Custom version of Symfony2's vendor script | |
* Put this file in /bin and make a deps.ini file in the root, looking like this: | |
* | |
* [some_name] | |
* git=REPO | |
* target=path/to/vendor/name | |
* version=COMMITISH |