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
import * as React from 'react'; | |
import { theme } from './theme'; | |
import { ThemeProvider, createGlobalStyle } from './styled-components'; | |
const GlobalStyle = createGlobalStyle` | |
body { | |
font-family: Times New Roman; | |
} | |
`; |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
isShowing:false, | |
actions:{ | |
clicked(){ | |
this.toggleProperty('isShowing'); | |
} | |
} | |
}); |
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
$sc-display-values: ( | |
'none': 'none', | |
'block': 'block', | |
'inline-block': 'inline-block', | |
'inline': 'inline', | |
'flex': 'flex', | |
) !default; | |
@mixin generate-display-classes { | |
@each $sc-breakpoint-name, $sc-breakpoint-value in sc-responsive-utility-breakpoints() { |
I hereby claim:
- I am chrislopresto on github.
- I am chrislopresto (https://keybase.io/chrislopresto) on keybase.
- I have a public key ASA4qKbjKEAQYHKy1VUEBm4qI6Pc0Zs-HpQ7KPofPgnV3Ao
To claim this, I am signing this object:
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
editor | |
foreground: cccccc | |
background: 2d2d2d | |
caret: cc99cc | |
editor-selection | |
foreground: ffffff | |
background: 515151 | |
H1 |
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
// See http://guide.taskpaper.com/creating_themes.html to get started. | |
// Cobalt Atom Colors | |
// General colors | |
@syntax-text-color: #FFFFFF; | |
@syntax-cursor-color: #ffc600; | |
@syntax-selection-color: #0050a4; | |
@syntax-background-color: #193549; | |
// Guide colors |
- Technique lifted directly from https://scotch.io/tutorials/aesthetic-sass-2-colors
- base.scss comes before color-palette.scss
- The
palette-color
scss function lets you do things likeborder-bottom: 1px solid palette-color('background', 'dark');
orcolor: palette-color('primary');
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
> Keen = require('keen-js'); | |
> Keen.version | |
'3.4.0-rc4' | |
> var masterKey = process.env.YAPP_KEEN_MASTER_KEY; | |
> var appIdA = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'; | |
> var scopedKeyA = Keen.utils.encryptScopedKey(masterKey, { | |
... filters: [{ | |
..... property_name: 'appId', | |
..... operator: 'eq', | |
..... property_value: appIdA |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
actions: { | |
hodorSigil() { | |
console.log('HODOR!!!'); | |
} | |
} | |
}); |
NewerOlder