mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
hard reset; deleted modification then added back
This commit is contained in:
parent
42dd5fc78c
commit
dfbeb339fc
9 changed files with 359 additions and 334 deletions
|
@ -222,6 +222,7 @@ pages:
|
|||
mail-list-heading: Mailing List
|
||||
mail-list-text: Have trouble keeping up-to-date? Join our mailing list.
|
||||
social-text-heading: VISIT DASH FORUM
|
||||
forum-btn: Visit Forums
|
||||
social-text: For technical support or troubleshooting with wallets, mining, or other general questions, please visit DASH FORUM or one of the many other community resources.
|
||||
volunteer-heading: Volunteer
|
||||
join-btn: Join
|
||||
|
|
|
@ -24,11 +24,13 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
<div class="col-xs-12">
|
||||
<input class="input-block" placeholder="Email" type="text">
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
<select class="form-control" placeholder="category">
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<select class="form-control input-block" placeholder="category">
|
||||
<option value="">Category</option>
|
||||
<option value="feedback">Feedback</option>
|
||||
</select>
|
||||
|
@ -41,7 +43,7 @@
|
|||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<input class="submit" type="submit" value="Send Message">
|
||||
<input class="btn-blue-solid" type="submit" value="Send Message">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.4 MiB |
Binary file not shown.
Before Width: | Height: | Size: 128 KiB After Width: | Height: | Size: 100 KiB |
Binary file not shown.
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 75 KiB |
|
@ -11,20 +11,26 @@ description: pages.contact.description
|
|||
<section class="section section--cta">
|
||||
<div class="section__content">
|
||||
<h3 >{% t pages.contact.social-text-heading %}</h3>
|
||||
{% tmd pages.contact.social-text %}
|
||||
<div class="bottom-space">{% tmd pages.contact.social-text %}</div>
|
||||
<div class="bottom-space">
|
||||
<a href="https://www.dash.org/forum" class="btn-blue-solid" target="_blank" >
|
||||
{% t pages.contact.forum-btn %}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section section--cta section--colored">
|
||||
<div class="section__content">
|
||||
|
||||
<h5>{% t pages.contact.mail-list-heading %}</h5>
|
||||
<h3>{% t pages.contact.mail-list-heading %}</h3>
|
||||
<div class="bottom-space">{% t pages.contact.mail-list-text %}</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<button class="btn-white-solid js-subscribe">{% t pages.contact.join-btn %}</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 ">
|
||||
<!-- Begin MailChimp Signup Form -->
|
||||
|
@ -61,6 +67,7 @@ description: pages.contact.description
|
|||
<!--End mc_embed_signup-->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
|
|
@ -1,19 +1,22 @@
|
|||
form {
|
||||
input {
|
||||
font-size: 15px;
|
||||
padding: 10px 5px 10px 5px;
|
||||
border: 2px solid $color-black;
|
||||
padding: 10px 5px 10px 12px;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
appearance: none;
|
||||
}
|
||||
select {
|
||||
border: 2px solid $color-black;
|
||||
border-radius: 0px;
|
||||
border-radius: 4px;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
textarea {
|
||||
border: 2px solid $color-black;
|
||||
border: none;
|
||||
font-size: 15px;
|
||||
padding: 10px 5px 10px 12px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.input-block {
|
||||
width: 100%;
|
||||
|
@ -29,8 +32,8 @@ form {
|
|||
color: #999;
|
||||
background-color: #fff;
|
||||
background-image: none;
|
||||
border: 2px solid $color-black;
|
||||
border-radius: 2px;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
|
||||
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
|
||||
|
|
|
@ -303,6 +303,18 @@ a.blog_link {
|
|||
overflow: hidden;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
z-index: 1;
|
||||
&:after {
|
||||
content: '';
|
||||
background-image: -webkit-linear-gradient(315deg, rgba(40,61,129,0.7) 0%, rgba(28,117,188,0.8) 100%);
|
||||
background-image: linear-gradient(-225deg, rgba(40,61,129,0.7) 0%, rgba(28,117,188,0.8) 100%);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: -1;
|
||||
}
|
||||
h1, h2, h3 {
|
||||
color: white;
|
||||
}
|
||||
|
|
|
@ -163,7 +163,7 @@ description: pages.update.description
|
|||
<!--
|
||||
NETWORK ARCHITECTURE
|
||||
-->
|
||||
<section class="section--masternode">
|
||||
<section class="section--colored">
|
||||
<div class="content">
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
|
@ -171,7 +171,7 @@ description: pages.update.description
|
|||
|
||||
{% tmd pages.update.execution-text %}
|
||||
|
||||
<a href="{% t pages.update.execution-link %}" target="_blank" class="btn-blue">{% t pages.update.execution-btn %}</a>
|
||||
<a href="{% t pages.update.execution-link %}" target="_blank" class="btn-white-solid">{% t pages.update.execution-btn %}</a>
|
||||
</div>
|
||||
<div class="col-sm-6 home-architecture-graphic">
|
||||
<img src="/assets/img/update/execution.png" alt="{% t pages.home.execution-heading %}">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue