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

75 lines
1.0 KiB
SCSS
Raw Normal View History

2015-12-20 05:58:40 +01:00
//
// Logo
// ---
2017-05-29 21:15:48 +02:00
// bigchaindb.com
2015-12-20 05:58:40 +01:00
//
// default logo
.logo {
2016-02-02 20:23:02 +01:00
fill: $brand-main-blue;
color: $brand-main-green; // the fill="currentColor" trick
2015-12-20 05:58:40 +01:00
width: 300px;
height: 60px;
display: block;
2015-12-20 05:58:40 +01:00
}
2016-02-02 19:33:37 +01:00
//
// Color modifiers
//
.logo--white {
fill: #fff;
color: #fff;
}
2016-02-02 20:23:02 +01:00
.logo--white--green {
fill: #fff;
color: $brand-main-green;
}
2017-05-18 19:33:14 +02:00
.logo--dark {
fill: $brand-main-blue-dark;
}
2016-02-02 19:33:37 +01:00
2015-12-20 05:58:40 +01:00
//
// size modifiers
//
.logo--sm {
width: 140px;
height: 30px;
2015-12-20 05:58:40 +01:00
}
.logo--full {
display: block;
2015-12-22 16:07:37 +01:00
width: 100%;
2015-12-20 05:58:40 +01:00
height: auto;
}
2017-05-18 19:33:14 +02:00
.logo-enterprise {
.logo {
@extend .logo--sm;
display: inline-block;
}
}
.logo-enterprise--text {
font-size: $font-size-h3 * 1.05;
display: inline-block;
color: #fff;
padding-left: $spacer;
position: relative;
top: -3px;
2017-05-31 18:43:00 +02:00
&:before {
2017-05-18 19:33:14 +02:00
content: '';
position: absolute;
left: $spacer / 3;
width: 1px;
height: 100%;
background: $brand-main-violet;
display: block;
}
2015-12-20 05:58:40 +01:00
}