|
@ -5,6 +5,7 @@ |
|
|
|
|
|
|
|
|
$text-color: #000; |
|
|
$text-color: #000; |
|
|
$link-color: #fefe5b; |
|
|
$link-color: #fefe5b; |
|
|
|
|
|
$link-background-color: #008106; |
|
|
$background-color: #000084; |
|
|
$background-color: #000084; |
|
|
$background-contrast-color: #bbbbbb; |
|
|
$background-contrast-color: #bbbbbb; |
|
|
|
|
|
|
|
@ -38,21 +39,35 @@ a { |
|
|
* |
|
|
* |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
|
|
|
nav { |
|
|
|
|
|
|
|
|
.navbar { |
|
|
|
|
|
position: fixed; |
|
|
|
|
|
top: 0; |
|
|
|
|
|
left: 0; |
|
|
|
|
|
width: 100%; |
|
|
|
|
|
text-align: center; |
|
|
|
|
|
background-color: $background-contrast-color; |
|
|
|
|
|
|
|
|
ul { |
|
|
ul { |
|
|
list-style: none; |
|
|
list-style: none; |
|
|
border: 3px solid #000; |
|
|
|
|
|
margin: 0; |
|
|
margin: 0; |
|
|
padding: 0.6em 0.8em; |
|
|
padding: 0.6em 0.8em; |
|
|
|
|
|
|
|
|
a { |
|
|
|
|
|
display: block; |
|
|
|
|
|
padding: 0.1em; |
|
|
|
|
|
margin: -0.1em; |
|
|
|
|
|
|
|
|
li { |
|
|
|
|
|
display: inline-block; |
|
|
|
|
|
|
|
|
|
|
|
a { |
|
|
|
|
|
display: inline-block; |
|
|
|
|
|
padding: 0.1em; |
|
|
|
|
|
|
|
|
&:hover, &.current { |
|
|
|
|
|
color: #fff; |
|
|
|
|
|
background-color: $text-color; |
|
|
|
|
|
|
|
|
&:hover { |
|
|
|
|
|
background-color: $link-background-color; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
&.current { |
|
|
|
|
|
a { |
|
|
|
|
|
background-color: $link-background-color; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -114,25 +129,6 @@ footer { |
|
|
color: $link-color; |
|
|
color: $link-color; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.icon-tiny-hamburger-open, .icon-tiny-hamburger-close { |
|
|
|
|
|
position: absolute; |
|
|
|
|
|
top: 3px; |
|
|
|
|
|
transition: transform .2s; |
|
|
|
|
|
margin: 3px; |
|
|
|
|
|
|
|
|
|
|
|
&:after { |
|
|
|
|
|
content: '\2bc5'; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon-tiny-hamburger-open { |
|
|
|
|
|
transform: rotate(0deg); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon-tiny-hamburger-close { |
|
|
|
|
|
transform: rotate(180deg); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* tiny-tiny-hamburger |
|
|
* tiny-tiny-hamburger |
|
@ -140,7 +136,7 @@ footer { |
|
|
* |
|
|
* |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
|
|
|
.tiny-hamburger { |
|
|
|
|
|
|
|
|
.tiny-one-page { |
|
|
&__inner { |
|
|
&__inner { |
|
|
padding: 4px 8px 5px; |
|
|
padding: 4px 8px 5px; |
|
|
} |
|
|
} |
|
@ -170,30 +166,3 @@ footer { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.navbar { |
|
|
|
|
|
position: fixed; |
|
|
|
|
|
width: 100%; |
|
|
|
|
|
text-align: center; |
|
|
|
|
|
background-color: white; |
|
|
|
|
|
|
|
|
|
|
|
li { |
|
|
|
|
|
display: inline-block; |
|
|
|
|
|
margin: 0 0.3em; |
|
|
|
|
|
|
|
|
|
|
|
a { |
|
|
|
|
|
display: block; |
|
|
|
|
|
transition: all .1s ease-in-out; |
|
|
|
|
|
|
|
|
|
|
|
&:hover { |
|
|
|
|
|
transform: scale(1.3); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
&.current { |
|
|
|
|
|
a { |
|
|
|
|
|
transform: scale(1.3); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|