Add screenshots to dev tools

Card screenshots: round corners

Dev tools screenshots: update with no apex banner
This commit is contained in:
mDuo13
2022-08-26 13:32:14 -07:00
parent 5765b15d91
commit eb1cf15002
16 changed files with 23 additions and 5 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
img/dev-tools/bithomp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
img/dev-tools/explorer.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
img/dev-tools/faucets.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

BIN
img/dev-tools/rpc-tool.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
img/dev-tools/tokenlist.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
img/dev-tools/xrpscan.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -44,7 +44,7 @@
position: absolute; position: absolute;
top: 0; top: 0;
} }
.dot { .dot {
height: 16px; height: 16px;
width: 16px; width: 16px;
@@ -91,7 +91,7 @@
.contribute_3 { .contribute_3 {
&::before { &::before {
background: -webkit-linear-gradient(left, rgba(226, 76, 255, 1),rgba(154, 82, 255, 1) ); background: -webkit-linear-gradient(left, rgba(226, 76, 255, 1),rgba(154, 82, 255, 1) );
} }
.dot { .dot {
border-color: #C000E5; border-color: #C000E5;
} }
@@ -106,7 +106,9 @@
} }
.card > img {
border-radius: $border-radius-lg $border-radius-lg 0 0;
}
.card-body > p, .card-body > p,
.card-body > p:not(:last-child) { .card-body > p:not(:last-child) {

View File

@@ -19,7 +19,7 @@
</section> </section>
<section class="py-10"> <section class="py-10">
<div class="mx-auto text-lg-left"> <div class="mx-auto text-lg-left">
<div className="sticky"> <div className="sticky">
@@ -44,6 +44,7 @@
"description": "description":
"View validations of new ledger versions in real-time, or chart the location of servers in the XRP Ledger.", "View validations of new ledger versions in real-time, or chart the location of servers in the XRP Ledger.",
"href": "https://livenet.xrpl.org", "href": "https://livenet.xrpl.org",
"img": "img/dev-tools/explorer.png"
}, },
{ {
"id": "bithomp-explorer", "id": "bithomp-explorer",
@@ -51,6 +52,7 @@
"description": "description":
"Explore public ledger data including accounts' transaction history and known names.", "Explore public ledger data including accounts' transaction history and known names.",
"href": "https://bithomp.com/", "href": "https://bithomp.com/",
"img": "img/dev-tools/bithomp.png"
}, },
{ {
"id": "xrpscan", "id": "xrpscan",
@@ -58,6 +60,7 @@
"description": "description":
"Explore ledger activity, view amendment voting in real-time, and get account information. API access is also available.", "Explore ledger activity, view amendment voting in real-time, and get account information. API access is also available.",
"href": "https://xrpscan.com/", "href": "https://xrpscan.com/",
"img": "img/dev-tools/xrpscan.png"
}, },
{ {
"id": "token-list", "id": "token-list",
@@ -65,12 +68,14 @@
"description": "description":
"See all tokens issued in the XRP Ledger and use preset tools to issue custom tokens at the click of a button.", "See all tokens issued in the XRP Ledger and use preset tools to issue custom tokens at the click of a button.",
"href": "https://xumm.community/tokens", "href": "https://xumm.community/tokens",
"img": "img/dev-tools/tokenlist.png"
}, },
] %} ] %}
<h4> {% trans %}Explorers{% endtrans %}</h4> <h4> {% trans %}Explorers{% endtrans %}</h4>
<div class="row row-cols-1 row-cols-lg-3 card-deck"> <div class="row row-cols-1 row-cols-lg-3 card-deck">
{% for card in explorers_tools%} {% for card in explorers_tools%}
<a class="card" href="{{card.href}}" target="_blank" id="{{card.id}}"> <a class="card" href="{{card.href}}" target="_blank" id="{{card.id}}">
{% if card.img %}<img src="{{card.img}}" alt="{{card.title}} Screenshot" />{% endif %}
<div class="card-body"> <div class="card-body">
<h4 class="card-title h5">{{card.title}}</h4> <h4 class="card-title h5">{{card.title}}</h4>
<p class="card-text">{{card.description}}</p> <p class="card-text">{{card.description}}</p>
@@ -89,6 +94,7 @@
"description": "description":
"Send sample requests and get responses from the rippled API. ", "Send sample requests and get responses from the rippled API. ",
"href": "websocket-api-tool.html", "href": "websocket-api-tool.html",
"img": "img/dev-tools/websocket-tool.png"
}, },
{ {
"id": "rpc", "id": "rpc",
@@ -96,6 +102,7 @@
"description": "description":
"Print raw information about an XRP Ledger account, transaction, or ledger.", "Print raw information about an XRP Ledger account, transaction, or ledger.",
"href": "xrp-ledger-rpc-tool.html", "href": "xrp-ledger-rpc-tool.html",
"img": "img/dev-tools/rpc-tool.png"
}, },
{ {
"id": "technical-explorer", "id": "technical-explorer",
@@ -103,6 +110,7 @@
"description": "description":
"Browse API objects from the ledger with real-time updates. ", "Browse API objects from the ledger with real-time updates. ",
"href": "https://explorer.xrplf.org/", "href": "https://explorer.xrplf.org/",
"img": "img/dev-tools/technical-explorer.png"
}, },
{ {
"id": "faucets", "id": "faucets",
@@ -110,6 +118,7 @@
"description": "description":
"Get credentials and test-XRP for XRP Ledger Testnet or Devnet.", "Get credentials and test-XRP for XRP Ledger Testnet or Devnet.",
"href": "xrp-testnet-faucet.html", "href": "xrp-testnet-faucet.html",
"img": "img/dev-tools/faucets.png"
}, },
{ {
"id": "trasaction-sender", "id": "trasaction-sender",
@@ -117,11 +126,13 @@
"description": "description":
"Test how your code handles various XRP Ledger transactions by sending them over the Testnet to the address.", "Test how your code handles various XRP Ledger transactions by sending them over the Testnet to the address.",
"href": "tx-sender.html", "href": "tx-sender.html",
"img": "img/dev-tools/transaction-sender.png"
}, },
]%} ]%}
<div class="row row-cols-1 row-cols-lg-3 card-deck"> <div class="row row-cols-1 row-cols-lg-3 card-deck">
{% for card in api_access_tools %} {% for card in api_access_tools %}
<a class="card" href="{{card.href}}" target="_blank" id="{{card.id}}"> <a class="card" href="{{card.href}}" target="_blank" id="{{card.id}}">
{% if card.img %}<img src="{{card.img}}" alt="{{card.title}} Screenshot" />{% endif %}
<div class="card-body"> <div class="card-body">
<h4 class="card-title h5">{{card.title}}</h4> <h4 class="card-title h5">{{card.title}}</h4>
<p class="card-text">{{card.description}}</p> <p class="card-text">{{card.description}}</p>
@@ -139,6 +150,7 @@
"title": "Domain Verification Checker", "title": "Domain Verification Checker",
"description": "Verify your validator's domain.", "description": "Verify your validator's domain.",
"href": "validator-domain-verifier.html", "href": "validator-domain-verifier.html",
"img": "img/dev-tools/domain-checker.png"
}, },
{ {
"id":"xrp-ledger", "id":"xrp-ledger",
@@ -146,6 +158,7 @@
"description": "description":
"Verify that your xrp-ledger.toml file is set up properly.", "Verify that your xrp-ledger.toml file is set up properly.",
"href": "xrp-ledger-toml-checker.html", "href": "xrp-ledger-toml-checker.html",
"img": "img/dev-tools/toml-checker.png"
}, },
{ {
"id": "binary-visualizer", "id": "binary-visualizer",
@@ -153,6 +166,7 @@
"description": "description":
"Parse the XRP Ledger's native binary format with a visual representation breaking down the raw structure into its parts.", "Parse the XRP Ledger's native binary format with a visual representation breaking down the raw structure into its parts.",
"href": "https://richardah.github.io/xrpl-binary-visualizer/", "href": "https://richardah.github.io/xrpl-binary-visualizer/",
"img": "img/dev-tools/binary-visualizer.png"
}, },
{ {
"id": "token-metadata-lookup", "id": "token-metadata-lookup",
@@ -160,11 +174,13 @@
"description": "description":
"Query known information about any token issued on the XRP Ledger.", "Query known information about any token issued on the XRP Ledger.",
"href": "https://xrplmeta.org/", "href": "https://xrplmeta.org/",
"img": "img/dev-tools/token-metadata.png"
}, },
]%} ]%}
<div class="row row-cols-1 row-cols-lg-3 card-deck"> <div class="row row-cols-1 row-cols-lg-3 card-deck">
{% for card in other %} {% for card in other %}
<a class="card" href="{{card.href}}" target="_blank" id="{{card.id}}"> <a class="card" href="{{card.href}}" target="_blank" id="{{card.id}}">
{% if card.img %}<img src="{{card.img}}" alt="{{card.title}} Screenshot" />{% endif %}
<div class="card-body"> <div class="card-body">
<h4 class="card-title h5">{{card.title}}</h4> <h4 class="card-title h5">{{card.title}}</h4>
<p class="card-text">{{card.description}}</p> <p class="card-text">{{card.description}}</p>