1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-06-10 11:35:14 +02:00
site/_src/_assets/styles/bigchain/_logo.scss

52 lines
611 B
SCSS

//
// Logo
// ---
// bigchaindb.com
//
// default logo
.logo {
fill: $brand-main-blue;
color: $brand-main-green; // the fill="currentColor" trick
width: 300px;
height: 60px;
display: block;
}
//
// Color modifiers
//
.logo--white {
fill: #fff;
color: #fff;
}
.logo--white--green {
fill: #fff;
color: $brand-main-green;
}
.logo--dark {
fill: $brand-main-blue-dark;
}
//
// size modifiers
//
.logo--sm {
width: 140px;
height: 30px;
}
.logo--full {
display: block;
width: 100%;
height: auto;
}
.logo--services {
color: $brand-main-violet;
}