Reinvent the Way You Make a Living, Do What You Love, and Create a New Future
Written by Chris Guillebeau
| <!doctype html> | |
| <html> | |
| <head> | |
| <!-- Based on http://codepen.io/lbebber/pen/ypgql --> | |
| <link href="http://necolas.github.io/normalize.css/3.0.2/normalize.css" rel='stylesheet'/> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script> | |
| <style> | |
| /* Just colors and font sizes */ | |
| * { | |
| font-family: sans-serif; |
| window.ConsoleCss = { | |
| log : function ( obj, css ) { | |
| var cssString = css; | |
| if ( typeof css == 'object' ) { | |
| cssString = ''; | |
| for ( var part in css ) { | |
| if ( css.hasOwnProperty( part ) ) { | |
| cssString += part + ':' + css[part] + '; '; | |
| } | |
| } |
| 2015 Spring A | |
| Jason Bronowitz |
| // ======================= | |
| // Media Query Breakpoints | |
| // ======================= | |
| $screen-xs-min: 480px !default; | |
| $screen-sm-min: 768px !default; | |
| $screen-md-min: 992px !default; | |
| $screen-lg-min: 1200px !default; | |
| $screen-xs-max: ($screen-sm-min - 1) !default; | |
| $screen-sm-max: ($screen-md-min - 1) !default; |
| /** | |
| * @see http://designpieces.com/2014/09/instagram-filters-css3-effects/ for example | |
| */ | |
| .ig-xpro2 { | |
| -webkit-filter: contrast(1.3) brightness(0.8) sepia(0.3) saturate(1.5) hue-rotate(-20deg); | |
| filter: contrast(1.3) brightness(0.8) sepia(0.3) saturate(1.5) hue-rotate(-20deg); | |
| } | |
| .ig-willow { |
| PLATFORM VERSION INFO | |
| Windows : 6.1.7601.65536 (Win32NT) | |
| Common Language Runtime : 4.0.30319.18444 | |
| System.Deployment.dll : 4.0.30319.34244 built by: FX452RTMGDR | |
| clr.dll : 4.0.30319.18444 built by: FX451RTMGDR | |
| dfdll.dll : 4.0.30319.34244 built by: FX452RTMGDR | |
| dfshim.dll : 4.0.41209.0 (Main.041209-0000) | |
| SOURCES | |
| Deployment url : http://github-windows.s3.amazonaws.com/GitHub.application |
| $theme-dark: #_; | |
| $theme-primary: #_; | |
| $theme-accent: #_; | |
| $theme-pop: #_; | |
| $theme-aggro: #_; |