Skip to content

Instantly share code, notes, and snippets.

@marloncabrera
Created February 11, 2016 10:05
Show Gist options
  • Save marloncabrera/c33908606e76d8fa94da to your computer and use it in GitHub Desktop.
Save marloncabrera/c33908606e76d8fa94da to your computer and use it in GitHub Desktop.
var geomicons =
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/ // Flag the module as loaded
/******/ module.loaded = true;
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports, __webpack_require__) {
var paths = __webpack_require__(31);
var toString = __webpack_require__(2);
var inject = __webpack_require__(3);
module.exports = {
paths: paths,
toString: toString,
inject: inject
};
/***/ },
/* 1 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M3 8 A3 3 0 0 0 9 8 A3 3 0 0 0 3 8 M12 6 L28 6 L28 10 L12 10z M3 16 A3 3 0 0 0 9 16 A3 3 0 0 0 3 16 M12 14 L28 14 L28 18 L12 18z M3 24 A3 3 0 0 0 9 24 A3 3 0 0 0 3 24 M12 22 L28 22 L28 26 L12 26z'
].join(' ');
/***/ },
/* 2 */
/***/ function(module, exports, __webpack_require__) {
var paths = __webpack_require__(31);
var camelCase = __webpack_require__(60);
var error = __webpack_require__(61);
module.exports = function(key) {
var string = '';
var d = paths[camelCase(key)] || false;
if (!d) {
error(key);
return false;
}
string = [
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" style="fill:currentcolor">',
'<title>' + key + ' icon</title>',
'<path d="' + d + '"/>',
'</svg>'
].join(' ');
return string;
};
/***/ },
/* 3 */
/***/ function(module, exports, __webpack_require__) {
var camelCase = __webpack_require__(60);
var paths = __webpack_require__(31);
function inject(el, key) {
var pathdata = paths[key];
var svg;
var path = document.createElementNS('http://www.w3.org/2000/svg', 'path');
var title = document.createElementNS('http://www.w3.org/2000/svg', 'title');
if (el.tagName == 'svg') {
svg = el.cloneNode(true);
} else {
svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
for (var i = 0; i < el.attributes.length; i++) {
svg.setAttribute(el.attributes[i].name, el.attributes[i].value);
}
}
svg.setAttribute('viewBox', '0 0 32 32');
svg.setAttribute('style', 'fill:currentcolor');
title.innerHTML = key + ' icon';
path.setAttribute('d', pathdata);
svg.appendChild(title);
svg.appendChild(path);
el.parentNode.replaceChild(svg, el);
};
module.exports = function(elements) {
if (!elements.length) elements = [elements];
if (typeof document !== 'undefined') {
for (var i = 0; i < elements.length; i++) {
var key = elements[i].getAttribute('data-icon');
key = camelCase(key);
if (!paths[key]) {
error(key);
return false;
}
inject(elements[i], key);
}
} else {
console.error('geomicons.inject() only works in a browser context');
return false;
}
};
/***/ },
/* 4 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M6 2 L26 2 L26 30',
'L16 24 L6 30 Z',
].join(' ');
/***/ },
/* 5 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M2 4 L6 4 L6 2 A2 2 0 0 1 10 2 L10 4 L22 4 L22 2 A2 2 0 0 1 26 2 L26 4 L30 4 L30 10 L2 10 M2 12 L30 12 L30 30 L2 30',
].join(' ');
/***/ },
/* 6 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M0 6 L8 6 L10 2 L22 2 L24 6 L32 6 L32 28 L0 28 z M9 17 A7 7 0 0 0 23 17 A7 7 0 0 0 9 17'
].join(' ');
/***/ },
/* 7 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M32 16 A16 12 0 0 0 0 16 A16 12 0 0 0 16 28 L18 28 C20 30 24 32 28 32 C27 31 26 28 26 25.375 L26 25.375 A16 12 0 0 0 32 16'
].join(' ');
/***/ },
/* 8 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M1 14 L5 10 L13 18 L27 4 L31 8 L13 26 z'
].join(' ');
/***/ },
/* 9 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M1 12 L16 26 L31 12 L27 8 L16 18 L5 8 z'
].join(' ');
/***/ },
/* 10 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M20 1 L24 5 L14 16 L24 27 L20 31 L6 16 z'
].join(' ');
/***/ },
/* 11 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M12 1 L26 16 L12 31 L8 27 L18 16 L8 5 z'
].join(' ');
/***/ },
/* 12 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M1 20 L16 6 L31 20 L27 24 L16 14 L5 24 z'
].join(' ');
/***/ },
/* 13 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M16 0 A16 16 0 0 0 0 16 A16 16 0 0 0 16 32 A16 16 0 0 0 32 16 A16 16 0 0 0 16 0 M16 4 A12 12 0 0 1 28 16 A12 12 0 0 1 16 28 A12 12 0 0 1 4 16 A12 12 0 0 1 16 4 M14 6 L14 17.25 L22 22 L24.25 18.5 L18 14.75 L18 6z'
].join(' ');
/***/ },
/* 14 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M4 8 L8 4 L16 12 L24 4 L28 8 L20 16 L28 24 L24 28 L16 20 L8 28 L4 24 L12 16 z'
].join(' ');
/***/ },
/* 15 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M7 14 A7 7 0 0 0 0 21 A7 7 0 0 0 7 28 H27 A5 5 0 0 0 32 23 A5 5 0 0 0 27 18 A10 10 0 0 0 28 14 A10 10 0 0 0 18 4 A10 10 0 0 0 8 14 A7 7 0 0 0 7 14'
].join(' ');
/***/ },
/* 16 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M14 0 H18 L19 6 L20.707 6.707 L26 3.293 L28.707 6 L25.293 11.293 L26 13 L32 14 V18 L26 19 L25.293 20.707 L28.707 26 L26 28.707 L20.707 25.293 L19 26 L18 32 L14 32 L13 26 L11.293 25.293 L6 28.707 L3.293 26 L6.707 20.707 L6 19 L0 18 L0 14 L6 13 L6.707 11.293 L3.293 6 L6 3.293 L11.293 6.707 L13 6 L14 0 z M16 10 A6 6 0 0 0 16 22 A6 6 0 0 0 16 10'
].join(' ');
/***/ },
/* 17 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M4 4 L16 4 L16 8 L8 8 L8 24 L24 24 L24 16 L28 16 L28 28 L4 28 z M26 2 L30 6 L16 20 L12 20 L12 16 z'
].join(' ');
/***/ },
/* 18 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M16 0 A16 16 0 0 0 0 16 A16 16 0 0 0 16 32 A16 16 0 0 0 32 16 A16 16 0 0 0 16 0 M5 11.5 A12 12 0 0 1 11 5 A46 46 0 0 1 13.5 9.25 A46 46 0 0 1 5 11.5 M15 4 A12 12 0 0 1 21.5 5.25 A46 46 0 0 1 17 7.75 A50 50 0 0 0 15 4 M4 16 A50 50 0 0 0 15 13 A46 46 0 0 1 16 15.5 A26 26 0 0 0 6 22.5 A12 12 0 0 1 4 16 M18.5 11.5 A50 50 0 0 0 25 8 A12 12 0 0 1 28 13.75 A26 26 0 0 0 19.75 14.5 A50 50 0 0 0 18.5 11.5 M17 19.5 A46 46 0 0 1 18 28 A12 12 0 0 1 8.75 25.5 A22 22 0 0 1 17 19.5 M20.75 18.25 A22 22 0 0 1 28 17.75 A12 12 0 0 1 22 26.5 A50 50 0 0 0 20.75 18.25'
].join(' ');
/***/ },
/* 19 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M16 4 L28 4 L28 16 L24 12 L20 16 L16 12 L20 8z M4 16 L8 20 L12 16 L16 20 L12 24 L16 28 L4 28z'
].join(' ');
/***/ },
/* 20 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M4 4 L12 4 L12 8 L8 8 L8 24 L24 24 L24 20 L28 20 L28 28 L4 28 z M16 4 L28 4 L28 16 L24 12 L16 20 L12 16 L20 8z'
].join(' ');
/***/ },
/* 21 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M8 12 L13 12 L13 8 C13 2 17 1 24 2 L24 7 C20 7 19 7 19 10 L19 12 L24 12 L23 18 L19 18 L19 30 L13 30 L13 18 L8 18 z'
].join(' ');
/***/ },
/* 22 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M4 2 L4 30 L28 30 L28 10 L20 2 z'
].join(' ');
/***/ },
/* 23 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M0 4 L0 28 L32 28 L32 8 L16 8 L12 4 z'
].join(' ');
/***/ },
/* 24 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M2 18 L30 2 L14 30 L14 18z'
].join(' ');
/***/ },
/* 25 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M0 18 C0 12 3 10 3 9 C2.5 7 2.5 4 3 3 C6 3 9 5 10 6 C12 5 14 5 16 5 C18 5 20 5 22 6 C23 5 26 3 29 3 C29.5 4 29.5 7 29 9 C29 10 32 12 32 18 C32 25 30 30 16 30 C2 30 0 25 0 18 M3 20 C3 24 4 28 16 28 C28 28 29 24 29 20 C29 16 28 14 16 14 C4 14 3 16 3 20 M8 21 A1.5 2.5 0 0 0 13 21 A1.5 2.5 0 0 0 8 21 M24 21 A1.5 2.5 0 0 0 19 21 A1.5 2.5 0 0 0 24 21 z'
].join(' ');
/***/ },
/* 26 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M2 2 L10 2 L10 10 L2 10z M12 2 L20 2 L20 10 L12 10z M22 2 L30 2 L30 10 L22 10z M2 12 L10 12 L10 20 L2 20z M12 12 L20 12 L20 20 L12 20z M22 12 L30 12 L30 20 L22 20z M2 22 L10 22 L10 30 L2 30z M12 22 L20 22 L20 30 L12 30z M22 22 L30 22 L30 30 L22 30z'
].join(' ');
/***/ },
/* 27 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M0 10 C0 6, 3 2, 8 2 C12 2, 15 5, 16 6 C17 5, 20 2, 24 2 C30 2, 32 6, 32 10 C32 18, 18 29, 16 30 C14 29, 0 18, 0 10'
].join(' ');
/***/ },
/* 28 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M16 0 L32 16 L28 16 L28 30 L20 30 L20 20 L12 20 L12 30 L4 30 L4 16 L0 16 Z'
].join(' ');
/***/ },
/* 29 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M16 0 A16 16 0 0 1 16 32 A16 16 0 0 1 16 0 M19 15 L13 15 L13 26 L19 26 z M16 6 A3 3 0 0 0 16 12 A3 3 0 0 0 16 6'
].join(' ');
/***/ },
/* 30 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M0 16 A8 8 0 0 1 8 8 L14 8 A8 8 0 0 1 22 16 L18 16 A4 4 0 0 0 14 12 L8 12 A4 4 0 0 0 4 16 A4 4 0 0 0 8 20 L10 24 L8 24 A8 8 0 0 1 0 16z M22 8 L24 8 A8 8 0 0 1 32 16 A8 8 0 0 1 24 24 L18 24 A8 8 0 0 1 10 16 L14 16 A4 4 0 0 0 18 20 L24 20 A4 4 0 0 0 28 16 A4 4 0 0 0 24 12z'
].join(' ');
/***/ },
/* 31 */
/***/ function(module, exports, __webpack_require__) {
module.exports = {
bookmark: __webpack_require__(4),
calendar: __webpack_require__(5),
calendar: __webpack_require__(5),
camera: __webpack_require__(6),
chat: __webpack_require__(7),
check: __webpack_require__(8),
chevronDown: __webpack_require__(9),
chevronLeft: __webpack_require__(10),
chevronRight: __webpack_require__(11),
chevronUp: __webpack_require__(12),
clock: __webpack_require__(13),
close: __webpack_require__(14),
cloud: __webpack_require__(15),
cog: __webpack_require__(16),
compose: __webpack_require__(17),
dribbble: __webpack_require__(18),
expand: __webpack_require__(19),
external: __webpack_require__(20),
facebook: __webpack_require__(21),
file: __webpack_require__(22),
folder: __webpack_require__(23),
geolocation: __webpack_require__(24),
github: __webpack_require__(25),
grid: __webpack_require__(26),
heart: __webpack_require__(27),
home: __webpack_require__(28),
info: __webpack_require__(29),
link: __webpack_require__(30),
list: __webpack_require__(1),
lock: __webpack_require__(32),
mail: __webpack_require__(33),
musicNote: __webpack_require__(34),
next: __webpack_require__(35),
no: __webpack_require__(36),
pause: __webpack_require__(37),
picture: __webpack_require__(38),
pin: __webpack_require__(39),
play: __webpack_require__(40),
previous: __webpack_require__(41),
refresh: __webpack_require__(42),
repost: __webpack_require__(43),
search: __webpack_require__(44),
shoppingCart: __webpack_require__(45),
skull: __webpack_require__(46),
speakerVolume: __webpack_require__(47),
speaker: __webpack_require__(48),
star: __webpack_require__(49),
tag: __webpack_require__(50),
trash: __webpack_require__(51),
triangleDown: __webpack_require__(52),
triangleLeft: __webpack_require__(53),
triangleRight: __webpack_require__(54),
triangleUp: __webpack_require__(55),
twitter: __webpack_require__(56),
user: __webpack_require__(57),
video: __webpack_require__(58),
warning: __webpack_require__(59),
};
/***/ },
/* 32 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M22 16 L22 12 A6 6 0 0 0 10 12 L10 16 z M4 16 L6 16 L6 12 A10 10 0 0 1 26 12 L26 16 L28 16 L28 30 L4 30 z'
].join(' ');
/***/ },
/* 33 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M0 6 L16 16 L32 6 z M0 9 L0 26 L32 26 L32 9 L16 19 z'
].join(' ');
/***/ },
/* 34 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M0 24 A6 6 0 0 0 12 24 V8 H26 V18 A6 6 0 0 0 18 24 A6 6 0 0 0 30 24 V2 H8 V18 A6 6 0 0 0 0 24'
].join(' ');
/***/ },
/* 35 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M4 4 L24 14 V4 H28 V28 H24 V18 L4 28 z'
].join(' ');
/***/ },
/* 36 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M16 0 A16 16 0 0 0 0 16 A16 16 0 0 0 16 32 A16 16 0 0 0 32 16 A16 16 0 0 0 16 0 M16 6 A10 10 0 0 1 20.675 7 L7 20.675 A10 10 0 0 1 6 16 A10 10 0 0 1 16 6 M26 16 A10 10 0 0 1 16 26 A10 10 0 0 1 11.325 25 L25 11.325 A10 10 0 0 1 26 16'
].join(' ');
/***/ },
/* 37 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M4 4 H12 V28 H4 z M20 4 H28 V28 H20 z'
].join(' ');
/***/ },
/* 38 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M0 4 L0 28 L32 28 L32 4 z M4 24 L10 10 L15 18 L18 14 L24 24z M25 7 A4 4 0 0 1 25 15 A4 4 0 0 1 25 7'
].join(' ');
/***/ },
/* 39 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M4 12 A12 12 0 0 1 28 12 C28 20, 16 32, 16 32 C16 32, 4 20 4 12 M11 12 A5 5 0 0 0 21 12 A5 5 0 0 0 11 12 Z'
].join(' ');
/***/ },
/* 40 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M4 4 L28 16 L4 28 z'
].join(' ');
/***/ },
/* 41 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M4 4 H8 V14 L28 4 V28 L8 18 V28 H4 z'
].join(' ');
/***/ },
/* 42 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M16 2 A14 14 0 0 0 2 16 A14 14 0 0 0 16 30 A14 14 0 0 0 26 26 L 23.25 23 A10 10 0 0 1 16 26 A10 10 0 0 1 6 16 A10 10 0 0 1 16 6 A10 10 0 0 1 23.25 9 L19 13 L30 13 L30 2 L26 6 A14 14 0 0 0 16 2'
].join(' ');
/***/ },
/* 43 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M7 7 L14 14 L9 14 L9 20 L16 20 L16 24 L5 24 L5 14 L0 14 z M16 8 L27 8 L27 18 L32 18 L25 25 L18 18 L23 18 L23 12 L16 12z'
].join(' ');
/***/ },
/* 44 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M12 0 A12 12 0 0 0 0 12 A12 12 0 0 0 12 24 A12 12 0 0 0 18.5 22.25 L28 32 L32 28 L22.25 18.5 A12 12 0 0 0 24 12 A12 12 0 0 0 12 0 M12 4 A8 8 0 0 1 12 20 A8 8 0 0 1 12 4'
].join(' ');
/***/ },
/* 45 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M0 4 L5 4 L6 8 L30 8 L28 22 L6 22 L3.5 6 L0 6z M10 24 A3 3 0 0 0 10 30 A3 3 0 0 0 10 24 M24 24 A3 3 0 0 0 24 30 A3 3 0 0 0 24 24'
].join(' ');
/***/ },
/* 46 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M16 0 C6 0 2 4 2 14 L2 22 L6 24 L6 30 L26 30 L26 24 L30 22 L30 14 C30 4 26 0 16 0 M9 12 A4.5 4.5 0 0 1 9 21 A4.5 4.5 0 0 1 9 12 M23 12 A4.5 4.5 0 0 1 23 21 A4.5 4.5 0 0 1 23 12'
].join(' ');
/***/ },
/* 47 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M2 12 L8 12 L16 6 L16 26 L8 20 L2 20 z M32 16 A16 16 0 0 1 27.25 27.375 L25.25 25.25 A13 13 0 0 0 29 16 A13 13 0 0 0 25.25 6.75 L27.25 4.625 A16 16 0 0 1 32 16 M25 16 A9 9 0 0 1 22.375 22.375 L20.25 20.25 A6 6 0 0 0 22 16 A6 6 0 0 0 20.25 11.75 L22.375 9.625 A9 9 0 0 1 25 16'
].join(' ');
/***/ },
/* 48 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M2 12 L8 12 L16 6 L16 26 L8 20 L2 20 z'
].join(' ');
/***/ },
/* 49 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M16 0 L21 11 L32 12 L23 19 L26 31 L16 25 L6 31 L9 19 L0 12 L11 11'
].join(' ');
/***/ },
/* 50 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M0 18 L16 2 L29 3 L30 16 L14 32 z M20 9 A3 3 0 0 0 26 9 A3 3 0 0 0 20 9'
].join(' ');
/***/ },
/* 51 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M4 4 L10 4 L12 2 L20 2 L22 4 L28 4 L29 8 L3 8 z M5 10 L27 10 L26 30 L6 30 z'
].join(' ');
/***/ },
/* 52 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M4 8 H28 L16 26 z'
].join(' ');
/***/ },
/* 53 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M24 4 V28 L6 16 z'
].join(' ');
/***/ },
/* 54 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M8 4 V28 L26 16 z'
].join(' ');
/***/ },
/* 55 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M4 24 H28 L16 6 z'
].join(' ');
/***/ },
/* 56 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M2 4 C6 8 10 12 15 11 A6 6 0 0 1 22 4 A6 6 0 0 1 26 6 A8 8 0 0 0 31 4 A8 8 0 0 1 28 8 A8 8 0 0 0 32 7 A8 8 0 0 1 28 11 A18 18 0 0 1 10 30 A18 18 0 0 1 0 27 A12 12 0 0 0 8 24 A8 8 0 0 1 3 20 A8 8 0 0 0 6 19.5 A8 8 0 0 1 0 12 A8 8 0 0 0 3 13 A8 8 0 0 1 2 4'
].join(' ');
/***/ },
/* 57 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M10 8 A6 6 0 0 1 22 8 L22 12 A6 6 0 0 1 10 12 z M2 26 C3 23 10 20 14 20 L18 20 C22 20 29 23 30 26 L30 28 L2 28 z'
].join(' ');
/***/ },
/* 58 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M0 6 L0 26 L24 26 L24 19 L32 23 L32 9 L24 13 L24 6 z'
].join(' ');
/***/ },
/* 59 */
/***/ function(module, exports, __webpack_require__) {
module.exports = [
'M15 0 H17 L32 29 L31 30 L1 30 L0 29 z M19 8 L13 8 L14 20 L18 20 z M16 22 A3 3 0 0 0 16 28 A3 3 0 0 0 16 22'
].join(' ');
/***/ },
/* 60 */
/***/ function(module, exports, __webpack_require__) {
module.exports = function(string) {
return string.replace(/-([a-z])/g, function (g) { return g[1].toUpperCase(); });
};
/***/ },
/* 61 */
/***/ function(module, exports, __webpack_require__) {
var paths = __webpack_require__(31);
module.exports = function(key) {
var iconList = Object.keys(paths);
iconList = iconList.join();
console.error(
'No icon found for ' + key + '.\n' +
'Geomicons Open includes the following icons: \n' + iconList
);
};
/***/ }
/******/ ]);
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Rastreadores de Mosquito</title>
<meta name="author" content="Marlon Cabrera Oliveira">
<meta name="description" content="Ratreadores de Mosquito>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto:400,700|Merriweather:400,700|PT Sans:400,700">
<style>body{margin:0}img{max-width:100%}svg{max-height:100%}input,select,textarea,fieldset{font-family:inherit;font-size:16px;font-size:1rem;box-sizing:border-box;margin-top:0;margin-bottom:0}input[type=text],input[type=datetime],input[type=datetime-local],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=time],input[type=url],input[type=week]{height:36px;height:2.25rem;padding:8px;padding:.5rem;vertical-align:middle;-webkit-appearance:none}select{line-height:1.75;padding:8px;padding:.5rem}select:not([multiple]){height:36px;height:2.25rem;vertical-align:middle}textarea{line-height:1.75;padding:8px;padding:.5rem}.fieldset-reset{padding:0;margin-left:0;margin-right:0;border:0}.fieldset-reset legend{padding:0}button,.button{font-family:inherit;font-size:14px;font-size:.875rem;font-weight:500;text-decoration:none;cursor:pointer;display:inline-block;line-height:18px;line-height:1.125rem;padding:8px 16px;padding:.5rem 1rem;margin:0;height:auto;border:1px solid transparent;vertical-align:middle;-webkit-appearance:none}button,button:after,button:before,.button,.button:after,.button:before{box-sizing:border-box}::-moz-focus-inner{border:0;padding:0}.button:hover{text-decoration:none}table{border-collapse:separate;border-spacing:0;max-width:100%;width:100%}th{text-align:left;font-weight:500}th,td{padding:4px 16px;padding:.25rem 1rem;line-height:inherit}th{vertical-align:bottom}td{vertical-align:top}body{font-family:Helvetica Neue,Helvetica,sans-serif;line-height:1.5;font-size:100%}h1,h2,h3,h4,h5,h6{font-family:Helvetica Neue,Helvetica,sans-serif;font-weight:500;line-height:1.25;margin-top:1em;margin-bottom:.5em}p{font-size:16px;font-size:1rem;margin-top:0;margin-bottom:16px;margin-bottom:1rem}dl,ol,ul{font-size:16px;font-size:1rem;margin-top:0;margin-bottom:16px;margin-bottom:1rem}pre,code,samp{font-family:Source Code Pro,Consolas,monospace;font-size:inherit}pre{margin-top:0;margin-bottom:16px;margin-bottom:1rem;overflow-x:scroll}hr{margin-top:32px;margin-top:2rem;margin-bottom:32px;margin-bottom:2rem}blockquote{margin:32px 0;margin:2rem 0;padding:0 16px;padding:0 1rem}blockquote,blockquote p{font-size:20px;font-size:1.25rem;font-style:italic}h1,.h1{font-size:32px;font-size:2rem}h2,.h2{font-size:24px;font-size:1.5rem}h3,.h3{font-size:20px;font-size:1.25rem}h4,.h4{font-size:16px;font-size:1rem}h5,.h5{font-size:14px;font-size:.875rem}h6,.h6{font-size:12px;font-size:.75rem}.list-reset{list-style:none;padding-left:0}.inline{display:inline}.block{display:block}.inline-block{display:inline-block}.table{display:table}.table-cell{display:table-cell}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-auto{overflow:auto}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.left{float:left}.right{float:right}.fit{max-width:100%}.half-width{width:50%}.full-width{width:100%}.bold{font-weight:700;font-weight:500}.regular{font-weight:400}.italic{font-style:italic}.caps{text-transform:uppercase;letter-spacing:.2em}.left-align{text-align:left}.center{text-align:center}.right-align{text-align:right}.justify{text-align:justify}.nowrap{white-space:nowrap}.break-word{word-wrap:break-word}.truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.m0{margin:0}.mt0{margin-top:0}.mr0{margin-right:0}.mb0{margin-bottom:0}.ml0{margin-left:0}.m1{margin:8px;margin:.5rem}.mt1{margin-top:8px;margin-top:.5rem}.mr1{margin-right:8px;margin-right:.5rem}.mb1{margin-bottom:8px;margin-bottom:.5rem}.ml1{margin-left:8px;margin-left:.5rem}.m2{margin:16px;margin:1rem}.mt2{margin-top:16px;margin-top:1rem}.mr2{margin-right:16px;margin-right:1rem}.mb2{margin-bottom:16px;margin-bottom:1rem}.ml2{margin-left:16px;margin-left:1rem}.m3{margin:32px;margin:2rem}.mt3{margin-top:32px;margin-top:2rem}.mr3{margin-right:32px;margin-right:2rem}.mb3{margin-bottom:32px;margin-bottom:2rem}.ml3{margin-left:32px;margin-left:2rem}.m4{margin:64px;margin:4rem}.mt4{margin-top:64px;margin-top:4rem}.mr4{margin-right:64px;margin-right:4rem}.mb4{margin-bottom:64px;margin-bottom:4rem}.ml4{margin-left:64px;margin-left:4rem}.mxn1{margin-left:-8px;margin-left:-.5rem;margin-right:-8px;margin-right:-.5rem}.mxn2{margin-left:-16px;margin-left:-1rem;margin-right:-16px;margin-right:-1rem}.mxn3{margin-left:-32px;margin-left:-2rem;margin-right:-32px;margin-right:-2rem}.mxn4{margin-left:-64px;margin-left:-4rem;margin-right:-64px;margin-right:-4rem}.mx-auto{margin-left:auto;margin-right:auto}.p1{padding:8px;padding:.5rem}.py1{padding-top:8px;padding-top:.5rem;padding-bottom:8px;padding-bottom:.5rem}.px1{padding-left:8px;padding-left:.5rem;padding-right:8px;padding-right:.5rem}.p2{padding:16px;padding:1rem}.py2{padding-top:16px;padding-top:1rem;padding-bottom:16px;padding-bottom:1rem}.px2{padding-left:16px;padding-left:1rem;padding-right:16px;padding-right:1rem}.p3{padding:32px;padding:2rem}.py3{padding-top:32px;padding-top:2rem;padding-bottom:32px;padding-bottom:2rem}.px3{padding-left:32px;padding-left:2rem;padding-right:32px;padding-right:2rem}.p4{padding:64px;padding:4rem}.py4{padding-top:64px;padding-top:4rem;padding-bottom:64px;padding-bottom:4rem}.px4{padding-left:64px;padding-left:4rem;padding-right:64px;padding-right:4rem}.sm-show,.md-show,.lg-show{display:none!important}@media(min-width:40em){.sm-show{display:block!important}}@media(min-width:52em){.md-show{display:block!important}}@media(min-width:64em){.lg-show{display:block!important}}@media(min-width:40em){.sm-hide{display:none!important}}@media(min-width:52em){.md-hide{display:none!important}}@media(min-width:64em){.lg-hide{display:none!important}}.display-none{display:none!important}.hide{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.z1{z-index:1}.z2{z-index:2}.z3{z-index:3}.z4{z-index:4}.button-small{padding:4px 8px;padding:.25rem .5rem}.button-big{padding:16px 20px;padding:1rem 1.25rem}.button-narrow{padding-left:8px;padding-left:.5rem;padding-right:8px;padding-right:.5rem}.container{max-width:64em;margin-left:auto;margin-right:auto}.col{float:left;box-sizing:border-box}.col-right{float:right;box-sizing:border-box}.col-1{width:8.33333%}.col-2{width:16.66667%}.col-3{width:25%}.col-4{width:33.33333%}.col-5{width:41.66667%}.col-6{width:50%}.col-7{width:58.33333%}.col-8{width:66.66667%}.col-9{width:75%}.col-10{width:83.33333%}.col-11{width:91.66667%}.col-12{width:100%}@media(min-width:40em){.sm-col{float:left;box-sizing:border-box}.sm-col-right{float:right;box-sizing:border-box}.sm-col-1{width:8.33333%}.sm-col-2{width:16.66667%}.sm-col-3{width:25%}.sm-col-4{width:33.33333%}.sm-col-5{width:41.66667%}.sm-col-6{width:50%}.sm-col-7{width:58.33333%}.sm-col-8{width:66.66667%}.sm-col-9{width:75%}.sm-col-10{width:83.33333%}.sm-col-11{width:91.66667%}.sm-col-12{width:100%}}@media(min-width:52em){.md-col{float:left;box-sizing:border-box}.md-col-right{float:right;box-sizing:border-box}.md-col-1{width:8.33333%}.md-col-2{width:16.66667%}.md-col-3{width:25%}.md-col-4{width:33.33333%}.md-col-5{width:41.66667%}.md-col-6{width:50%}.md-col-7{width:58.33333%}.md-col-8{width:66.66667%}.md-col-9{width:75%}.md-col-10{width:83.33333%}.md-col-11{width:91.66667%}.md-col-12{width:100%}}@media(min-width:64em){.lg-col{float:left;box-sizing:border-box}.lg-col-right{float:right;box-sizing:border-box}.lg-col-1{width:8.33333%}.lg-col-2{width:16.66667%}.lg-col-3{width:25%}.lg-col-4{width:33.33333%}.lg-col-5{width:41.66667%}.lg-col-6{width:50%}.lg-col-7{width:58.33333%}.lg-col-8{width:66.66667%}.lg-col-9{width:75%}.lg-col-10{width:83.33333%}.lg-col-11{width:91.66667%}.lg-col-12{width:100%}}.flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flex-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.flex-wrap{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-center{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.flex-baseline{-webkit-box-align:baseline;-webkit-align-items:baseline;-ms-flex-align:baseline;align-items:baseline}.flex-stretch{-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch}.flex-start{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.flex-end{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.flex-justify{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.flex-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.flex-last{-webkit-box-ordinal-group:1025;-webkit-order:1024;-ms-flex-order:1024;order:1024}.flex-auto{-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.flex-grow{-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto}.flex-none{-webkit-box-flex:0;-webkit-flex:none;-ms-flex:none;flex:none}.flex>div{box-sizing:border-box}@media(min-width:40em){.sm-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.sm-flex>div{box-sizing:border-box}}@media(min-width:52em){.md-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.md-flex>div{box-sizing:border-box}}@media(min-width:64em){.lg-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.lg-flex>div{box-sizing:border-box}}body{color:#FAFAC8;background-color:cream}a{color:#0074d9;text-decoration:none}a:hover{text-decoration:underline}pre,code{background-color:transparent;border-radius:3px}hr{border:0;border-bottom-style:solid;border-bottom-width:1px;border-bottom-color:#000;border-bottom-color:rgba(0,0,0,.125)}.button{color:white;background-color:#0074d9;border-radius:3px;-webkit-transition-duration:.05s;transition-duration:.05s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;-webkit-transition-property:box-shadow,background-color;transition-property:box-shadow,background-color}.button:hover{box-shadow:inset 0 0 0 20rem #000;box-shadow:inset 0 0 0 20rem rgba(0,0,0,.0625)}.button:focus{outline:none;border-color:#000;border-color:rgba(0,0,0,.125);box-shadow:0 0 0 3px #000;box-shadow:0 0 0 3px rgba(0,0,0,.25)}.button:active,.button.is-active{box-shadow:inset 0 0 0 20rem rgba(0,0,0,.125),inset 0 3px 4px 0 rgba(0,0,0,.25),0 0 1px #000;box-shadow:inset 0 0 0 20rem rgba(0,0,0,.125),inset 0 3px 4px 0 rgba(0,0,0,.25),0 0 1px rgba(0,0,0,.125)}.button:disabled,.button.is-disabled{opacity:.5}.field-light{background-color:white;-webkit-transition:box-shadow .2s ease;transition:box-shadow .2s ease;border-style:solid;border-width:1px;border-color:#000;border-color:rgba(0,0,0,.125);border-radius:3px}.field-light:focus{outline:none;border-color:#0074d9;box-shadow:0 0 0 2px #0074d9;box-shadow:0 0 0 2px rgba(0,116,217,.5)}.field-light:disabled{background-color:#000;background-color:rgba(0,0,0,.125);opacity:.5}.field-light:read-only:not(select){background-color:#000;background-color:rgba(0,0,0,.125)}.field-light.is-success{border-color:#2ecc40}.field-light.is-success:focus{box-shadow:0 0 0 2px #2ecc40;box-shadow:0 0 0 2px rgba(46,204,64,.5)}.field-light.is-warning{border-color:#ffdc00}.field-light.is-warning:focus{box-shadow:0 0 0 2px #ffdc00;box-shadow:0 0 0 2px rgba(255,220,0,.5)}.field-light:invalid,.field-light.is-error{border-color:#ff4136}.field-light.is-error:focus{box-shadow:0 0 0 2px #ff4136;box-shadow:0 0 0 2px rgba(255,65,54,.5)}.field-dark{color:white;background-color:#000;background-color:rgba(0,0,0,.25);border:1px solid #000;border:1px solid rgba(0,0,0,.0625);border-radius:3px}.field-dark::-webkit-input-placeholder{color:#fff;color:rgba(255,255,255,.75)}.field-dark::-moz-placeholder{color:#fff;color:rgba(255,255,255,.75)}.field-dark:-ms-input-placeholder{color:#fff;color:rgba(255,255,255,.75)}.field-dark::placeholder{color:#fff;color:rgba(255,255,255,.75)}.field-dark:focus{outline:0;border:1px solid #fff;border:1px solid rgba(255,255,255,.5);box-shadow:0 0 0 2px #fff;box-shadow:0 0 0 2px rgba(255,255,255,.25)}.field-dark:read-only:not(select){background-color:#fff;background-color:rgba(255,255,255,.25)}.field-dark.is-success{border-color:#2ecc40}.field-dark.is-success:focus{box-shadow:0 0 0 2px #2ecc40;box-shadow:0 0 0 2px rgba(46,204,64,.5)}.field-dark.is-warning{border-color:#ffdc00}.field-dark.is-warning:focus{box-shadow:0 0 0 2px #ffdc00;box-shadow:0 0 0 2px rgba(255,220,0,.5)}.field-dark:invalid,.field-dark.is-error{border-color:#ff4136}.field-dark.is-error:focus{box-shadow:0 0 0 2px #ff4136;box-shadow:0 0 0 2px rgba(255,65,54,.5)}input[type=range]{vertical-align:middle;background-color:transparent}.range-light{color:inherit;-webkit-appearance:none;padding-top:8px;padding-top:.5rem;padding-bottom:8px;padding-bottom:.5rem}.range-light::-webkit-slider-thumb{-webkit-appearance:none;position:relative;width:8px;width:.5rem;height:20px;height:1.25rem;border-radius:3px;background-color:currentcolor;cursor:pointer;margin-top:-8px;margin-top:-.5rem}.range-light::-webkit-slider-thumb:before{content:'';display:block;position:absolute;top:-8px;top:-.5rem;left:-14px;left:-.875rem;width:36px;width:2.25rem;height:36px;height:2.25rem;opacity:0}.range-light::-moz-range-thumb{width:8px;width:.5rem;height:20px;height:1.25rem;border-radius:3px;border-color:transparent;border-width:0;background-color:currentcolor;cursor:pointer}.range-light::-webkit-slider-runnable-track{height:4px;height:.25rem;cursor:pointer;border-radius:3px;background-color:#000;background-color:rgba(0,0,0,.25)}.range-light::-moz-range-track{height:4px;height:.25rem;cursor:pointer;border-radius:3px;background-color:#000;background-color:rgba(0,0,0,.25)}.range-light:focus{outline:none}.range-light:focus::-webkit-slider-thumb{outline:none;border:0;box-shadow:0 0 1px 2px currentcolor}.range-light:focus::-moz-range-thumb{outline:none;border:0;box-shadow:0 0 0 3px #000;box-shadow:0 0 0 3px rgba(0,0,0,.25)}.progress{display:block;width:100%;height:9px;height:.5625rem;margin:8px 0;margin:.5rem 0;background-color:#000;background-color:rgba(0,0,0,.125);border:0;border-radius:10000px;overflow:hidden;-webkit-appearance:none}.progress::-webkit-progress-bar{-webkit-appearance:none;background-color:#000;background-color:rgba(0,0,0,.125)}.progress::-webkit-progress-value{-webkit-appearance:none;background-color:currentColor}.progress::-moz-progress-bar{background-color:currentColor}.table-light th,.table-light td{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#000;border-bottom-color:rgba(0,0,0,.125)}.table-light tr:last-child td{border-bottom:0}.button-outline{position:relative;z-index:2;color:inherit;background-color:transparent;border-radius:3px;border:1px solid currentcolor}.button-outline:before{content:'';display:block;position:absolute;z-index:-1;top:-1px;right:-1px;bottom:-1px;left:-1px;border:1px solid transparent;background-color:currentcolor;border-radius:3px;opacity:0}.button-outline:hover{box-shadow:none}.button-outline:hover:before,.button-outline:focus:before{opacity:.125}.button-outline:focus{outline:none;border:1px solid currentcolor;box-shadow:0 0 0 2px}.button-outline:active,.button-outline.is-active{box-shadow:inset 0 1px 5px 0,0 0 1px}.button-outline:disabled,.button-outline.is-disabled{opacity:.5}.button-transparent{position:relative;z-index:2;color:inherit;background-color:transparent;border-radius:0;border:1px solid transparent}.button-transparent:before{content:'';display:block;position:absolute;z-index:-1;top:-1px;right:-1px;bottom:-1px;left:-1px;border:1px solid transparent;background-color:currentcolor;opacity:0}.button-transparent:hover{box-shadow:none}.button-transparent:hover:before,.button-transparent:focus:before{opacity:.09375}.button-transparent:focus{outline:none;border-color:transparent;box-shadow:0 0 0 2px}.button-transparent:active,.button-transparent.is-active{box-shadow:none}.button-transparent:active:before,.button-transparent.is-active:before{opacity:.0625}.button-transparent:disabled,.button-transparent.is-disabled{opacity:.5}.bg-cover{background-size:cover}.bg-contain{background-size:contain}.bg-center{background-position:center}.bg-top{background-position:top}.bg-right{background-position:right}.bg-bottom{background-position:bottom}.bg-left{background-position:left}.border{border-style:solid;border-width:1px;border-color:#000;border-color:rgba(0,0,0,.125)}.border-top{border-top-style:solid;border-top-width:1px;border-top-color:#000;border-top-color:rgba(0,0,0,.125)}.border-right{border-right-style:solid;border-right-width:1px;border-right-color:#000;border-right-color:rgba(0,0,0,.125)}.border-bottom{border-bottom-style:solid;border-bottom-width:1px;border-bottom-color:#000;border-bottom-color:rgba(0,0,0,.125)}.border-left{border-left-style:solid;border-left-width:1px;border-left-color:#000;border-left-color:rgba(0,0,0,.125)}.rounded{border-radius:3px}.circle{border-radius:50%}.rounded-top{border-radius:3px 3px 0 0}.rounded-right{border-radius:0 3px 3px 0}.rounded-bottom{border-radius:0 0 3px 3px}.rounded-left{border-radius:3px 0 0 3px}.not-rounded{border-radius:0}.black,.dark-gray{color:#111}.gray,.mid-gray{color:#aaa}.silver,.light-gray{color:#ddd}.white{color:#fff}.aqua{color:#7fdbff}.blue{color:#0074d9}.navy{color:#001f3f}.teal{color:#39cccc}.green{color:#2ecc40}.olive{color:#3d9970}.lime{color:#01ff70}.yellow{color:#ffdc00}.orange{color:#ff851b}.red{color:#ff4136}.fuchsia{color:#f012be}.purple{color:#b10dc9}.maroon{color:#85144b}.bg-black,.bg-dark-gray{background-color:#111}.bg-gray,.bg-mid-gray{background-color:#aaa}.bg-silver,.bg-light-gray{background-color:#ddd}.bg-white{background-color:#fff}.bg-aqua{background-color:#7fdbff}.bg-blue{background-color:#0074d9}.bg-navy{background-color:#001f3f}.bg-teal{background-color:#39cccc}.bg-green{background-color:#2ecc40}.bg-olive{background-color:#3d9970}.bg-lime{background-color:#01ff70}.bg-yellow{background-color:#ffdc00}.bg-orange{background-color:#ff851b}.bg-red{background-color:#ff4136}.bg-fuchsia{background-color:#f012be}.bg-purple{background-color:#b10dc9}.bg-maroon{background-color:#85144b}.bg-darken-1{background-color:#000;background-color:rgba(0,0,0,.0625)}.bg-darken-2{background-color:#000;background-color:rgba(0,0,0,.125)}.bg-darken-3{background-color:#000;background-color:rgba(0,0,0,.25)}.bg-darken-4{background-color:#000;background-color:rgba(0,0,0,.5)}.border-black{border-color:#111}.border-gray{border-color:#aaa}.border-silver{border-color:#ddd}.border-white{border-color:#fff}.border-aqua{border-color:#7fdbff}.border-blue{border-color:#0074d9}.border-navy{border-color:#001f3f}.border-teal{border-color:#39cccc}.border-green{border-color:#2ecc40}.border-olive{border-color:#3d9970}.border-lime{border-color:#01ff70}.border-yellow{border-color:#ffdc00}.border-orange{border-color:#ff851b}.border-red{border-color:#ff4136}.border-fuchsia{border-color:#f012be}.border-purple{border-color:#b10dc9}.border-maroon{border-color:#85144b}.border-darken-1{border-color:#000;border-color:rgba(0,0,0,.0625)}.border-darken-2{border-color:#000;border-color:rgba(0,0,0,.125)}.border-darken-3{border-color:#000;border-color:rgba(0,0,0,.25)}.border-darken-4{border-color:#000;border-color:rgba(0,0,0,.5)}.muted{opacity:.5}.color-inherit{color:inherit}p{font-weight:500}.georgia{font-family:Georgia,serif}.field-light{color:inherit}.button-link{padding-left:0;padding-right:0;color:inherit;background-color:transparent}.button-link:hover{text-decoration:underline;box-shadow:none}.geomicon{position:relative;top:.1875em;width:1em;height:1em;opacity:1}.tiles{margin:-1rem;opacity:.8}.tiles .geomicon{width:2rem;height:2rem;margin:.75rem}.copy-button{display:block;-webkit-transition:-webkit-transform .05s ease,background-color .075s linear,box-shadow .1s linear;transition:transform .05s ease,background-color .075s linear,box-shadow .1s linear;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);background-color:rgba(0,150,255,0);box-shadow:inset 0 0 0 2px rgba(0,150,255,0)}.has-zeroclipboard .copy-button.zeroclipboard-is-hover{position:relative;outline:none;-webkit-transform:scale(1.03125);-ms-transform:scale(1.03125);transform:scale(1.03125);background-color:rgba(0,150,255,.125);box-shadow:inset 0 0 0 2px rgba(0,150,255,.5);border-radius:3px;cursor:pointer}.has-zeroclipboard .copy-button.zeroclipboard-is-hover:after{content:'Copy';position:absolute;bottom:.25rem;right:.5rem;font-size:75%;color:#0096ff}.has-zeroclipboard .copy-button.zeroclipboard-is-active{-webkit-transform:scale(.96875);-ms-transform:scale(.96875);transform:scale(.96875);background-color:rgba(0,150,255,.25)}.zero-show{display:none}.has-zeroclipboard .zero-show{display:block}@media(min-width:30em){.tiles{margin:-1.5rem}.tiles .geomicon{width:3rem;height:3rem;margin:1.5rem}}@media(min-width:40em){.tiles{margin:-2rem}.tiles .geomicon{width:4rem;height:4rem;margin:2rem}}@media(min-width:50em){.tiles{margin:-2rem}.tiles .geomicon{width:5rem;height:5rem;margin:2rem}}.bg-grid{background-image:url(/docs/grid.svg),-webkit-linear-gradient(135deg,rgba(255,0,0,.05),rgba(0,127,255,.05));background-image:url(/docs/grid.svg),linear-gradient(-45deg,rgba(255,0,0,.05),rgba(0,127,255,.05));background-position:top center}@-webkit-keyframes floatup{from{-webkit-transform:translateY(200%);transform:translateY(200%);opacity:.5}to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes floatup{from{-webkit-transform:translateY(200%);transform:translateY(200%);opacity:.5}to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}.toast{position:fixed;right:0;bottom:4rem;left:0;text-align:center}.toast-inner{display:inline-block;display:none;padding:.5rem 1rem;color:white;background-color:rgba(0,150,255,.75);border-radius:3px;-webkit-animation-name:floatup;animation-name:floatup;-webkit-animation-duration:.25s;animation-duration:.25s;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}.align-baseline{vertical-align:baseline}.align-middle{vertical-align:middle}</style>
<style>
body {
background-color: #FAFAC8;
color: #000;
font-family: Roboto, sans-serif;
font-size: 23px;
line-height: 30px;
}
.serif {
font-family: Merriweather, serif;
}
.geomicon { width: 2.5em; height: 2.5em; }
.geomicon-button { width: 1em; height: 1em; }
</style>
</head>
<body>
<div class="container px3">
<header class="sm-flex flex-wrap flex-center py2 mb2 mxn1">
<div class="flex-auto px1">
<h1 class="m0">Rastreadores de Mosquito</h1>
<p class="m0">Vamos acabar com essa praga!</p>
</div>
<a href="#como-ajudar" class="button m1 button-outline blue">
<span class="js-geomicon geomicon-button" data-icon="user"></span>
Como ajudar?
</a>
<a href="#" class="button m1 button-outline blue">
<span class="js-geomicon geomicon-button" data-icon="geolocation"></span>
Mapa
</a>
</header>
<hr>
<section id="como-ajudar" class="py3">
<div class="flex mb2">
<span class="js-geomicon geomicon red flex-none mr2" data-icon="info"></span>
<div class="flex-auto">
<p class="h4">Ajude a localizar possíveis focos de mosquito <em>Aedes aegypt</em> usando a câmera do seu celular, basta tirar uma foto do local e compartilhar no Instagram com a hastag <em>#rastreadoresdemosquito</em>. O mapa ajudará a Vigilância Sanitária localizar focos do mosquito.</p>
</div>
</div>
</section>
<hr>
<section class="py2">
<h2 class="h2 m0">Certifique-se que o servi&ccedil;o geolocaliza&ccedil;ão está habilitado no seu celular.</h2>
<p></p>
<div class="sm-flex mxn2">
<a href="#"
class="button block m2 button-link">
<h2 class="mt0 mb1">Android</h2>
<p class="m0">React component for Geomicons Open</p>
</a>
<a href="#"
class="button block m2 button-link">
<h2 class="mt0 mb1">iOS</h2>
<p class="m0">Symbolset Webfont with a Friendly Demeanor</p>
</a>
<a href="#"
class="button block m2 button-link">
<h2 class="mt0 mb1">Windows Phone</h2>
<p class="m0">The Original Outlined Icons</p>
</a>
</div>
</section>
<hr>
<section class="py3">
<h2>Getting Started</h2>
<p>Download and learn more about how to use Geomicons on GitHub.</p>
<div class="mxn1">
<code class="h5 p1 m1 bg-darken-1 border rounded ">npm install geomicons-open</code>
<a href="https://github.com/jxnblk/geomicons-open/archive/1.0.1.zip"
class="button m1 align-baseline button-outline blue">Download</a>
<a href="//github.com/jxnblk/geomicons-open"
class="button m1 align-baseline button-outline blue">GitHub</a>
</div>
</section>
<hr>
<footer class="flex flex-baseline py2 mb2">
<a href="https://twitter.com/intent/tweet?text=Rastreadores de Mosquito: &amp;url=http://rastreadoresdemosquito.netify.com&amp;via=marloncabrera" class="button button-outline blue">
<span class="js-geomicon geomicon-button" data-icon="twitter"></span>
Tweet
</a>
<div class="flex-auto"></div>
<a href="http://jxnblk.com" class="button button-link">
<span class="js-geomicon geomicon red" data-icon="heart"></span>
Made by Marlon Cabrera
</a>
</footer>
</div>
<div id="toast" class="toast">
<div id="toast-inner" class="toast-inner">
Toast Test
</div>
</div>
<script src="geomicons.js"></script>
<script>
var icons = document.querySelectorAll('.js-geomicon');
console.log(icons);
geomicons.inject(icons);
</script>
<!-- <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-4603832-5', 'auto'); ga('send', 'pageview'); </script> -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment