switch feature assets
BIN
_src/_assets/img/feature-01.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 28 KiB |
BIN
_src/_assets/img/feature-01@2x.jpg
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
_src/_assets/img/feature-02.jpg
Normal file
After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 31 KiB |
BIN
_src/_assets/img/feature-02@2x.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
_src/_assets/img/feature-03.jpg
Normal file
After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 50 KiB |
BIN
_src/_assets/img/feature-03@2x.jpg
Normal file
After Width: | Height: | Size: 68 KiB |
BIN
_src/_assets/img/feature-04.jpg
Normal file
After Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 27 KiB |
BIN
_src/_assets/img/feature-04@2x.jpg
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
_src/_assets/img/feature-05.jpg
Normal file
After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 30 KiB |
BIN
_src/_assets/img/feature-05@2x.jpg
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
_src/_assets/img/feature-06.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 42 KiB |
BIN
_src/_assets/img/feature-06@2x.jpg
Normal file
After Width: | Height: | Size: 29 KiB |
@ -17,14 +17,17 @@
|
||||
}
|
||||
|
||||
.feature__image {
|
||||
margin: 0;
|
||||
margin: 0 auto;
|
||||
background: $brand-05;
|
||||
border-radius: $border-radius;
|
||||
min-height: 9rem;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
overflow: hidden;
|
||||
max-width: 400px;
|
||||
|
||||
svg {
|
||||
@media ($screen-sm) {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
max-width: 100%;
|
||||
|
@ -11,22 +11,22 @@ intro:
|
||||
features:
|
||||
- title: "A single public database"
|
||||
text: "IPDB gives you easy access to a single public, decentralized database with added blockchain characteristics—all built on top of open source BigchainDB."
|
||||
image: feature-01.png
|
||||
image: feature-01
|
||||
- title: "No installation required—just sign up and go"
|
||||
text: "All you have to do is sign up to start using IPDB. IPDB Caretakers will handle running a BigchainDB network for you."
|
||||
image: feature-02.png
|
||||
image: feature-02
|
||||
- title: "Store any data, permanently"
|
||||
text: "IPDB allows you to store data indefinitely. It provides blockchain-style tamper-resistance and database-style queryability to give you the best of both worlds."
|
||||
image: feature-03.png
|
||||
image: feature-03
|
||||
- title: "Predictable pricing"
|
||||
text: "Use of IPDB is not based on a cryptocurrency, so you don’t have to worry about a spike in the price making it too expensive to run your application. Usage of IPDB during the test net phase is free of charge."
|
||||
image: feature-04.png
|
||||
image: feature-04
|
||||
- title: "Governed by Caretakers"
|
||||
text: "The IPDB Foundation is run by its internet-loving Caretakers around the world."
|
||||
image: feature-05.png
|
||||
image: feature-05
|
||||
- title: "A Dashboard for your IPDB apps"
|
||||
text: "Manage your apps, give users access, and get statistical insights about your app’s API usage."
|
||||
image: feature-06.png
|
||||
image: feature-06
|
||||
list:
|
||||
- API usage statistics
|
||||
- Access control
|
||||
|
@ -76,11 +76,7 @@ css: page-front
|
||||
<div class="grid grid--full grid-small--half grid-medium--columns grid--center grid--gutters">
|
||||
<div class="grid__col grid__col--2">
|
||||
<figure class="feature__image">
|
||||
<!-- <svg aria-labelledby="title">
|
||||
<title>{{ feature.title }}</title>
|
||||
<use xlink:href="/assets/img/sprite.svg#{{ feature.image }}"></use>
|
||||
</svg> -->
|
||||
<img src="/assets/img/{{ feature.image }}" alt="">
|
||||
<img src="/assets/img/{{ feature.image }}.jpg" srcset="/assets/img/{{ feature.image }}.jpg 1x, /assets/img/{{ feature.image }}@2x.jpg 2x" alt="{{ feature.title }}" width="400">
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
|