editing sign in page and other css goodies

This commit is contained in:
Scott O'Hara 2013-07-13 22:13:58 -04:00
parent b2aacfe34d
commit 75500237ac
4 changed files with 22 additions and 11 deletions

View file

@ -8,7 +8,11 @@ body{background:#CCDF9B}
::selection {background:$c-Brand-1; color:$c-Light; text-shadow:none}
// Full container for the entire page.
.page{}
.page{min-height:600px;
@media (max-device-width:480px), screen and (max-width:800px){
min-height:25px;
}
}
// Generic tag to wrap around content within sections to apply a max width to the interior content
// while allowing for larger sections to expand the whole page for BG purposes

View file

@ -903,6 +903,12 @@ body {
color: #eeeeee;
text-shadow: none; }
.page {
min-height: 600px; }
@media (max-device-width: 480px), screen and (max-width: 800px) {
.page {
min-height: 25px; } }
.content, .header-Content, .footer-Content {
margin: 0 auto;
max-width: 1000px;

File diff suppressed because one or more lines are too long