A Pen by Captain Anonymous on CodePen.
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
<link rel="stylesheet" href="app.css" id="js-app-css"> | |
<script> | |
document.getElementById('js-app-css').setAttribute('href', 'ie10-11.css') | |
</script> |
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
"use strict"; | |
// Listen to fetch events | |
self.addEventListener('fetch', function(event) { | |
// Check if the image is a jpeg | |
if (/\.jpg$|.png$/.test(event.request.url)) { | |
// Inspect the accept header for WebP support | |
var supportsWebp = false; |
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
// requires the chain of command sublime plugin | |
// https://github.com/jisaacks/ChainOfCommand | |
[ | |
{ | |
"keys": ["shift+alt+a"], | |
"command": "chain", | |
"args": { | |
"commands": [ | |
["set_setting", {"setting": "tab_size", "value": 2}], | |
["unexpand_tabs", {"set_translate_tabs" : true}], |
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
app.config(['$compileProvider', function ($compileProvider) { | |
// disable debug info | |
$compileProvider.debugInfoEnabled(false); | |
}]); |
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
// Remember to set transform-style preserve-3d on | |
// the parent element of any that uses this mixin | |
vertical-align | |
position relative | |
top 50% | |
transform translateY(-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
///////////////// | |
// Semantic.gs // for Stylus: http://learnboost.github.com/stylus/ | |
///////////////// | |
// Defaults which you can freely override | |
column-width = 60px | |
gutter-width = 20px | |
columns = 12 | |
// Utility variable — you should never need to modify this |
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
select#day(name="day", placeholder="Day") | |
option(value="1") 1 | |
option(value="2") 2 | |
option(value="3") 3 | |
option(value="4") 4 | |
option(value="5") 5 | |
option(value="6") 6 | |
option(value="7") 7 | |
option(value="8") 8 | |
option(value="9") 9 |
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
select#country(name="country") | |
option(value='AF') Afghanistan | |
option(value='AL') Albania | |
option(value='DZ') Algeria | |
option(value='AD') Andorra | |
option(value='AO') Angola | |
option(value='AG') Antigua and Barbuda | |
option(value='AR') Argentina | |
option(value='AM') Armenia | |
option(value='AU') Australia |
NewerOlder