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
/* SVG alternative to fittext.js */ | |
div { | |
width: 300px; | |
height: 150px; | |
float: left; | |
margin-right : 10px; | |
background: #f06; | |
font: bold 150% sans-serif; | |
text-shadow: 0 1px 2px rgba(0,0,0,.5); |
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
.animated-tweaker (@duration: 1.1s, @delay: 0.5s, @repeats: 1) { | |
-webkit-animation-duration: @duration; | |
-moz-animation-duration: @duration; | |
-ms-animation-duration: @duration; | |
-o-animation-duration: @duration; | |
animation-duration: @duration; | |
-webkit-animation-delay: @delay; | |
-moz-animation-delay: @delay; | |
-ms-animation-delay: @delay; |
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
$(document).ready(function() { | |
// disable offline caching for Firefox to avoid alarming the user | |
if(navigator.userAgent.toLowerCase().indexOf('firefox') > -1) { | |
$("html").removeAttr("manifest"); | |
} | |
}); |
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 bash | |
src=$PWD | |
h5bp_remote=git://github.com/h5bp/html5-boilerplate.git | |
bootstrap_remote=git://github.com/twitter/bootstrap.git | |
h5bp_branch=master | |
bootstrap_branch=master |
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
javascript: var _url = location.href.replace("http:\/\/",""); _url = "http://markdress.org/" + _url;location = _url |