1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-01 15:55:36 +01:00
site/_src/_assets/styles/bigchain/_logo.scss

51 lines
562 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: 150px;
height: 15px;
}
.logo--full {
display: block;
width: 100%;
height: auto;
}
//
// color modifiers
//
.logo--dark {
fill: $brand-main-blue-dark;
}