Skip to content

Commit

Permalink
Minor refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jttpo2 committed May 8, 2017
1 parent 84dd390 commit 198d6fa
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ $hero-image-text-color: white;
$hero-image-text-shadow: #190F00;
$social-icon-color: $secondary-info-color;
$social-icon-hover-color: #1f1f1f;

$top-menu-item-font-size: 1.5rem;
$link-hover-color: #0f0f0f;
$band-name-home-font-size: 10rem;
$tag-line-home-font-size: 3rem;
Expand All @@ -32,6 +34,7 @@ $band-name-page-top-font-size: 8rem;
$bodycopy-font-size: 2.5rem;

$screen-width-min-limit-desktop: 992px;
$screen-width-max-small-handheld: 767px;

/* Band logo font */
/* @font-face kit by Fonts2u (http://www.fonts2u.com) */
Expand Down Expand Up @@ -209,7 +212,7 @@ html {

a {
// Menu items font size
font-size: 1.5rem;
font-size: $top-menu-item-font-size;
}
}

Expand Down Expand Up @@ -376,7 +379,7 @@ html {
}
}

@media all and (max-width: 767px) {
@media all and (max-width: $screen-width-max-small-handheld) {
// Hack-size main page posts
.post.hentry {
width: 100%;
Expand Down

0 comments on commit 198d6fa

Please sign in to comment.