2017-03-29 21:09:13 +00:00
|
|
|
#global-message {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 95;
|
|
|
|
top: -200px;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 15px 0;
|
|
|
|
background-color: $color_blue_shade_2;
|
|
|
|
color: $color_white;
|
|
|
|
font-size: 15px;
|
|
|
|
transition: top 0.3s ease;
|
|
|
|
|
|
|
|
&.is-visible {
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dismiss-button {
|
|
|
|
margin: 3px;
|
|
|
|
color: $color_white;
|
|
|
|
cursor: pointer;
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a, a:hover, a:visited, a:active, a:link {
|
|
|
|
color: $color_white;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 649px) {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include nav-small {
|
|
|
|
position: fixed;
|
|
|
|
top: -200px;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include nav-large {
|
|
|
|
z-index: 1100;
|
|
|
|
}
|
|
|
|
}
|