mirror of
https://github.com/ipdb/website.git
synced 2024-11-13 16:54:50 +01:00
47 lines
734 B
SCSS
47 lines
734 B
SCSS
.hero {
|
|
background: $brand-03;
|
|
padding-top: $spacer * 2;
|
|
padding-bottom: $spacer * 2;
|
|
min-height: 100vh;
|
|
|
|
&,
|
|
.hero__title,
|
|
.hero__action {
|
|
color: #fff;
|
|
}
|
|
|
|
.menu--main {
|
|
background: transparent;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.menu__link {
|
|
color: rgba(#fff, .8);
|
|
|
|
&:after {
|
|
background: rgba(#fff, .8);
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&.active {
|
|
color: #fff;
|
|
|
|
&:after {
|
|
background: #fff;
|
|
}
|
|
|
|
.logo {
|
|
fill: #fff;
|
|
}
|
|
}
|
|
}
|
|
|
|
.logo {
|
|
fill: rgba(#fff, .95);
|
|
}
|
|
}
|