This file contains 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
BODY { | |
font-family:Arial, sans-serif; | |
} | |
DEL { | |
position:relative; | |
text-decoration:none; | |
} | |
DEL:after { | |
position:absolute; | |
top:50%; |
This file contains 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
BODY { | |
background:#777; | |
} | |
DIV, IMG { | |
float:left; | |
margin:20px; | |
} | |
DIV { | |
width:200px; | |
height:400px; |
This file contains 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
BODY { | |
text-align:center; | |
font:20px sans-serif; | |
} | |
DIV, SPAN { | |
position:absolute; | |
} |
This file contains 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
HTML, BODY { | |
margin:0; | |
padding:0; | |
height:100%; | |
font:16px sans-serif; | |
} | |
BODY { | |
display:inline-table; | |
width:100%; | |
height:100%; |
This file contains 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
BODY { background: #dda1ee } |
This file contains 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 | |
var fs = require('fs'), params = process.argv.slice(2); | |
fs.readFile(params[0], 'utf8', function(error, data) { | |
var input = data, | |
quality = params[1], | |
current = output = ''; |
This file contains 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
BODY { | |
background:url(data:image/gif;base64,R0lGODdhFAAUAPAAAAF1p////yH/C1hNUCBEYXRhWE1QAz94cAAsAAAAABQAFABAAiWEj6HL6MCijK/WiandJgfueWA2Ylw5oZKqWeIWkrDs0pf9vFYBADs=); | |
} | |
BODY:after { | |
position:absolute; | |
top:50%; | |
left:50%; | |
margin:-100px 0 0 -100px; | |
width:200px; | |
height:200px; |
This file contains 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
BODY { | |
margin:0; | |
padding:0; | |
} | |
DIV { | |
height:50px; | |
background:#888; | |
} |
This file contains 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
function appendPanel(options) { | |
var body = document.body, | |
panel = createElement('.sd-panel'), | |
desc = createElement('.sd-description'), | |
title = createElement('.sd-title'), | |
titlePara = createElement('p'), | |
titleLink = createElement('a'), | |
titleHead = createElement('h1'), | |
legend = createElement('p.sd-legend'), |
This file contains 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
var microjungle=function(e){function f(h,b){for(var e=h.length,g=0;g<e;g++){var a=h[g];if(a)if(typeof a=='string')b.innerHTML+=a;else if(typeof a[0]=='string'){var j=i.createElement(a.shift()),c={}.toString.call(a[0])==='[object Object]'&&a.shift(),d;if(c)for(d in c)c[d]&&j.setAttribute(d,c[d]);b.appendChild(f(a,j))}else a.nodeType===11?b.appendChild(a):f(a,b)}return b}var i=document;return f(e,i.createDocumentFragment())}; | |
function appendPanel(options) { | |
var body = document.body, | |
panel = document.createElement('div'), | |
button = document.createElement('button'), | |
yepList = [], nopeList = [], | |
maybeFeatures = options.features, | |
nopeFeatures = [], yepFeatures = [], |
OlderNewer