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