Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// remove remote tag | |
$ git push —delete origin 0.3.0 | |
// using a local branch, push up new tag | |
$ git push origin tag0.3.0:refs/tags/0.3.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
var doc = document.body || document.documentElement; | |
var style = doc.style; | |
if ( style.webkitFlexWrap == '' || | |
style.msFlexWrap == '' || | |
style.flexWrap == '' ) { | |
doc.className += " supports-flex"; | |
} |
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
.navbar-btn .badge { | |
position: absolute; | |
top: -7px; | |
right: -5px; | |
padding: 3px 6px; | |
opacity: 0.95; | |
} |
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
mysite.com/admin/utils/serverinfo |
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
// ---- | |
// libsass (v3.2.4) | |
// ---- | |
// STRIP UNIT | |
// It strips the unit of measure and returns it | |
@function strip-unit($num) { | |
@return $num / ($num * 0 + 1); | |
} |
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
<h1>Heading one</h1> | |
<h2>Heading two</h2> | |
<h3>Heading three</h3> | |
<h4>Heading four</h4> |
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
// ---- | |
// Sass (v3.3.10) | |
// Compass (v1.0.0.alpha.20) | |
// Modular Scale (v2.0.5) | |
// ---- | |
@import "modular-scale"; | |
$ms-base: 1em 3.75em; | |
$ms-ratio: $fourth; |
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
.col-lg-2-4{ | |
@include make-lg-column(2.4) | |
} | |
.col-md-2-4{ | |
@include make-md-column(2.4) | |
} | |
.col-sm-2-4{ | |
@include make-sm-column(2.4) | |
} |
NewerOlder