Enhance payments integration styles and layout for improved responsiveness
- Added max-width and margin adjustments to the payments integration section for better alignment on larger screens. - Implemented responsive breakpoints for the payments integration section to ensure optimal display on medium and large devices. - Introduced new styles for light mode payment logos and embedded payments icons, enhancing visual consistency across the payments page.
BIN
static/img/uses/lightmode/payments/audd.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
static/img/uses/lightmode/payments/b2b-payment.png
Normal file
|
After Width: | Height: | Size: 894 B |
BIN
static/img/uses/lightmode/payments/coinpayments.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
static/img/uses/lightmode/payments/compliance.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
static/img/uses/lightmode/payments/cross-border.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
static/img/uses/lightmode/payments/digital-wallet.png
Normal file
|
After Width: | Height: | Size: 951 B |
BIN
static/img/uses/lightmode/payments/erop.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
static/img/uses/lightmode/payments/friipay.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
static/img/uses/lightmode/payments/merchant-settlement.png
Normal file
|
After Width: | Height: | Size: 1011 B |
BIN
static/img/uses/lightmode/payments/regulated.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
static/img/uses/lightmode/payments/ripple-black.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
static/img/uses/lightmode/payments/rlusd.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
static/img/uses/lightmode/payments/usdb.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
static/img/uses/lightmode/payments/usdc.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
static/img/uses/lightmode/payments/xsgd.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
@@ -1379,6 +1379,17 @@ body,
|
||||
.use-case-payments .payments-integration-section {
|
||||
.developer-tools {
|
||||
padding: 120px 0; /* Slightly less padding than default 180px */
|
||||
max-width: 1280px;
|
||||
margin: 0 auto;
|
||||
|
||||
@include media-breakpoint-down(lg) {
|
||||
max-width: 942px;
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
max-width: 608px;
|
||||
}
|
||||
|
||||
.container{
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
@@ -1367,3 +1367,112 @@ main article .card-grid {
|
||||
box-shadow: $light-box-shadow;
|
||||
}
|
||||
*/
|
||||
.use-case-payments {
|
||||
.payments-integration-section{
|
||||
.integration-column__title{
|
||||
color: var(--XRPL-Primary-Black, #000);
|
||||
}
|
||||
.integration-column__subtitle{
|
||||
color: var(--XRPL-Black-Black-80, #232325);
|
||||
}
|
||||
.feature-item__title{
|
||||
color: var(--XRPL-Primary-Black, #000);
|
||||
}
|
||||
.feature-item__divider{
|
||||
background-color: #000;
|
||||
}
|
||||
}
|
||||
|
||||
.payments-project-card {
|
||||
background: #FFF;
|
||||
box-shadow: none;
|
||||
.first-word{
|
||||
color: var(--XRPL-Black-Black-80, #232325);
|
||||
}
|
||||
.rest-text{
|
||||
color: var(--XRPL-Black-Black-80, #232325);
|
||||
}
|
||||
|
||||
/* Light mode payment logos */
|
||||
.project-logo {
|
||||
img.ripple-usd {
|
||||
content: url('../img/uses/lightmode/payments/rlusd.png');
|
||||
}
|
||||
|
||||
img.usdc {
|
||||
content: url('../img/uses/lightmode/payments/usdc.png');
|
||||
}
|
||||
|
||||
img.usdb {
|
||||
content: url('../img/uses/lightmode/payments/usdb.png');
|
||||
}
|
||||
|
||||
img.europ {
|
||||
content: url('../img/uses/lightmode/payments/erop.png');
|
||||
}
|
||||
|
||||
img.xsgd {
|
||||
content: url('../img/uses/lightmode/payments/xsgd.png');
|
||||
}
|
||||
|
||||
img.audd {
|
||||
content: url('../img/uses/lightmode/payments/audd.png');
|
||||
}
|
||||
}
|
||||
}
|
||||
.advantages-section {
|
||||
.advantage-item {
|
||||
strong{
|
||||
color: var(--XRPL-Black-Black-80, #232325);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Light mode embedded payments icons */
|
||||
#embedded-payments-list {
|
||||
#digital-wallets {
|
||||
content: url("../img/uses/lightmode/payments/digital-wallet.png");
|
||||
}
|
||||
|
||||
#cross-border-remittance {
|
||||
content: url("../img/uses/lightmode/payments/cross-border.png");
|
||||
}
|
||||
|
||||
#regulated-foreign-exchange {
|
||||
content: url("../img/uses/lightmode/payments/regulated.png");
|
||||
}
|
||||
|
||||
#merchant-settlement {
|
||||
content: url("../img/uses/lightmode/payments/merchant-settlement.png");
|
||||
}
|
||||
|
||||
#b2b-payment-rails {
|
||||
content: url("../img/uses/lightmode/payments/b2b-payment.png");
|
||||
}
|
||||
|
||||
#compliance-first-payment-acceptance {
|
||||
content: url("../img/uses/lightmode/payments/compliance.png");
|
||||
}
|
||||
}
|
||||
|
||||
/* Light mode battle-tested company logos */
|
||||
.use-case-payments .battle-tested-section {
|
||||
.payments-project-card {
|
||||
.project-logo img {
|
||||
&.coinpayments {
|
||||
content: url('../img/uses/lightmode/payments/coinpayments.png');
|
||||
}
|
||||
|
||||
&.ripple {
|
||||
content: url('../img/uses/lightmode/payments/ripple-black.png');
|
||||
}
|
||||
|
||||
&.fiipay {
|
||||
content: url('../img/uses/lightmode/payments/friipay.png');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||