Skip to content

Instantly share code, notes, and snippets.

View MeoMix's full-sized avatar

Sean Anderson MeoMix

  • San Francisco, CA
View GitHub Profile
.blue {
background-color: rgb(66, 133, 244);
}
/* https://www.google.com/design/spec/components/buttons.html#buttons-raised-buttons */
.disabledButton--dark {
background-color: rgba(255, 255, 255, .12);
}
/*
import * as postcss from 'postcss';
class MixinFrom {
constructor() {
this.plugin = this.plugin.bind(this);
}
plugin(css, result) {
const promises = [];
import { mixin } from 'lodash';
mixin({
// Inspired by: https://gist.github.com/danro/7846358
// Leverage requestAnimationFrame for throttling function calls instead of setTimeout for better perf.
throttleFramerate: function(callback) {
var wait = false;
var args = null;
var context = null;
import { LayoutView } from 'marionette';
import template from './share.hbs!';
import styles from './share.css!';
import Playlist from 'playlist/playlist';
import PlaylistView from 'playlist/playlistView';
import RouteType from 'common/enum/routeType';
export default LayoutView.extend({
className: styles.share,
template,
import { LayoutView } from 'marionette';
import styles from './application.css!';
import template from './application.hbs!';
import _ from 'lodash';
export default LayoutView.extend({
el: 'main',
template,
templateHelpers: {
styles: styles
<h1 class='{{styles.title}}'>
Contact
</h1>
<h4 class='{{styles.description}}'>
Got somethin' to say? Drop me a line!
</h4>
<div class='{{styles.card}}'>
All fields are required.
.playlist {
}
.loading {
}
.error {
}
.navigationItem {
display: flex;
}
.link {
padding: 16px;
height: 48px;
flex: 1;
}
Koyaanisqatsi Movie Full Soundtrack - Phillip Glass (1982),t-t8w08QNJM
Halo 4 OST - Beauty of Cortana,C585gsBarW8
Games of Thrones - House Stark Theme,SZrDEUldGr0
Owl City Rainbow Veins,2EsMHFXdLxI
Basil Poledouris - Riddle Of Steel / Riders Of Doom,onGWF8mz1Zw
Trans-Siberian Orchestra: Christmas Dreams,KrvGklFCb6c
Theophany - Time's End - Majora's Mask Remixed,F4jdLygR-dI
Stabilised Zelda: Symphony of the Goddesses- London 2013,VujV19LQh24
Passenger - Let Her Go [Official Video],RBumgq5yVrA
Wayne County | Storm the gates of heaven | 01. Storm the gates of heaven,79fk08Ax774
_.mixin({
// Inspired by: https://gist.github.com/danro/7846358
// Leverage requestAnimationFrame for throttling function calls instead of setTimeout for better perf.
throttleFramerate: function(callback) {
var wait = false;
var args = null;
var context = null;
return function() {
if (!wait) {