This file contains hidden or 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 webpack from 'webpack'; | |
| import HtmlWebpackPlugin from 'html-webpack-plugin'; | |
| import autoprefixer from 'autoprefixer'; | |
| import CopyWebpackPlugin from 'copy-webpack-plugin'; | |
| import ReplacePlugin from 'replace-bundle-webpack-plugin'; | |
| import OfflinePlugin from 'offline-plugin'; | |
| import path from 'path'; | |
| import V8LazyParseWebpackPlugin from 'v8-lazy-parse-webpack-plugin'; | |
| import ScriptExtHtmlWebpackPlugin from "script-ext-html-webpack-plugin"; | |
| const ENV = process.env.NODE_ENV || 'development'; |
This file contains hidden or 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 React, { Component, PropTypes } from 'react'; | |
| import styled, { css } from 'styled-components'; | |
| const Container = styled.div` | |
| /* Root styles */ | |
| margin: auto; | |
| padding: 0 80px 0 10%; | |
| &:before, | |
| &:after { |
This file contains hidden or 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 ruby | |
| require 'rubygems' | |
| require 'twitter' | |
| require 'json' | |
| require 'faraday' | |
| # things you must configure | |
| PATH_TO_DROPBOX = "/Users/your_name/Dropbox/backup/tweets/" # you need to create this folder | |
| TWITTER_USER = "your_twitter_username" |
This file contains hidden or 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
| /***** Color Variables *****/ | |
| :root { | |
| /* Base Colors */ | |
| --colorGreen: #95d06d; | |
| --colorRed: #d06d6d; | |
| --colorBlue: #41c1c8; | |
| --colorBlueDark: #00587f; | |
| --colorOrange: #f7931d; | |
| --colorYellow: #d0ca6d; | |
| --colorGray: #979797; |
This file contains hidden or 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
| html, body, div, span, applet, object, iframe, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
| a, abbr, acronym, address, big, cite, code, | |
| del, dfn, em, img, ins, kbd, q, s, samp, | |
| small, strike, strong, sub, sup, tt, var,, | |
| dl, dt, dd, ol, ul, li, | |
| fieldset, form, label, legend, | |
| table, caption, tbody, tfoot, thead, tr, th, td, | |
| article, aside, canvas, details, embed, | |
| figure, figcaption, footer, header, hgroup, |
This file contains hidden or 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 React, { Component, PropTypes } from 'react'; | |
| import withStyles from 'isomorphic-style-loader/lib/withStyles'; | |
| import s from './ProgressBar.scss'; | |
| class ProgressBar extends Component { | |
| render() { | |
| const completed = +this.props.completed; |
This file contains hidden or 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
| var React = require('react'), | |
| Footer = require('./Footer.jsx'), | |
| Footer = require('./ScanCarousel.jsx'); | |
| var PageLayout = React.createClass({ | |
| render: function() { | |
| if (this.props.layoutType === "withFooter") { | |
| return ( |
NewerOlder