open-nomad/website/source/assets/stylesheets/_logos.scss

63 lines
805 B
SCSS
Raw Normal View History

2017-03-28 03:37:59 +00:00
svg.logo {
&.color {
opacity: 1.0;
path.top {
fill: $nomad-green;
opacity: 1.0;
}
path.left {
2017-07-20 16:50:29 +00:00
fill: $nomad-green;
2017-03-28 03:37:59 +00:00
opacity: 1.0;
}
path.right {
2017-07-20 16:50:29 +00:00
fill: $nomad-green-dark;
2017-03-28 03:37:59 +00:00
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;
2017-07-20 16:50:29 +00:00
opacity: 1.0;
2017-03-28 03:37:59 +00:00
}
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;
}
}
}