This file contains 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
RewriteEngine On | |
RewriteBase /wp-content/uploads/ | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{HTTP_HOST} ^localsite\.test$ | |
RewriteRule ^(.+)$ http://livesite.com/wp-content/uploads/$1 [L,R=301,NE] |
This file contains 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
// Supports up to 20 column grid. For more support add more spans. | |
// @NOTE: You can have any number of spans, the grid will only show what is needed. | |
.grid-helper { | |
position: fixed; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
max-width: $global-width; |
This file contains 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
.rwd-helper { | |
position: fixed; | |
bottom: 0; | |
right: 0; | |
width: 100%; | |
height: 25px; | |
background: black; | |
color: white; | |
line-height: 25px; | |
text-align: center; |
This file contains 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
.selector { | |
// extend is the very first incase you wish to overwrite | |
@extend %overlay; | |
// alphabetical order of rules | |
text-align: right; | |
// z-index in increments of 5 | |
z-index: 5; | |