open-consul/website/source/assets/stylesheets/_logos.scss
Seth Vargo 55281ac728
Move to new branding
This JUST moves over to the new branding. Once we get this in, I can
work on making the sidebar links and splitting out the API into its own
section.
2017-03-30 18:46:50 -04:00

52 lines
667 B
SCSS

svg.logo {
&.color {
opacity: 1.0;
path.text {
fill: $black;
opacity: 1.0;
}
path.center-c {
fill: $consul-pink-dark;
opacity: 1.0;
}
path.circles {
fill: $consul-pink;
opacity: 1.0;
}
path.c {
fill: $consul-pink;
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;
}
}
}