[Frontend] In-progress checkin:

WTD-894
Added scss file for fixed position styles;
Mods in progress to fixed.html to remove inline styling and change grid method to background gradient approach;
This commit is contained in:
Charles Hacskaylo
2015-02-25 11:08:52 -08:00
parent db87147bbd
commit fa4cfc4961
4 changed files with 70 additions and 22 deletions

View File

@@ -0,0 +1,28 @@
.t-fixed-position {
&.l-fixed-position {
// @include test(red);
position: absolute;
top: 0; right: 2px; bottom: 2px; left: 0;
width: auto; height: auto;
.l-grid-cell {
$brd: 1px solid lighten($colorBodyBg, 5%);
position: absolute;
border-top: $brd;
border-left: $brd;
}
}
}