I hereby claim:
- I am adrusi on github.
- I am adrusi (https://keybase.io/adrusi) on keybase.
- I have a public key whose fingerprint is F4C0 564A 2C88 DA3F 7F5D B0C6 B611 CA38 220B 5E16
To claim this, I am signing this object:
@scrollbar-background-color: #d6d6d6; | |
@scrollbar-color: #9b9d9e; | |
.scrollbars-visible-always { | |
::-webkit-scrollbar { | |
width: 13px; | |
height: 13px; | |
} | |
::-webkit-scrollbar-track, |
I hereby claim:
To claim this, I am signing this object:
<?php | |
$themes[] = "Theme Name"; | |
$theme_name["task divider"]["foreground"] = "color"; | |
$theme_name["task divider"]["background"] = null; | |
$theme_name["id"]["foreground"] = null; | |
$theme_name["id"]["background"] = null; | |
$theme_name["title"]["foreground"] = null; |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<!--[if lt IE 9]> | |
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
<!--[if lt IE 7]> | |
<script> |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<style> | |
body { | |
font-family: "Helvetica Neue", Helvetica, sans-serif; | |
} | |
input[type=range] { |
[data-tooltip], .tooltip { | |
text-decoration: none!important; | |
border-bottom: 3px double black; | |
margin-bottom: -3px; | |
position: relative; | |
white-space: nowrap; | |
} | |
@-moz-document url-prefix() { | |
[data-tooltip], .tooltip, [data-tooltip] a, .tooltip a { | |
display: inline-block; |
$button-top-left-border: #cccccc | |
$button-bottom-right-border: #bbbbbb | |
$button-top-background: #f9f9f9 | |
$button-bottom-background: #e3e3e3 | |
$button-text-color: #000000 | |
$button-active-top-left-border: #555555 | |
$button-active-bottom-right-border: #444444 | |
$button-active-top-background: #666666 | |
$button-active-bottom-background: #7c7c7c | |
$button-active-text-color: #ffffff |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>UI Kit</title> | |
<style> | |
html, body, div, span, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
abbr, address, cite, code, |
#!/usr/bin/env ruby | |
require "base64" | |
data = STDIN.read | |
%x[open http://hashify.me/#{Base64.encode64(data)}] | |
=begin | |
+-[ COMMAND SETTINGS ]------------+ | |
| Save: nothing | | |
| Input: entire document | |
define a = b, // global.a = b; | |
c = d; // global.c = d; | |
define f(x) { // global.f = function(x) { | |
// return; | |
} // }; global.f.name = "f"; | |
/* only globals can be reassigned, and only with the `define` keyword */ | |
let (a = b, c = d) { // (function() { var a = b, c = d; (function(a, c) { | |
console.log(a, c); // return console.log(a, c); |