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){
float:none;
padding:0;
width:100%;
width:100% !important;
}
}

View file

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

View file

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

File diff suppressed because one or more lines are too long