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
/* Default for all/unknown breakpoints */ | |
h4 { font-size: 1.5rem } | |
/* Default for tablets - 768px */ | |
@media (min-width: 48rem) { | |
h4 { font-size: 1.2rem } | |
} | |
/* Default for desktops - 1280px */ | |
@media (min-width: 80rem) { |
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
// Required | |
@import "../node_modules/bootstrap/scss/functions"; | |
// Default variable overrides, or semantic initilization (without flag !default) | |
$theme-colors: ( | |
"primary": lighten(#495055, 60%), | |
"secondary": #ECECEC, | |
); | |
// BUTTONS |
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
#!/usr/bin/env bash | |
DATA_DIR='./assets/json' | |
declare -a REGION_LOOKUP | |
REGION_LOOKUP[1]="Southeast" | |
REGION_LOOKUP[2]="West" | |
REGION_LOOKUP[4]="Southwest" | |
REGION_LOOKUP[5]="Southeast" |
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
{ | |
"type": "Feature", | |
"id": 10, | |
"properties": {}, | |
"geometry": { | |
"type": "MultiPolygon", | |
"coordinates": [ | |
[ | |
[ |
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
geo2topo -h # convert geojson to topojson | |
topo2geo -h # convert topojson to geojson | |
topojson -h # perform operations on topojson | |
topomerge -h # merge topologies, polygons or meshlines | |
toposimplify -h # simplifies arcs by reducing(redundant) adjacent x and y points | |
topoquantize -h # quantize co-ordinates into delta arcs (remove floating points) |
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
// | |
// Package Name: DAT | |
// Package URI: https://www.dat.com | |
// Subpackage: Stylesheet | |
// Author: Exemplifi | |
// Author URI: https://www.dat.com | |
// Description: Elementor fixes | |
// Version: 1.0 | |
// License: Creative Commons 3.0 Attribution | |
// License URI: https://creativecommons.org/licenses/by/3.0/us/ |
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
<?php | |
/** | |
* @package elementor-extend.php | |
* @subpackage datdev | |
* @author Exemplifi | |
* @created 29/10/20 - 6:30 PM | |
* @license Creative Commons 3.0 Attribution | |
* @licenseurl https://creativecommons.org/licenses/by/3.0/us/ | |
* @desc Enter description | |
* @link http://www.dat.com |
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
:root { | |
--body-font-family: Sequel Sans, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; | |
--heading-font-family: Sequel Sans, Times New Roman, Times, Times CY; | |
--heading-font-weight: 500; | |
--scale-factor-xs: 0.5; | |
--scale-factor-sm: 0.75; | |
--scale-factor-md: 0.8; | |
--scale-factor-lg: 1; | |
--scale-factor-xl: 1; | |
--vertical-margin-xs: 0.5rem; |