open-nomad/website/source/assets/stylesheets/_logos.scss
2017-07-24 11:35:42 -04:00

63 lines
805 B
SCSS

svg.logo {
&.color {
opacity: 1.0;
path.top {
fill: $nomad-green;
opacity: 1.0;
}
path.left {
fill: $nomad-green;
opacity: 1.0;
}
path.right {
fill: $nomad-green-dark;
opacity: 1.0;
}
path.n {
fill: $white;
opacity: 1.0;
}
path.text {
fill: $black;
opacity: 1.0;
}
}
// The default logo class is the colored version
@extend .color;
&.white {
opacity: 1.0;
path.top {
fill: $white;
opacity: 1.0;
}
path.left {
fill: $white;
opacity: 1.0;
}
path.right {
fill: $white;
opacity: 0.6;
}
path.n {
fill: $nomad-green;
opacity: 1.0;
}
path.text {
fill: $white;
opacity: 1.0;
}
}
}