npm list -g --depth=0
👁️🗨️
This file contains hidden or 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
import 'whatwg-fetch' | |
import Auth from './Auth'; | |
import Url from 'url-parse'; | |
const API_URL = process.env.API_URL | |
const http = { | |
get: get, | |
getAuthed: getAuthed, |
This file contains hidden or 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
// jQuery import | |
global.jQuery = require('jquery'); | |
var $ = global.jQuery; | |
window.$ = $; | |
// Bootstrap 4 depends on Popper.js | |
// Popper.js import | |
//import Popper from 'popper.js'; | |
//window.Popper = Popper; |
This file contains hidden or 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
.infinite-zoom{ | |
-webkit-animation: zoomSlow 60s infinite linear; | |
-moz-animation: zoomSlow 60s infinite linear; | |
animation: zoomSlow 60s infinite linear; | |
} | |
@-webkit-keyframes zoomSlow { | |
0% { | |
-moz-transform: scale(1); | |
-webkit-transform: scale(1); |
This file contains hidden or 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://martinwolf.org/2013/01/29/pure-css-multiline-text-with-ellipsis/ */ | |
$font-size: 26px; | |
$line-height: 1.4; | |
$lines-to-show: 3; | |
h2 { | |
display: block; /* Fallback for non-webkit */ | |
display: -webkit-box; | |
max-width: 400px; |
This file contains hidden or 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
// Adds the vendor prefixes for calc. | |
// | |
// Usage: | |
// width: calc('30% - 10px'); | |
// If variables are needed they need to be specified this way. | |
// width: calc('40% \- %s' % (10px)); | |
calc() { | |
// vendors to be used by this function | |
calc-vendors = webkit moz; |
This file contains hidden or 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
Lib : http://www.idangero.us/sliders/swiper/ | |
ver:2.4.3 | |
<script> | |
// swiper Slider - Thumb Carousel - author: [email protected] ========================================================== | |
$(document).ready(function(){ | |
if($(".swiper-slider-wrapper").length > 0){ |
This file contains hidden or 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 MIT | |
// Author: Jorge Avila <[email protected]> | |
// Example: | |
// body | |
// -rems('margin', 10 20 30 40) | |
basefont = 16px | |
-rems(property, sizes) | |
rems = new array() | |
pixs = new array() |
This file contains hidden or 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
/* | |
No jQuery necessary. | |
Thanks to Dan's StackOverflow answer for this: | |
http://stackoverflow.com/questions/123999/how-to-tell-if-a-dom-element-is-visible-in-the-current-viewport | |
*/ | |
function isElementInViewport(el) { | |
var rect = el.getBoundingClientRect(); | |
return ( | |
rect.top >= 0 && |
This file contains hidden or 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
@main-font-size: 16px; | |
.x-rem (@property, @value) { | |
// This is a workaround, inspired by https://github.com/borodean/less-properties | |
@px-fallback: @value * @main-font-size; | |
-: ~`(function () { return ';@{property}: @{px-fallback}'; }())`; | |
-: ~`(function () { return ';@{property}: @{value}rem'; }())`; | |
} | |
.x-rem (@property, @v1, @v2) { | |
@px-v1: @v1 * @main-font-size; |