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
* { | |
outline: none !important; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
a { | |
color: inherit; | |
text-decoration: none; | |
} |
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
/* | |
Tailwind - The Utility-First CSS Framework | |
A project by Adam Wathan (@adamwathan), Jonathan Reinink (@reinink), | |
David Hemphill (@davidhemphill) and Steve Schoger (@steveschoger). | |
Welcome to the Tailwind config file. This is where you can customize | |
Tailwind specifically for your project. Don't be intimidated by the | |
length of this file. It's really just a big JavaScript object and |
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
'use strict' | |
const gulp = require('gulp') | |
const styles = require('./assets/build/tasks/styles.js') | |
const icons = require('./assets/build/tasks/icons.js') | |
const pot = require('./assets/build/tasks/pot.js') | |
/** | |
* Tasks | |
*/ |
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
#home-layout .grid .block.manifesto-block .brick-wrapper { | |
padding: 0; | |
} | |
#home-layout .grid .block.manifesto-block .jsgif, | |
#home-layout .grid .block.manifesto-block .jsgif canvas { | |
width: 100%; | |
height: 100%; | |
} |
This file has been truncated, but you can view the full file.
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
item_templates { | |
template_id: "AVATAR_f_backpack_cute_0" | |
avatar_customization { | |
enabled: true | |
avatar_type: PLAYER_AVATAR_FEMALE | |
slot: BACKPACK | |
bundle_name: "f_backpack_cute_bundle" | |
asset_name: "f_backpack_cute_0" | |
group_name: "group_backpack" | |
sort_order: 77 |
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 python | |
# -*- coding: utf-8 -*- | |
import json | |
import os | |
from collections import OrderedDict | |
masterNew = json.load(open('pokemongo.json'), object_pairs_hook=OrderedDict) | |
masterOld = json.load(open('pokemongo_old.json'), object_pairs_hook=OrderedDict) |