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

40 lines
490 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 {
2019-10-07 20:29:26 +00:00
fill: #1563FF;
2017-03-28 01:19:52 +00:00
opacity: 1.0;
}
2017-04-06 21:33:42 +00:00
path.shadow {
2019-10-07 20:29:26 +00:00
fill: #104EB2;
2017-03-28 01:19:52 +00:00
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;
}
}
}