Hack to fix bug with home page sign-up area breaking weirdly when window is stretched too wide; must revisit. (is this due to the footer fix?)

This commit is contained in:
Victoria Wang 2014-04-23 16:11:33 -07:00
parent 7cd0fc241a
commit a4f0398ac9
4 changed files with 21 additions and 15 deletions

View file

@ -51,7 +51,7 @@ a{
@media (max-device-width:480px), screen and (max-width:800px){ @media (max-device-width:480px), screen and (max-width:800px){
float:none; float:none;
padding:0; padding:0;
width:100%; width:100% !important;
} }
} }

View file

@ -38,6 +38,12 @@
@include box-shadow($outroShadow); @include box-shadow($outroShadow);
color:#fafafa; color:#fafafa;
} }
.hp .header-Outro .col-50 {
width: 48%;
}
.hp .header-Outro .signup-Area {
float: right;
}
.intro-List{ .intro-List{
@extend %kill-List; @extend %kill-List;

View file

@ -388,21 +388,21 @@
.interior .header-Outro.with-columns { .interior .header-Outro.with-columns {
padding-top: 22px; padding-top: 22px;
} }
.header-Outro.with-columns h3 { .interior .header-Outro.with-columns h3 {
float: left; float: left;
margin-bottom: 0; margin-bottom: 0;
font-size: 1.7em; font-size: 1.7em;
} }
.header-Outro.with-columns .content { .interior .header-Outro.with-columns .content {
padding: 0; padding: 0;
} }
.header-Outro.with-columns .col { .interior .header-Outro.with-columns .col {
padding: 25px 0 8px 30px; padding: 25px 0 8px 30px;
} }
.header-Outro.with-columns .col-32 { .interior .header-Outro.with-columns .col-32 {
width: 33%; width: 33%;
} }
.header-Outro.with-columns .col-66 { .interior .header-Outro.with-columns .col-66 {
width: 67%; width: 67%;
border-right: 1px solid #0B0F11; border-right: 1px solid #0B0F11;
} }
@ -630,32 +630,32 @@ a.tag:hover {
.report, .report a { .report, .report a {
color: #999; color: #999;
} }
.header-Outro .actions a { .interior .header-Outro .actions a {
margin-right: 7px; margin-right: 7px;
} }
.header-Outro .stats { .interior .header-Outro .stats {
margin-bottom: 1.2em; margin-bottom: 1.2em;
float: left; float: left;
width: 100%; width: 100%;
margin-top: 2em; margin-top: 2em;
} }
.header-Outro .stats strong { .interior .header-Outro .stats strong {
font-size: 1.5em; font-size: 1.5em;
font-weight: bold; font-weight: bold;
color: #DAEEA5; color: #DAEEA5;
} }
.header-Outro .stats span { .interior .header-Outro .stats span {
font-size: .7em; font-size: .7em;
text-transform: uppercase; text-transform: uppercase;
clear: both; clear: both;
display: block; display: block;
} }
.header-Outro .stats .stat { .interior .header-Outro .stats .stat {
float: left; float: left;
width: 90px; width: 90px;
text-align: center; text-align: center;
} }
.header-Outro .stats .stat.tips { .interior .header-Outro .stats .stat.tips {
width: 60px; width: 60px;
} }
.btn-Action.follow span { .btn-Action.follow span {

File diff suppressed because one or more lines are too long