1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-02 08:21:58 +01:00
site/_src/_assets/styles/bigchain/_logo.scss
Matthias Kretschmann 2705fa90e3 updated branding (#99)
- new typeface: Europa, loaded from Typekit
- new colors, reduced gray tones
- new hero image
- new gradient overlay
- new buttons
- bigger default font sizes
- ditch caps for action items
2017-04-10 17:14:35 +02:00

52 lines
582 B
SCSS

//
// Logo
// ---
// bigchain.io
//
// 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;
}
//
// size modifiers
//
.logo--sm {
width: 140px;
height: 30px;
}
.logo--full {
display: block;
width: 100%;
height: auto;
}
//
// color modifiers
//
.logo--dark {
fill: $brand-main-blue-dark;
}