Skip to content

Commit f764523

Browse files
committed
Darker blue for nav-bar.
1 parent f99c4f8 commit f764523

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

sass/demo.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ body{
1212
}
1313
a{
1414
color: #0099cc;
15+
font-weight: 400;
1516
}
1617
h1,h2,h3,h4{
1718
color: #2072a7;
@@ -109,7 +110,7 @@ h1,h2,h3,h4{
109110
.title2{
110111
font-size:smaller;
111112
font-weight: normal;
112-
color: #b3e5fc;
113+
color: $color-navbar;
113114
}
114115

115116
@mixin mixin-badgeHeight($h) {

sass/header.scss

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77

88
@import "sass/variables";
99

10-
$width-toolbar-left:170px;
11-
$width-toolbar-top:620px;
10+
$width-toolbar-left: 170px;
11+
$width-toolbar-top: 620px;
1212

1313
// --- top navbar ---
1414
.evo-logo{
1515
float:left;
16+
line-height: 30px;
1617
font-size: 2em;
1718
margin: 10px 80px 20px 10px;
1819

@@ -53,7 +54,7 @@ $width-toolbar-top:620px;
5354
left:0;
5455
//opacity: .9;
5556
overflow: none;
56-
background-color: $color-header;
57+
background-color: $color-navbar;
5758
//border-bottom: #366092 solid 1px;
5859
min-height: 75px;
5960
width:100%;
@@ -132,7 +133,7 @@ $width-toolbar-top:620px;
132133
.evo-head-links{
133134
font-size: 1.5em;
134135
margin-top:5px;
135-
margin-left:-30px;
136+
margin-left:-40px;
136137
>li.spaced{
137138
margin-top:50px;
138139
@media only screen and (max-width: $screen2) {
@@ -156,7 +157,7 @@ $width-toolbar-top:620px;
156157

157158
// --- page title ---
158159
.evo-title,.evo-title2{
159-
background-color: $color-header2;
160+
background-color: $color-navbar;
160161
position: absolute; //fixed;
161162
z-index: 1002; // above bootstrap dropdown
162163
width: 100%;
@@ -234,5 +235,8 @@ $height-footer: 120px;
234235
height:$height-footer;
235236
text-align: center;
236237
font-size:smaller;
237-
color:$color-text-footer;
238+
color:$color-text-footer;
239+
a{
240+
color:$color-text-footer;
241+
}
238242
}

sass/variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ $color-title: #428bca;
1010
$color-cool: #92cddc;
1111
$color-disabled: silver;
1212

13+
1314
$color-border: #ddd;
1415

1516
// responsive design
@@ -21,8 +22,7 @@ $widthR1: 38%;
2122
$widthR2: 62%;
2223

2324
// top nav bar
24-
$color-header: #0099cc;//#1d365d
25-
$color-header2: #0099cc;//#1f497d; //#0077cc;
25+
$color-navbar: #336699;
2626
$color-header-link: #c6d9f0;
2727
$color-header-link-hover: #ffc107;//#ed991a;
2828

0 commit comments

Comments
 (0)