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
<button id="intro-button5">Some really long Button</button> |
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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteCond %{REQUEST_URI} ^/path/to/page [NC] | |
RewriteRule ^(.*)$ /static/page.html [L] | |
</IfModule> |
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
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> |
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
I'm trying to do this: | |
html{ | |
font-size:62.5%; | |
} | |
body{ | |
@include rem(font-size, 14px); | |
line-height:1.6; | |
} |
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
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% | |
} |