Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
all colors on home nav
  • Loading branch information
tsm15002 committed Aug 31, 2016
1 parent b42ad24 commit c69c5f0
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 1 deletion.
21 changes: 21 additions & 0 deletions dist/css/app.css
Expand Up @@ -2820,6 +2820,27 @@ Make this look cool with parallax webgl awesomeness
.u-how-to-applyColor .u-h-backgroundColor:hover {
background-color: #194472; }

.u-homeColor .pageNav__link:hover {
color: white !important; }

.u-homeColor .pageNav__link--degrees {
color: #d81544 !important; }

.u-homeColor .pageNav__link--concentrations {
color: #EF7C02 !important; }

.u-homeColor .pageNav__link--our-work {
color: #f3D33D !important; }

.u-homeColor .pageNav__link--for-students {
color: #76B700 !important; }

.u-homeColor .pageNav__link--campuses {
color: #1982BE !important; }

.u-homeColor .pageNav__link--about-us {
color: #ae33ab !important; }

@media screen and (min-width: 38em) {
.subPageAside__Image,
.subPageAside__Banner {
Expand Down
2 changes: 1 addition & 1 deletion dist/css/app.min.css

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions src/scss/base/_utilities.scss
Expand Up @@ -47,3 +47,29 @@
}
}
}

.u-homeColor {
.pageNav__link {
&:hover {
color:white!important;
}
}
.pageNav__link--degrees {
color:lighten($degrees-color, 5%)!important;
}
.pageNav__link--concentrations {
color:$concentrations-color!important;
}
.pageNav__link--our-work {
color:$our-work-color!important;
}
.pageNav__link--for-students {
color:$for-students-color!important;
}
.pageNav__link--campuses {
color:$campuses-color!important;
}
.pageNav__link--about-us {
color:lighten($about-us-color, 5%)!important;
}
}

0 comments on commit c69c5f0

Please sign in to comment.