Skip to content

Instantly share code, notes, and snippets.

@gmclelland
gmclelland / SassMeister-input-HTML.html
Created June 6, 2014 22:43
Generated by SassMeister.com.
<button id="intro-button5">Some really long Button</button>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/path/to/page [NC]
RewriteRule ^(.*)$ /static/page.html [L]
</IfModule>
refs: http://drupal.org/node/642116
refs: http://drupalovereasy.com/drupal-7/tutorials/installing-using-drush-make-git-profiles
refs: http://realize.be/exporting-more-configuration-drush-ctools-export-bonus
PACK:
# Starting from an up&running drupal site
#========================================
cd <drupal_repo_root>
@gmclelland
gmclelland / rem-results
Created November 4, 2012 16:16
Showing the expected output of the rem mixin
I'm trying to do this:
html{
font-size:62.5%;
}
body{
@include rem(font-size, 14px);
line-height:1.6;
}
body{
//overflow:hidden; /* This will remove the default scroll, not really needed, safer nonetheless */
}
.right, .left{
overflow:auto; /* This will add a scroll when required */
width:50%;
float:left;
height: 100%
}