Skip to content

Commit

Permalink
Quick fixes for responsive [#51613273]
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Camacho committed Jun 13, 2013
1 parent 9ae7b02 commit 1c762f9
Showing 1 changed file with 53 additions and 6 deletions.
59 changes: 53 additions & 6 deletions vendor/assets/stylesheets/bootswatch/faf/_bootswatch.scss
Original file line number Diff line number Diff line change
Expand Up @@ -863,14 +863,61 @@ footer {

// MEDIA QUERIES
// -----------------------------------------------------
@media (min-width: 980px){
.lead_container {
margin-top:-10px;
//Large desktop
@media (min-width: 1200px) {
}

//Portrait tablet to landscape and desktop
@media (min-width: 768px) and (max-width: 979px) {
body {
padding-top: 0;
background:pink !important;
}
.body-inner {
padding-top: 0;
margin-top:0;
}

}

//Landscape phone to portrait tablet
@media (max-width: 767px) {
body {
padding-top: 0;
background:yellow !important;

}
.body-inner {
padding-top: 0;
margin-top:0;
background:none;
background:$blueDark !important;
height:60px !important;
}
}

@media (max-width: 979px) {
.lead_container {
margin-top:-21px;
//Landscape phones and down
@media (max-width: 480px) {
body {
padding-top: 0;
background:green !important;
}
.body-inner {
padding-top: 0;
margin-top:0;
background:none;
background:$blueDark !important;
height:60px !important;
}

footer {
height:90px !important;
.container {
text-align: center;
padding-left:40px;
padding-right:40px;
}
}

}

0 comments on commit 1c762f9

Please sign in to comment.