Skip to content

Instantly share code, notes, and snippets.

View julzmon's full-sized avatar
💭
Whasuuuup

Julian julzmon

💭
Whasuuuup
View GitHub Profile
@julzmon
julzmon / arrow.svg
Created January 25, 2018 19:24
Arrow svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
// 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
@julzmon
julzmon / flexbox-check.js
Last active January 6, 2016 00:58
Check for flexbox
var doc = document.body || document.documentElement;
var style = doc.style;
if ( style.webkitFlexWrap == '' ||
style.msFlexWrap == '' ||
style.flexWrap == '' ) {
doc.className += " supports-flex";
}
.navbar-btn .badge {
position: absolute;
top: -7px;
right: -5px;
padding: 3px 6px;
opacity: 0.95;
}
mysite.com/admin/utils/serverinfo
@julzmon
julzmon / SassMeister-input.scss
Created June 4, 2015 14:50
Generated by SassMeister.com.
// ----
// libsass (v3.2.4)
// ----
// STRIP UNIT
// It strips the unit of measure and returns it
@function strip-unit($num) {
@return $num / ($num * 0 + 1);
}
@julzmon
julzmon / SassMeister-input-HTML.html
Last active August 29, 2015 14:22
Generated by SassMeister.com.
<h1>Heading one</h1>
<h2>Heading two</h2>
<h3>Heading three</h3>
<h4>Heading four</h4>
@julzmon
julzmon / SassMeister-input.scss
Created June 4, 2015 02:05
Generated by SassMeister.com.
// ----
// 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;
.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)
}