vagrant/website/source/assets/stylesheets/_logos.scss

40 lines
507 B
SCSS
Raw Normal View History

2017-03-28 01:19:52 +00:00
svg.logo {
&.color {
opacity: 1.0;
path.text {
fill: $black;
opacity: 1.0;
}
path.front {
fill: $vagrant-blue;
opacity: 1.0;
}
2017-04-06 21:33:42 +00:00
path.shadow {
2017-03-28 01:19:52 +00:00
fill: $vagrant-blue-dark;
opacity: 1.0;
}
}
// The default logo class is the colored version
@extend .color;
&.white {
opacity: 1.0;
path.text {
fill: $white;
}
2017-04-06 21:33:42 +00:00
path.front, path.shadow {
2017-03-28 01:19:52 +00:00
fill: $white;
}
path.front {
opacity: 0.7;
}
}
}