This commit is contained in:
Calvin Jhunjhnuwala
2021-06-30 01:37:19 -07:00
4 changed files with 26 additions and 10 deletions

File diff suppressed because one or more lines are too long

View File

@@ -245,7 +245,7 @@ pages:
html: xrp-overview.html html: xrp-overview.html
parent: xrp-ledger-overview.html parent: xrp-ledger-overview.html
top_nav_grouping: XRP top_nav_grouping: XRP
top_nav_name: About XRP top_nav_name: XRP Overview
sidebar: disabled sidebar: disabled
targets: targets:
- en - en
@@ -3720,12 +3720,13 @@ pages:
- ja - ja
# "Community" tab -------------------------------------------------------------- # "Community" tab --------------------------------------------------------------
- name: Community - name: Contribute
html: contribute.html html: contribute.html
parent: index.html parent: index.html
template: page-community.html.jinja template: page-community.html.jinja
sidebar: disabled sidebar: disabled
blurb: Join the conversation blurb: Join the conversation
top_nav_name: Community
top_nav_hero_image: assets/img/icons/contribute.svg top_nav_hero_image: assets/img/icons/contribute.svg
targets: targets:
- en - en

View File

@@ -1,11 +1,20 @@
/* Footer ------------------------------------------------------------------- */ /* Footer ------------------------------------------------------------------- */
.xrpl-footer { .xrpl-footer {
padding: 7.5rem 3rem; padding: 7.5rem 2.5rem;
background-image: url(../img/backgrounds/footer.svg);
background-size: cover; @include media-breakpoint-up(lg) {
background-repeat: no-repeat; background-image: url(../img/backgrounds/footer.svg);
background-position: bottom right; background-size: cover;
background-repeat: no-repeat;
background-position: bottom right;
}
@include media-breakpoint-down(md) {
.col-lg:not(:first-child) {
margin-top: 4rem;
}
}
h5 { h5 {
font-size: 1rem; font-size: 1rem;
@@ -21,5 +30,11 @@
.absolute-bottom-footer { .absolute-bottom-footer {
font-size: 10px; font-size: 10px;
line-height: 1rem; line-height: 1rem;
@include media-breakpoint-down(md) {
.copyright-license {
margin-top: 3rem;
}
}
} }
} }

View File

@@ -17,10 +17,10 @@
<section class="container-fluid mt-20 absolute-bottom-footer"> <section class="container-fluid mt-20 absolute-bottom-footer">
<div class="d-md-flex"> <div class="d-lg-flex">
<a href="{% if target.prefix %}{{target.prefix}}{% else %}/{% endif %}" class="footer-brand"><img src="{{currentpage.prefix}}assets/img/XRPLedger_DevPortal-white.svg" class="logo" height="24" alt="{{target.display_name}}" /></a> <a href="{% if target.prefix %}{{target.prefix}}{% else %}/{% endif %}" class="footer-brand"><img src="{{currentpage.prefix}}assets/img/XRPLedger_DevPortal-white.svg" class="logo" height="24" alt="{{target.display_name}}" /></a>
<span class="flex-grow-1">&nbsp;</span> <span class="flex-grow-1">&nbsp;</span>
<div>&copy; 2021 XRP Ledger. <a href="https://raw.githubusercontent.com/ripple/ripple-dev-portal/master/LICENSE">{% trans %}Open Source.{% endtrans %}</a> <div class="copyright-license">&copy; 2021 XRP Ledger. <a href="https://raw.githubusercontent.com/ripple/ripple-dev-portal/master/LICENSE">{% trans %}Open Source.{% endtrans %}</a>
</div> </div>
</div><!-- /.absolute_bottom_footer --> </div><!-- /.absolute_bottom_footer -->