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
background: #36c; | |
background: | |
linear-gradient(-25deg, transparent 75%, rgba(255,255,255,.5) 75%) 0 0, | |
linear-gradient(-155deg, transparent 75%, rgba(255,255,255,.5) 75%) 0 0, | |
linear-gradient(-25deg, transparent 75%, rgba(255,255,255,.5) 75%) 7px -15px, | |
linear-gradient(-155deg, transparent 75%, rgba(255,255,255,.5) 75%) 7px -15px, | |
#36c; | |
background-size: 15px 30px; | |
min-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
/* | |
http://snook.ca/archives/html_and_css/handling-overflow | |
http://www.456bereastreet.com/archive/201206/using_media_queries_to_hide_css3_from_older_browsers/ | |
Tested in: | |
// Uses fade | |
- Safari 5.1.7 | |
- Chrome 19 | |
- Opera 12 |
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 { | |
min-height: 100%; | |
} | |
#parent { | |
position: fixed; | |
left: 100px; | |
bottom: 50px; | |
width: 300px; | |
height: 350px; | |
-webkit-perspective: 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
/** | |
* @license | |
* Lo-Dash 1.3.1 (Custom Build) <http://lodash.com/> | |
* Build: `lodash -d underscore mobile` | |
* Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/> | |
* Based on Underscore.js 1.4.4 <http://underscorejs.org/> | |
* Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud Inc. | |
* Available under MIT license <http://lodash.com/license> | |
*/ | |
;(function(window) { |
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
test.os.lower() = linux test.database_os.lower() = linux | |
self.results['frameworks'] != None: True | |
test.name: hapi-mysql | |
self.results['completed']: {} | |
===================================================== | |
Beginning hapi-mysql | |
----------------------------------------------------- | |
----------------------------------------------------- |
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 path = require('path'), | |
gutil = require('gulp-util'), | |
nodeZip = require('node-native-zip'), | |
through = require('through2'); | |
var gulpZipCustom = function(filename) { | |
if (!filename) { | |
throw new gutil.PluginError('gulp-zip-custom', chalk.blue('filename') + ' required'); | |
} |
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
.parent { | |
max-width: 300px; | |
padding: 2em; | |
background: #cfc; | |
perspective: 1000px; | |
} | |
.shape { | |
position: relative; | |
height: 0; | |
padding-bottom: 62.96%; |
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
.parent { | |
max-width: 300px; | |
padding: 2em; | |
background: #cfc; | |
perspective: 1000px; | |
} | |
.shape { | |
position: relative; | |
height: 0; | |
padding-bottom: 62.96%; |
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
.test { | |
position: relative; | |
width: 500px; | |
height: 5em; | |
background: #fcc; | |
border: solid 1px red; | |
} | |
.test .parent { | |
position: absolute; | |
left: 0; |
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> | |
<div class="raw">Test `code` in _some_ awesome **markdown**</div> | |
<div class="md-local">Test `code` in _some_ awesome **markdown** | |
</div> | |
<div class="md-inline"><p>Test <code>code</code> in <em>some</em> awesome <strong>markdown</strong></p> | |
</div> | |
</body> | |
</html> |
OlderNewer