inspec/www/source/stylesheets/_global-message.scss
Maggie Walker 81f8e0e8bb Add global message to website
Adds a global message that will appear above the nav that can
be customized to advertise upcoming events.
2016-09-30 09:39:14 -07:00

47 lines
No EOL
680 B
SCSS

#global-message {
position: fixed;
z-index: 95;
top: -200px;
right: 0;
left: 0;
padding: 15px 0;
background-color: $inspec-blue;
color: $white;
font-size: 15px;
transition: top 0.3s ease;
&.is-visible {
top: 0;
}
.dismiss-button {
margin: 3px;
color: $white;
cursor: pointer;
font-weight: 700;
.fa {
margin-right: 5px;
}
}
a, a:hover, a:visited, a:active, a:link {
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;
}
}