Skip to content

Commit

Permalink
Fix various linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeruiz authored and yozlet committed May 25, 2016
1 parent 4994bf3 commit fafd2c6
Showing 1 changed file with 25 additions and 18 deletions.
43 changes: 25 additions & 18 deletions docs/doc_assets/css/homepage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,6 @@ p {
max-width: $text-width;
}

.usa-section-examples {
@include media($medium-screen) {
.usa-width-five-sixths {
@include shift(1);
}
}
}

.usa-section {
@include padding($section-padding null);
}
Expand All @@ -37,18 +29,20 @@ p {
@include media($medium-screen) {
width: auto;
}

display: inline-block;
vertical-align: top;
width: 100%;
}

.usa-banner {
@include media ($medium-screen) {
background-image: url("../img/home/homepage_illustrations_flag_cropped_2x.png");
background-image: url('../img/home/homepage_illustrations_flag_cropped_2x.png');
background-position: right bottom;
background-repeat: no-repeat;
background-size: 582px auto;
}

background-color: $color-primary-darkest;
background-image: none;
color: $color-white;
Expand All @@ -71,6 +65,7 @@ p {
font-size: 5.6rem;
padding-top: 1.2rem;
}

color: $color-white;
padding-top: 1.5rem;
}
Expand Down Expand Up @@ -127,8 +122,12 @@ p {
}
}

.usa-circle-block img {
width: 124px;
.usa-circle-block {
text-align: center;

img {
width: 124px;
}
}

@include media($medium-screen) {
Expand All @@ -147,16 +146,18 @@ p {
}
}

.usa-circle-block {
text-align: center;
}

h1, h2, h3, h4, h5, h6 {
h1,
h2,
h3,
h4,
h5,
h6 {
color: $color-primary-darker;
font-family: $font-serif;
}

h1, h2 {
h1,
h2 {
margin-top: 0;
}

Expand All @@ -179,7 +180,7 @@ a:hover {

a {
> h3,
&:visited {
&:visited {
color: $color-primary;
}
}
Expand Down Expand Up @@ -208,4 +209,10 @@ a {
margin-top: 0;
}
}

@include media($medium-screen) {
.usa-width-five-sixths {
@include shift(1);
}
}
}

0 comments on commit fafd2c6

Please sign in to comment.