mirror of
https://github.com/inspec/inspec
synced 2024-12-19 01:23:50 +00:00
0cbedb1579
The global message was removed during the redesign. Adding it back to promote ChefConf. Also adding the upcoming NYC meetup to the front screen. Signed-off-by: Adam Leff <adam@leff.co>
47 lines
No EOL
705 B
SCSS
47 lines
No EOL
705 B
SCSS
#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;
|
|
}
|
|
} |