Commit 105f5ba3 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Reduce header font a bit. Moved to mixin header font styles

parent d7eb3145
...@@ -57,4 +57,13 @@ ...@@ -57,4 +57,13 @@
@mixin solid-shade { @mixin solid-shade {
@include box-shadow(0 0 0 3px #f1f1f1); @include box-shadow(0 0 0 3px #f1f1f1);
} }
\ No newline at end of file
@mixin header-font {
color: $style_color;
text-shadow: 0 1px 1px #FFF;
font-family: 'Korolev', sans-serif;
font-size: 28px;
line-height: 48px;
font-weight: normal;
}
...@@ -44,14 +44,9 @@ header { ...@@ -44,14 +44,9 @@ header {
background: url('logo_dark.png') no-repeat 0px 2px; background: url('logo_dark.png') no-repeat 0px 2px;
float: left; float: left;
margin-left: 2px; margin-left: 2px;
font-size: 30px;
line-height: 48px;
font-weight: normal;
color: $style_color;
text-shadow: 0 1px 1px #FFF;
padding-left: 45px; padding-left: 45px;
height: 40px; height: 40px;
font-family: 'Korolev', sans-serif; @include header-font;
} }
} }
} }
...@@ -66,12 +61,7 @@ header { ...@@ -66,12 +61,7 @@ header {
float: left; float: left;
margin: 0; margin: 0;
margin-right: 30px; margin-right: 30px;
font-size: 30px; @include header-font;
line-height: 48px;
font-weight: normal;
color: $style_color;
text-shadow: 0 1px 1px #FFF;
font-family: 'Korolev', sans-serif;
} }
/** /**
......
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
$primary_color: #2FA0BB; $primary_color: #2FA0BB;
$link_color: #3A89A3; $link_color: #3A89A3;
$style_color: #474D57; $style_color: #474D57;
$hover: #D9EDF7; $hover: #D9EDF7;
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment