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
body { | |
font-size: $global-font-size; | |
padding: 0; | |
margin: 0; | |
font-family: $family, Arial, Sans-serif; | |
line-height: 1.5; | |
color: #3b3b3b; | |
background: #fefefe; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; |
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
@mixin responsive-ie { | |
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |
@content; | |
} | |
} |
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
//CLEAR MUST BE DISPLAY BLOCK! | |
.parentflex{ | |
display: -webkit-box; | |
display: -webkit-flex; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-flex-wrap: wrap; | |
-ms-flex-wrap: wrap; | |
flex-wrap: wrap; |
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
for (var i = dataByDot.length; i--;) { | |
var strcolour = dataByDot[i].key.search("-") !== -1 ? dataByDot[i].key.substring(0, dataByDot[i].key.indexOf('-')) : dataByDot[i].key; | |
oldcolor = newcolor; | |
newcolor = strcolour; | |
if (oldcolor === newcolor) { | |
subColors[strcolour] += 1; | |
} else { |
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
@mixin responsive($max, $width) { | |
@media only screen and (unquote( $max + '-width: ' + $width)) { | |
@content; | |
} | |
} | |
@mixin responsive_h($max, $height) { | |
@media only screen and (unquote( $max + '-height: ' + $height)) { | |
@content; | |
} | |
} |
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
git commit --amend |
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
var raidersGroupContainer = new PIXI.DisplayObjectContainer(); | |
var mapContainer = new PIXI.DisplayObjectContainer(); | |
mapContainer.zIndex = 1; | |
raidersGroupContainer.zIndex = 100; | |
container.addChild(mapContainer); | |
container.addChild(raidersGroupContainer); |
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
(function($, window, document) { | |
var $eventArray = new Array(); // save events in array to change og:title metatags id url patrameter | |
var evt_id = evtid !== '' ? evtid : 0; | |
/*-------------------------------*/ | |
//////////////////////////LEAFLET | |
var mymap = L.map('mapid', { | |
scrollWheelZoom: false, |
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
@mixin cell($align) { | |
display: table; | |
width: 100%; | |
&>* { | |
display: table-cell; | |
vertical-align: $align; | |
} | |
} | |
.boxes-type9 { |
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
var strAllSelectors = '.section-blocks .columns_c' + | |
', .text-img-block .wrap-columns'; | |
var $sectionBlock = $(strAllSelectors); | |
//--comprobar si al seccion entra en pantalla | |
$sectionBlock.each(function() { | |
var $this = $(this); | |
var box = $this.offset(); | |
if (box.top - 200 < $(window).height()) { |