mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
51 lines
561 B
SCSS
51 lines
561 B
SCSS
//
|
|
// Logo
|
|
// ---
|
|
// bigchain.io
|
|
//
|
|
|
|
// default logo
|
|
.logo {
|
|
fill: $brand-main-blue;
|
|
color: $brand-main-green; // the fill="currentColor" trick
|
|
width: 300px;
|
|
height: 30px;
|
|
}
|
|
|
|
|
|
//
|
|
// Color modifiers
|
|
//
|
|
.logo--white {
|
|
fill: #fff;
|
|
color: #fff;
|
|
}
|
|
|
|
.logo--white--green {
|
|
fill: #fff;
|
|
color: $brand-main-green;
|
|
}
|
|
|
|
|
|
//
|
|
// size modifiers
|
|
//
|
|
.logo--sm {
|
|
width: 75px;
|
|
height: 15px;
|
|
}
|
|
|
|
.logo--full {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
|
|
//
|
|
// color modifiers
|
|
//
|
|
.logo--dark {
|
|
fill: $brand-main-blue-dark;
|
|
}
|