assets cleanup for smaller page sizes
* isolate some SVGs and don't include in sprite * use smaller, cropped image for all default headers
@ -40,7 +40,7 @@ social:
|
|||||||
url: https://www.linkedin.com/company/bigchaindb
|
url: https://www.linkedin.com/company/bigchaindb
|
||||||
youtube:
|
youtube:
|
||||||
title: YouTube
|
title: YouTube
|
||||||
url: https://www.youtube.com/channel/UCh0Y3p3kJ9oyz9CRgZaO05w
|
url: https://www.youtube.com/bigchaindb
|
||||||
|
|
||||||
address:
|
address:
|
||||||
company: BigchainDB GmbH
|
company: BigchainDB GmbH
|
||||||
|
BIN
_src/_assets/images/header-berlin.jpg
Normal file
After Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 130 KiB After Width: | Height: | Size: 130 KiB |
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 85 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 104 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
@ -46,6 +46,7 @@ stickyNav()
|
|||||||
// BigchainDB transaction tool
|
// BigchainDB transaction tool
|
||||||
//
|
//
|
||||||
|
|
||||||
|
// makes this file huuuuge, consider loading this as additional request
|
||||||
//=include bigchaindb-driver/dist/browser/bigchaindb-driver.window.min.js
|
//=include bigchaindb-driver/dist/browser/bigchaindb-driver.window.min.js
|
||||||
|
|
||||||
window.addEventListener('DOMContentLoaded', function domload(event) {
|
window.addEventListener('DOMContentLoaded', function domload(event) {
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
.header {
|
.header {
|
||||||
@extend .background--photo;
|
@extend .background--photo;
|
||||||
|
background-image: url('../img/header-berlin.jpg');
|
||||||
|
background-position: center bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header__content {
|
.header__content {
|
||||||
|
@ -154,14 +154,14 @@ js: page-features.min.js
|
|||||||
<h2 class="stacks__title">Traditional Stack</h2>
|
<h2 class="stacks__title">Traditional Stack</h2>
|
||||||
<figure class="stacks__image">
|
<figure class="stacks__image">
|
||||||
<figcaption>BigchainDB can be seamlessly integrated into the traditional stack as a blockchain database for decentralized timestamping, certificates, smart contracts and transactions.</figcaption>
|
<figcaption>BigchainDB can be seamlessly integrated into the traditional stack as a blockchain database for decentralized timestamping, certificates, smart contracts and transactions.</figcaption>
|
||||||
<img class="img--responsive" src="/assets/img/stack-traditional.svg" />
|
<img class="img--responsive" src="/assets/img/nosprite/stack-traditional.svg" />
|
||||||
</figure>
|
</figure>
|
||||||
</div>
|
</div>
|
||||||
<div class="grid__col">
|
<div class="grid__col">
|
||||||
<h2 class="stacks__title">Blockchain Stack</h2>
|
<h2 class="stacks__title">Blockchain Stack</h2>
|
||||||
<figure class="stacks__image">
|
<figure class="stacks__image">
|
||||||
<figcaption>BigchainDB fills a missing gap in the emerging decentralized stack as a blockchain database that complements existing platforms, processing and file systems.</figcaption>
|
<figcaption>BigchainDB fills a missing gap in the emerging decentralized stack as a blockchain database that complements existing platforms, processing and file systems.</figcaption>
|
||||||
<img class="img--responsive" src="/assets/img/stack-blockchain.svg" />
|
<img class="img--responsive" src="/assets/img/nosprite/stack-blockchain.svg" />
|
||||||
</figure>
|
</figure>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -161,7 +161,7 @@ conn.postTransaction(txSigned)
|
|||||||
<aside class="starbase starbase--server">
|
<aside class="starbase starbase--server">
|
||||||
<div class="row row--wide">
|
<div class="row row--wide">
|
||||||
<figure class="starbase__image">
|
<figure class="starbase__image">
|
||||||
<img class="img--responsive" src="/assets/img/starbase-server.svg" alt="Starbase" width="1111" height="343">
|
<img class="img--responsive" src="/assets/img/nosprite/starbase-server.svg" alt="Starbase" width="1111" height="343">
|
||||||
</figure>
|
</figure>
|
||||||
</div>
|
</div>
|
||||||
</aside>
|
</aside>
|
||||||
@ -198,7 +198,7 @@ conn.postTransaction(txSigned)
|
|||||||
<aside class="starbase starbase--drivers">
|
<aside class="starbase starbase--drivers">
|
||||||
<div class="row row--wide">
|
<div class="row row--wide">
|
||||||
<figure class="starbase__image">
|
<figure class="starbase__image">
|
||||||
<img class="img--responsive" src="/assets/img/starbase-drivers.svg" alt="Starbase" width="1060" height="166">
|
<img class="img--responsive" src="/assets/img/nosprite/starbase-drivers.svg" alt="Starbase" width="1060" height="166">
|
||||||
</figure>
|
</figure>
|
||||||
</div>
|
</div>
|
||||||
</aside>
|
</aside>
|
||||||
|
@ -211,7 +211,7 @@ export const js = () =>
|
|||||||
//
|
//
|
||||||
// SVG sprite
|
// SVG sprite
|
||||||
//
|
//
|
||||||
export const svg = () => src(SRC + '_assets/images/**/*.svg')
|
export const svg = () => src(SRC + '_assets/images/*.svg')
|
||||||
.pipe($.if(isProduction || isStaging, $.imagemin({
|
.pipe($.if(isProduction || isStaging, $.imagemin({
|
||||||
svgoPlugins: [{ removeRasterImages: true }]
|
svgoPlugins: [{ removeRasterImages: true }]
|
||||||
})))
|
})))
|
||||||
|