feat(design): improve styling of terms
This commit is contained in:
parent
8aef6feaed
commit
6d55b89d39
4 changed files with 76 additions and 59 deletions
|
|
@ -30,3 +30,8 @@ $placeholder-icon-padding: 10px;
|
||||||
.item-input-wrapper {
|
.item-input-wrapper {
|
||||||
background: none transparent;
|
background: none transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// the default .item p color of #666 cannot be modified by a variable
|
||||||
|
.item p {
|
||||||
|
color: $mid-gray;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ $fill-blue: #D5DFFF;
|
||||||
$subtle-gray: darken(#fff, 5%);
|
$subtle-gray: darken(#fff, 5%);
|
||||||
$roboto: "Roboto", sans-serif;
|
$roboto: "Roboto", sans-serif;
|
||||||
$roboto-light: "Roboto-Light", sans-serif-light;
|
$roboto-light: "Roboto-Light", sans-serif-light;
|
||||||
|
$light-green: rgb(19, 229, 182);
|
||||||
$success-green: #17ae8c;
|
$success-green: #17ae8c;
|
||||||
$warning-orange: #ffa500;
|
$warning-orange: #ffa500;
|
||||||
$dark-gray: #445;
|
$dark-gray: #445;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,12 @@
|
||||||
|
#terms {
|
||||||
|
.terms {
|
||||||
|
&__heading {
|
||||||
|
font-weight: bold;
|
||||||
|
color: $dark-gray;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#terms-of-use {
|
#terms-of-use {
|
||||||
ion-header-bar {
|
ion-header-bar {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
|
@ -41,16 +50,16 @@
|
||||||
}
|
}
|
||||||
.checkbox input:checked:before,
|
.checkbox input:checked:before,
|
||||||
.checkbox input:checked + .checkbox-icon:before {
|
.checkbox input:checked + .checkbox-icon:before {
|
||||||
border-color: rgb(19, 229, 182);
|
border-color: $light-green;
|
||||||
}
|
}
|
||||||
.checkbox input:checked:after,
|
.checkbox input:checked:after,
|
||||||
input:checked + .checkbox-icon:after {
|
input:checked + .checkbox-icon:after {
|
||||||
border-color: rgb(19, 229, 182);
|
border-color: $light-green;
|
||||||
top: 20%;
|
top: 20%;
|
||||||
left: 11%;
|
left: 11%;
|
||||||
}
|
}
|
||||||
.item {
|
.item {
|
||||||
color: rgb(58, 58, 58);
|
color: $dark-gray;
|
||||||
padding-bottom: 1.2rem;
|
padding-bottom: 1.2rem;
|
||||||
padding-bottom: 2.5rem;
|
padding-bottom: 2.5rem;
|
||||||
float: left;
|
float: left;
|
||||||
|
|
@ -64,7 +73,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
p {
|
p {
|
||||||
color: rgb(58, 58, 58);
|
color: $dark-gray;
|
||||||
}
|
}
|
||||||
.checkbox input:before,
|
.checkbox input:before,
|
||||||
.checkbox .checkbox-icon:before {
|
.checkbox .checkbox-icon:before {
|
||||||
|
|
@ -72,7 +81,7 @@
|
||||||
}
|
}
|
||||||
.checkbox input:checked:before,
|
.checkbox input:checked:before,
|
||||||
.checkbox input:checked + .checkbox-icon:before {
|
.checkbox input:checked + .checkbox-icon:before {
|
||||||
border-color: rgb(19, 229, 182);
|
border-color: $light-green;
|
||||||
}
|
}
|
||||||
button {
|
button {
|
||||||
margin-top: 1.5rem;
|
margin-top: 1.5rem;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<div id="terms">
|
||||||
<p translate>
|
<p translate>
|
||||||
This is a binding Agreement between BitPay, Inc. (“BitPay” or “We”) and the person, persons, or entity (“You” or “Your”) using the service, Software, or application (“Software”).
|
This is a binding Agreement between BitPay, Inc. (“BitPay” or “We”) and the person, persons, or entity (“You” or “Your”) using the service, Software, or application (“Software”).
|
||||||
</p>
|
</p>
|
||||||
|
|
@ -52,3 +53,4 @@
|
||||||
<p translate>
|
<p translate>
|
||||||
You assume any and all risks associated with the use of the Software. We reserve the right to modify this Agreement from time to time.
|
You assume any and all risks associated with the use of the Software. We reserve the right to modify this Agreement from time to time.
|
||||||
</p>
|
</p>
|
||||||
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue