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-heading: Mailing List
|
||||||
mail-list-text: Have trouble keeping up-to-date? Join our mailing list.
|
mail-list-text: Have trouble keeping up-to-date? Join our mailing list.
|
||||||
social-text-heading: VISIT DASH FORUM
|
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.
|
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
|
volunteer-heading: Volunteer
|
||||||
join-btn: Join
|
join-btn: Join
|
||||||
|
|
|
@ -24,11 +24,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-6">
|
<div class="col-xs-12">
|
||||||
<input class="input-block" placeholder="Email" type="text">
|
<input class="input-block" placeholder="Email" type="text">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-xs-6">
|
</div>
|
||||||
<select class="form-control" placeholder="category">
|
<div class="row">
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<select class="form-control input-block" placeholder="category">
|
||||||
<option value="">Category</option>
|
<option value="">Category</option>
|
||||||
<option value="feedback">Feedback</option>
|
<option value="feedback">Feedback</option>
|
||||||
</select>
|
</select>
|
||||||
|
@ -41,7 +43,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<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>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</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">
|
<section class="section section--cta">
|
||||||
<div class="section__content">
|
<div class="section__content">
|
||||||
<h3 >{% t pages.contact.social-text-heading %}</h3>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="section section--cta section--colored">
|
<section class="section section--cta section--colored">
|
||||||
<div class="section__content">
|
<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="bottom-space">{% t pages.contact.mail-list-text %}</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<div class="col-xs-12">
|
||||||
<button class="btn-white-solid js-subscribe">{% t pages.contact.join-btn %}</button>
|
<button class="btn-white-solid js-subscribe">{% t pages.contact.join-btn %}</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12 ">
|
<div class="col-xs-12 ">
|
||||||
<!-- Begin MailChimp Signup Form -->
|
<!-- Begin MailChimp Signup Form -->
|
||||||
|
@ -61,6 +67,7 @@ description: pages.contact.description
|
||||||
<!--End mc_embed_signup-->
|
<!--End mc_embed_signup-->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,22 @@
|
||||||
form {
|
form {
|
||||||
input {
|
input {
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
padding: 10px 5px 10px 5px;
|
padding: 10px 5px 10px 12px;
|
||||||
border: 2px solid $color-black;
|
border: none;
|
||||||
|
border-radius: 4px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
}
|
}
|
||||||
select {
|
select {
|
||||||
border: 2px solid $color-black;
|
border: 2px solid $color-black;
|
||||||
border-radius: 0px;
|
border-radius: 4px;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
}
|
}
|
||||||
textarea {
|
textarea {
|
||||||
border: 2px solid $color-black;
|
border: none;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
|
padding: 10px 5px 10px 12px;
|
||||||
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
.input-block {
|
.input-block {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -29,8 +32,8 @@ form {
|
||||||
color: #999;
|
color: #999;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
background-image: none;
|
background-image: none;
|
||||||
border: 2px solid $color-black;
|
border: none;
|
||||||
border-radius: 2px;
|
border-radius: 4px;
|
||||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
|
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
|
||||||
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;
|
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
|
||||||
|
|
|
@ -303,6 +303,18 @@ a.blog_link {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
text-align: center;
|
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 {
|
h1, h2, h3 {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
|
@ -163,7 +163,7 @@ description: pages.update.description
|
||||||
<!--
|
<!--
|
||||||
NETWORK ARCHITECTURE
|
NETWORK ARCHITECTURE
|
||||||
-->
|
-->
|
||||||
<section class="section--masternode">
|
<section class="section--colored">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-6">
|
<div class="col-sm-6">
|
||||||
|
@ -171,7 +171,7 @@ description: pages.update.description
|
||||||
|
|
||||||
{% tmd pages.update.execution-text %}
|
{% 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>
|
||||||
<div class="col-sm-6 home-architecture-graphic">
|
<div class="col-sm-6 home-architecture-graphic">
|
||||||
<img src="/assets/img/update/execution.png" alt="{% t pages.home.execution-heading %}">
|
<img src="/assets/img/update/execution.png" alt="{% t pages.home.execution-heading %}">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue