packer-cn/website/source/assets/stylesheets/_logos.scss

40 lines
495 B
SCSS
Raw Normal View History

2017-03-28 16:04:27 -04:00
svg.logo {
&.color {
opacity: 1.0;
path.text {
fill: $black;
opacity: 1.0;
}
path.p-front {
2019-10-04 18:10:07 -04:00
fill: #1DAEFF;
2017-03-28 16:04:27 -04:00
opacity: 1.0;
}
path.p-back {
2019-10-04 18:10:07 -04:00
fill: #1D94DD;
2017-03-28 16:04:27 -04:00
opacity: 1.0;
}
}
// The default logo class is the colored version
@extend .color;
&.white {
opacity: 1.0;
path.text {
fill: $white;
}
path.p-front, path.p-back {
fill: $white;
}
path.p-back {
opacity: 0.7;
}
}
}