open-consul/website/source/assets/stylesheets/_logos.scss
RJ Spiker 8c11e3a4fc website - font and brand updates (#6716)
* website - font and brand updates

* sidebar font-size adjustments and scss cleanup

* adjust nav and inline code styles
2019-11-06 13:53:36 -05:00

52 lines
650 B
SCSS

svg.logo {
&.color {
opacity: 1.0;
path.text {
fill: $black;
opacity: 1.0;
}
path.center-c {
fill: $consul-d1;
opacity: 1.0;
}
path.circles {
fill: $consul;
opacity: 1.0;
}
path.c {
fill: $consul;
opacity: 1.0;
}
}
// The default logo class is the colored version
@extend .color;
&.white {
opacity: 1.0;
path.text {
fill: $white;
}
path.center-c {
fill: $white;
opacity: 0.7;
}
path.circles {
fill: $white;
opacity: 1.0;
}
path.c {
fill: $white;
opacity: 1.0;
}
}
}