Files
ukraine-timemap/src/scss/header.scss
Lachlan Kermode 8b507fde96 some styling fixes (#178)
* logos at bottom

* use GT-Zirkon font

* update filter/category copy

* add a fallback font

* stop tracking

* make timeline smaller for smaller laptops

* fix for firefox responsive intropopup

* mobile fallback

* update design system version
2020-10-29 18:14:32 +01:00

62 lines
1.0 KiB
SCSS

.header {
background: #000000;
position: fixed;
padding: 10px;
z-index: 10;
top: 10px;
right: 10px;
height: 40px;
width: 240px;
box-sizing: border-box;
text-overflow: ellipsis;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
cursor: pointer;
.header-title {
a {
color: darken($offwhite, 5%);
font-size: $xlarge;
letter-spacing: 0.1em;
float: left;
text-transform: uppercase;
}
p {
margin: 0;
}
}
.side-menu-burg {
right: 10px;
span,
span::before,
span::after {
background: $midwhite;
}
}
&:hover {
.side-menu-burg {
span {
transition: 0.2s ease;
background: $offwhite;
}
span::before {
transition: 0.2s ease;
top: -6px;
background: $offwhite;
}
span::after {
transition: 0.2s ease;
bottom: -6px;
background: $offwhite;
}
}
.header-title a {
transition: 0.2s ease;
color: $offwhite;
}
}
}