40 lines
507 B
SCSS
40 lines
507 B
SCSS
svg.logo {
|
|
&.color {
|
|
opacity: 1.0;
|
|
|
|
path.text {
|
|
fill: $black;
|
|
opacity: 1.0;
|
|
}
|
|
|
|
path.front {
|
|
fill: $vagrant-blue;
|
|
opacity: 1.0;
|
|
}
|
|
|
|
path.shadow {
|
|
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;
|
|
}
|
|
|
|
path.front, path.shadow {
|
|
fill: $white;
|
|
}
|
|
|
|
path.front {
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
}
|