2019-12-06 16:40:07 +01:00
|
|
|
.modal {
|
|
|
|
z-index: 1050;
|
|
|
|
position: fixed;
|
|
|
|
width: 500px;
|
|
|
|
transform: translate3d(-50%, -50%, 0);
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
|
|
|
|
.content {
|
|
|
|
margin: 0;
|
|
|
|
background-color: white;
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.backdrop {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1040;
|
2020-07-15 15:13:40 +02:00
|
|
|
background-color: #373a47;
|
2019-12-06 16:40:07 +01:00
|
|
|
animation-fill-mode: forwards;
|
|
|
|
animation-duration: 0.3s;
|
|
|
|
}
|
|
|
|
|
2017-09-06 13:28:47 +02:00
|
|
|
.modal > div:focus {
|
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
|
2017-09-20 02:56:10 +02:00
|
|
|
// Account Modal Container
|
|
|
|
.account-modal-container {
|
2017-08-21 14:58:30 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
2017-08-21 15:14:28 +02:00
|
|
|
position: relative;
|
2017-09-06 11:43:32 +02:00
|
|
|
padding: 5px 0 31px 0;
|
|
|
|
border: 1px solid $silver;
|
2017-08-25 02:25:27 +02:00
|
|
|
border-radius: 4px;
|
2017-09-11 09:45:06 +02:00
|
|
|
|
|
|
|
button {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-08-25 02:25:27 +02:00
|
|
|
}
|
|
|
|
|
2017-09-22 21:57:18 +02:00
|
|
|
.account-modal-back {
|
|
|
|
color: $dusty-gray;
|
|
|
|
position: absolute;
|
|
|
|
top: 13px;
|
|
|
|
left: 17px;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
margin-top: 2px;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-10 15:43:53 +01:00
|
|
|
.account-modal-close {
|
2017-09-20 02:56:10 +02:00
|
|
|
font-size: 40px;
|
2020-01-10 15:43:53 +01:00
|
|
|
background-color: transparent;
|
2017-09-20 02:56:10 +02:00
|
|
|
color: $dusty-gray;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 12px;
|
2020-01-10 15:43:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-modal-close::after {
|
|
|
|
content: '\00D7';
|
2017-09-20 02:56:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-modal-container .identicon {
|
|
|
|
position: relative;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
top: -32px;
|
|
|
|
margin-bottom: -32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Account Details Modal
|
|
|
|
|
2017-09-20 10:05:27 +02:00
|
|
|
.account-modal-container {
|
|
|
|
.qr-header {
|
|
|
|
margin-top: 9px;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
2017-08-25 02:25:27 +02:00
|
|
|
|
2017-09-20 10:05:27 +02:00
|
|
|
.qr-wrapper {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2017-09-06 11:43:32 +02:00
|
|
|
|
2017-09-20 10:05:27 +02:00
|
|
|
.ellip-address-wrapper {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
border: 1px solid $alto;
|
|
|
|
padding: 5px 10px;
|
|
|
|
margin-top: 7px;
|
|
|
|
width: 286px;
|
|
|
|
}
|
2017-08-25 02:25:27 +02:00
|
|
|
|
2018-01-12 01:30:07 +01:00
|
|
|
.account-modal__button {
|
2017-09-20 10:05:27 +02:00
|
|
|
margin-top: 17px;
|
|
|
|
padding: 10px 22px;
|
2018-03-26 07:19:42 +02:00
|
|
|
width: 286px;
|
2017-09-20 10:05:27 +02:00
|
|
|
}
|
2017-08-21 15:14:28 +02:00
|
|
|
}
|
|
|
|
|
2017-09-20 02:56:10 +02:00
|
|
|
.account-modal-divider {
|
2017-08-21 21:26:36 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 1px;
|
2017-09-06 11:43:32 +02:00
|
|
|
margin: 19px 0 8px 0;
|
2017-08-21 21:26:36 +02:00
|
|
|
background-color: $alto;
|
|
|
|
}
|
|
|
|
|
2017-09-20 10:06:31 +02:00
|
|
|
// Export Private Key Modal
|
|
|
|
|
|
|
|
.account-modal-container .account-name {
|
|
|
|
margin-top: 9px;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account-modal-container .modal-body-title {
|
|
|
|
margin-top: 16px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2017-10-26 03:23:46 +02:00
|
|
|
.account-modal__name {
|
|
|
|
margin-top: 9px;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
2017-09-20 10:06:31 +02:00
|
|
|
.private-key-password {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
.private-key-password-label,
|
|
|
|
.private-key-password-error {
|
2017-09-20 10:06:31 +02:00
|
|
|
color: $scorpion;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2017-09-20 14:32:18 +02:00
|
|
|
.private-key-password-error {
|
|
|
|
color: $crimson;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-09-20 10:06:31 +02:00
|
|
|
.private-key-password-input {
|
|
|
|
padding: 10px 0 13px 17px;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 21px;
|
|
|
|
width: 291px;
|
|
|
|
height: 44px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.private-key-password::-webkit-input-placeholder {
|
|
|
|
color: $dusty-gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.private-key-password-warning {
|
|
|
|
border-radius: 8px;
|
2020-07-15 15:13:40 +02:00
|
|
|
background-color: #fff6f6;
|
2017-09-20 10:06:31 +02:00
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 15px;
|
|
|
|
color: $crimson;
|
|
|
|
width: 292px;
|
|
|
|
padding: 9px 15px;
|
|
|
|
margin-top: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.export-private-key-buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
2018-01-12 01:30:07 +01:00
|
|
|
}
|
2017-09-20 10:06:31 +02:00
|
|
|
|
2018-01-12 01:30:07 +01:00
|
|
|
.export-private-key__button {
|
|
|
|
margin-top: 17px;
|
|
|
|
width: 141px;
|
2018-03-26 07:19:42 +02:00
|
|
|
min-width: initial;
|
2018-01-12 01:30:07 +01:00
|
|
|
}
|
2017-09-20 10:06:31 +02:00
|
|
|
|
2018-01-12 01:30:07 +01:00
|
|
|
.export-private-key__button--cancel {
|
|
|
|
margin-right: 15px;
|
2017-09-20 10:06:31 +02:00
|
|
|
}
|
|
|
|
|
2017-09-20 14:32:18 +02:00
|
|
|
.private-key-password-display-wrapper {
|
|
|
|
height: 80px;
|
|
|
|
width: 291px;
|
2017-10-13 22:23:10 +02:00
|
|
|
border: 1px solid $silver;
|
2017-09-20 14:32:18 +02:00
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.private-key-password-display-textarea {
|
|
|
|
color: $crimson;
|
2017-10-13 22:23:10 +02:00
|
|
|
font-size: 16px;
|
2017-09-20 14:32:18 +02:00
|
|
|
line-height: 21px;
|
|
|
|
border: none;
|
|
|
|
height: 75px;
|
2017-10-13 22:23:10 +02:00
|
|
|
width: 100%;
|
2017-09-20 14:32:18 +02:00
|
|
|
overflow: hidden;
|
|
|
|
resize: none;
|
|
|
|
padding: 9px 13px 8px;
|
|
|
|
}
|
|
|
|
|
2017-08-29 17:39:47 +02:00
|
|
|
.modal-close-x::after {
|
|
|
|
content: '\00D7';
|
|
|
|
font-size: 2em;
|
|
|
|
color: $dusty-gray;
|
|
|
|
position: absolute;
|
|
|
|
top: 25px;
|
|
|
|
right: 17.5px;
|
2017-09-15 17:09:34 +02:00
|
|
|
cursor: pointer;
|
2017-08-25 02:31:01 +02:00
|
|
|
}
|
|
|
|
|
2017-09-29 21:03:29 +02:00
|
|
|
// Hide token confirmation
|
|
|
|
|
|
|
|
.hide-token-confirmation {
|
|
|
|
min-height: 250.72px;
|
|
|
|
border-radius: 4px;
|
2018-01-13 23:59:16 +01:00
|
|
|
background-color: $white;
|
2020-07-15 15:13:40 +02:00
|
|
|
box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.5);
|
2017-09-29 21:03:29 +02:00
|
|
|
|
|
|
|
&__container {
|
|
|
|
padding: 24px 27px 21px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__identicon {
|
2018-01-13 23:59:16 +01:00
|
|
|
margin-bottom: 10px;
|
2017-09-29 21:03:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__symbol {
|
|
|
|
color: $tundora;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 7.5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
height: 30px;
|
|
|
|
width: 271.28px;
|
|
|
|
color: $tundora;
|
|
|
|
font-size: 22px;
|
|
|
|
line-height: 30px;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 10.5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__copy {
|
|
|
|
height: 41px;
|
|
|
|
width: 318px;
|
|
|
|
color: $scorpion;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: 15px;
|
|
|
|
width: 100%;
|
2018-01-13 23:59:16 +01:00
|
|
|
}
|
2017-09-29 21:03:29 +02:00
|
|
|
|
2018-01-13 23:59:16 +01:00
|
|
|
&__button {
|
2020-07-29 17:35:53 +02:00
|
|
|
@include Paragraph;
|
|
|
|
|
2019-04-16 21:35:22 +02:00
|
|
|
@extend %button;
|
2020-07-15 15:13:40 +02:00
|
|
|
|
2018-01-13 23:59:16 +01:00
|
|
|
width: 141px;
|
|
|
|
margin: 0 5px;
|
2017-09-29 21:03:29 +02:00
|
|
|
}
|
|
|
|
}
|
2017-12-05 03:00:11 +01:00
|
|
|
|
|
|
|
//Notification Modal
|
|
|
|
|
2018-02-08 18:18:25 +01:00
|
|
|
.notification-modal {
|
|
|
|
&__wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
|
|
border: 1px solid $alto;
|
|
|
|
box-shadow: 0 0 2px 2px $alto;
|
|
|
|
}
|
2017-12-05 03:00:11 +01:00
|
|
|
|
2018-02-08 18:18:25 +01:00
|
|
|
&__header {
|
|
|
|
background: $wild-sand;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 30px;
|
|
|
|
font-size: 22px;
|
|
|
|
color: $nile-blue;
|
|
|
|
}
|
2017-12-05 03:00:11 +01:00
|
|
|
|
2018-02-08 18:18:25 +01:00
|
|
|
&__message {
|
|
|
|
padding: 20px;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 17px;
|
|
|
|
color: $nile-blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 24px;
|
2020-07-15 15:13:40 +02:00
|
|
|
padding: 0 42px;
|
2018-02-08 18:18:25 +01:00
|
|
|
|
|
|
|
&__btn {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__link {
|
2020-07-17 20:11:04 +02:00
|
|
|
color: $primary-blue;
|
2018-02-08 18:18:25 +01:00
|
|
|
}
|
2018-01-12 20:48:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Deposit Ether Modal
|
|
|
|
.deposit-ether-modal {
|
|
|
|
border-radius: 8px;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 8px 8px 0 0;
|
|
|
|
background-color: $mid-gray;
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
padding: 25px;
|
|
|
|
flex-flow: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
color: $white;
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__description {
|
|
|
|
color: $white;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 22px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__close::after {
|
|
|
|
content: '\00D7';
|
|
|
|
font-size: 2em;
|
|
|
|
color: $white;
|
|
|
|
position: absolute;
|
|
|
|
top: 20.8px;
|
|
|
|
right: 28px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__buy-rows {
|
|
|
|
width: 100%;
|
2018-03-12 19:25:12 +01:00
|
|
|
padding: 0 30px;
|
2018-01-12 20:48:18 +01:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
flex: 1;
|
2018-06-21 19:34:24 +02:00
|
|
|
align-items: center;
|
2018-01-12 20:48:18 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 575px) {
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-12 19:25:12 +01:00
|
|
|
&__logo {
|
|
|
|
height: 60px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
background-position: center;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2018-01-12 20:48:18 +01:00
|
|
|
&__buy-row {
|
|
|
|
border-bottom: 1px solid $alto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2018-03-12 19:25:12 +01:00
|
|
|
flex: 1 0 auto;
|
|
|
|
padding: 30px 0 20px;
|
|
|
|
min-height: 170px;
|
2018-01-12 20:48:18 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 575px) {
|
2018-03-12 19:25:12 +01:00
|
|
|
min-height: 270px;
|
2018-01-12 20:48:18 +01:00
|
|
|
flex-flow: column;
|
2018-03-12 19:25:12 +01:00
|
|
|
justify-content: flex-start;
|
2018-01-12 20:48:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__back {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
2020-07-15 15:13:40 +02:00
|
|
|
left: 0;
|
2018-01-12 20:48:18 +01:00
|
|
|
}
|
|
|
|
|
2018-03-12 19:25:12 +01:00
|
|
|
&__logo-container {
|
2018-01-12 20:48:18 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2018-03-12 19:25:12 +01:00
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 0 20px;
|
2018-01-12 20:48:18 +01:00
|
|
|
|
2018-03-12 19:25:12 +01:00
|
|
|
@media screen and (min-width: 576px) {
|
|
|
|
width: 12rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 575px) {
|
|
|
|
width: 100%;
|
|
|
|
max-height: 6rem;
|
|
|
|
padding-bottom: 20px;
|
2018-01-12 20:48:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__right {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__description {
|
|
|
|
color: $cape-cod;
|
2018-03-12 19:25:12 +01:00
|
|
|
padding-bottom: 20px;
|
|
|
|
align-self: flex-start;
|
2018-01-12 20:48:18 +01:00
|
|
|
|
|
|
|
@media screen and (min-width: 575px) {
|
2018-03-12 19:25:12 +01:00
|
|
|
width: 15rem;
|
2018-01-12 20:48:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 22px;
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
@media screen and (min-width: 575px) {
|
|
|
|
min-width: 300px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__buy-row:last-of-type {
|
2020-07-15 15:13:40 +02:00
|
|
|
border-bottom: 0;
|
2018-01-12 20:48:18 +01:00
|
|
|
}
|
|
|
|
|
2020-02-26 18:34:46 +01:00
|
|
|
&__deposit-button {
|
2018-01-12 20:48:18 +01:00
|
|
|
width: 257px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.simple-dropdown {
|
2020-07-15 15:13:40 +02:00
|
|
|
color: #5b5d67;
|
2018-01-12 20:48:18 +01:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 21px;
|
2020-07-15 15:13:40 +02:00
|
|
|
border: 1px solid #d8d8d8;
|
|
|
|
background-color: #fff;
|
2018-01-12 20:48:18 +01:00
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 45px;
|
|
|
|
line-height: 44px;
|
2020-07-10 17:42:59 +02:00
|
|
|
font-weight: 300;
|
2018-01-12 20:48:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.simple-dropdown__selected {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Notification Modal
|
|
|
|
|
|
|
|
.notification-modal-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
|
|
border: 1px solid $alto;
|
|
|
|
box-shadow: 0 0 2px 2px $alto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-modal-header {
|
|
|
|
background: $wild-sand;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2018-01-16 21:15:18 +01:00
|
|
|
align-items: center;
|
2018-01-12 20:48:18 +01:00
|
|
|
padding: 30px;
|
|
|
|
font-size: 22px;
|
|
|
|
color: $nile-blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-modal-message {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-modal-message {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 17px;
|
|
|
|
color: $nile-blue;
|
|
|
|
}
|