Wallet/src/sass/views/onboarding/terms-of-use.scss

91 lines
1.8 KiB
SCSS
Raw Normal View History

2016-10-19 22:52:50 -04:00
#terms {
.terms {
&__heading {
font-weight: bold;
color: $dark-gray;
}
}
}
2016-09-06 10:43:54 -04:00
#terms-of-use {
ion-header-bar {
background: #fff;
box-shadow: $subtle-box-shadow;
.primary-buttons{
.button{
font-size: 2rem;
}
}
}
ion-content{
2016-09-02 16:54:44 -03:00
padding-top: 1.5rem;
color: $dark-gray;
2016-10-17 16:57:55 -03:00
margin-bottom: 210px;
2016-09-06 10:43:54 -04:00
p {
padding: 0 2.5%;
margin: 2rem auto;
&:first-child {
margin-top: 0;
}
}
}
2016-09-06 10:43:54 -04:00
#agree-to-terms {
background: #fff;
padding: 1rem;
2016-09-14 18:04:44 -03:00
position: absolute;
bottom: 0;
width: 100%;
2016-10-17 16:57:55 -03:00
.text-center {
text-align: center;
}
2016-09-06 10:43:54 -04:00
.checkbox input:before,
.checkbox .checkbox-icon:before {
border-radius: 50% !important;
background: none;
border-width: 2px;
padding: .9rem;
position: relative;
left: -7px;
top: -8px;
}
.checkbox input:checked:before,
.checkbox input:checked + .checkbox-icon:before {
2016-10-19 22:52:50 -04:00
border-color: $light-green;
2016-09-06 10:43:54 -04:00
}
.checkbox input:checked:after,
input:checked + .checkbox-icon:after {
2016-10-19 22:52:50 -04:00
border-color: $light-green;
top: 20%;
left: 11%;
2016-09-06 10:43:54 -04:00
}
.item {
2016-10-19 22:52:50 -04:00
color: $dark-gray;
2016-09-06 10:43:54 -04:00
padding-bottom: 1.2rem;
padding-bottom: 2.5rem;
2016-09-06 10:43:54 -04:00
float: left;
border: none;
width: 10%;
position: relative;
padding-right: 0;
2016-10-17 16:57:55 -03:00
padding-left: 50px;
2016-09-06 10:43:54 -04:00
.item-content {
white-space: normal;
}
}
p {
2016-10-19 22:52:50 -04:00
color: $dark-gray;
2016-09-06 10:43:54 -04:00
}
.checkbox input:before,
.checkbox .checkbox-icon:before {
border-color: $soft-blue;
}
.checkbox input:checked:before,
.checkbox input:checked + .checkbox-icon:before {
2016-10-19 22:52:50 -04:00
border-color: $light-green;
2016-09-06 10:43:54 -04:00
}
button {
margin-top: 1.5rem;
position: relative;
}
}
}