fixed payments page; (#144)

* fixed payment page
This commit is contained in:
mr.V 2017-02-28 22:27:25 +07:00 committed by moocowmoo
parent 513e3f8518
commit b4f0d93afd
4 changed files with 16 additions and 12 deletions

View file

@ -552,7 +552,8 @@ pages:
modal-core-masternode-value: 0.12.1.2 modal-core-masternode-value: 0.12.1.2
modal-core-pool-text: Pool Operators modal-core-pool-text: Pool Operators
modal-core-pool-value: 0.12.1.2 modal-core-pool-value: 0.12.1.2
disclaimer-text: >
DISCLAIMER: This list is provided for informational purposes only. Services listed here have not been evaluated or endorsed by the Dash developers and no guarantees are made as to the accuracy of this information. Please exercise discretion when using third-party services.
contact: contact:
title: Contact Dash title: Contact Dash

View file

@ -1,9 +1,10 @@
<div class="hero hero--space" id="hero"> <div class="hero hero--space" id="hero">
<div class="hero__background"> <div class="hero__background">
{% srcset hero/expecto_patronum.png ppi:1,2 class="hero__background-image" %}
<img src="{{ base }}/assets/img/hero/expecto_patronum.png" alt="" class="hero__background-image"> {% srcset_source width:1920 %}
{% srcset_source width:960 %}
{% endsrcset %}
</div> </div>
<!-- Navigation --> <!-- Navigation -->

View file

@ -29,11 +29,9 @@ description: pages.payments.description
</div> </div>
</section> </section>
<section class="section clearfix"> <section class="section">
<div class="section__content" style="background-color: #fff7af; width: 97%; margin: auto; padding: 10px 15px;"> <div class="section__content">
<p> <p class="warning-bg">{% t pages.payments.disclaimer-text %}</p>
DISCLAIMER: This list is provided for informational purposes only. Services listed here have not been evaluated or endorsed by the Dash developers and no guarantees are made as to the accuracy of this information. Please exercise discretion when using third-party services.
</p>
</div> </div>
</section> </section>
</div> </div>

View file

@ -49,8 +49,8 @@ $wallet-tile-hover-background-base-color: lighten($color-blue-light, 9);
border: 1px solid $color-gray; border: 1px solid $color-gray;
min-height: $wallet-tile-min-height; min-height: $wallet-tile-min-height;
.payments &{ .payments &{
min-height: 12em; min-height: 12em;
} }
max-width: $wallet-tile-max-width; max-width: $wallet-tile-max-width;
overflow: hidden; overflow: hidden;
-o-transition: .25s; -o-transition: .25s;
@ -495,3 +495,7 @@ a.blog_link {
z-index: -1; z-index: -1;
} }
} }
.warning-bg{
background-color: #fff7af;
padding: 10px 15px;
}