This is the reference point. All the other options are based off this.
|-- app
| |-- controllers
| | |-- admin
| // Imports ------------------------------------------------------------------- | |
| @import "susy"; | |
| // Configuration ------------------------------------------------------------- | |
| $total-cols : 12; | |
| $col-width : 4em; | |
| $gutter-width : 1em; | |
| $side-gutter-width : $gutter-width; |
| <?php | |
| /* | |
| Plugin Name: Mobile First Responsive Images | |
| Description: Serve up smaller images to smaller screens. | |
| Version: 0.1.1 | |
| Author: Matt Wiebe | |
| Author URI: http://somadesign.ca/ | |
| */ | |
| /** |
| *.log | |
| jobs/*/workspace | |
| jobs/*/builds | |
| jobs/*/lastStable | |
| jobs/*/lastSuccessful | |
| jobs/*/nextBuildNumber | |
| updates | |
| .owner |
| @mixin background-image-retina($file, $type, $width, $height) { | |
| background-image: url($file + '.' + $type); | |
| @media (-webkit-min-device-pixel-ratio: 2), (-moz-min-device-pixel-ratio: 2) { | |
| & { | |
| background-image: url($file + '@2x.' + $type); | |
| -webkit-background-size: $width $height; | |
| } | |
| } | |
| } |
| #!/bin/sh | |
| echo " | |
| Cool, let's start. | |
| " | |
| src=$PWD |
| @function em($target, $context: $base-font-size) { | |
| @if $target == 0 { @return 0 } | |
| @return $target / $context + 0em; | |
| } | |
| $base-font-size: 15px; | |
| h1 { | |
| font-size: em(21px, 15px); // Outputs 1.4em | |
| } |
| name = Custom Beans | |
| description = My Custom Beans | |
| core = 7.x | |
| files[] = "custom_bean.listing.inc" |
| // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
| // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
| // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
| // MIT license | |
| (function() { | |
| var lastTime = 0; | |
| var vendors = ['ms', 'moz', 'webkit', 'o']; |