2017-08-06 23:03:44 +02:00
|
|
|
|
|
|
|
|
2017-08-06 22:02:31 +02:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2017-08-14 10:31:27 +02:00
|
|
|
html,
|
|
|
|
body {
|
2022-02-25 23:11:22 +01:00
|
|
|
color: var(--color-text-default);
|
2017-08-06 22:02:31 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2019-04-16 21:35:22 +02:00
|
|
|
font-size: 16px;
|
2020-05-04 17:04:41 +02:00
|
|
|
overflow: auto;
|
2017-08-06 22:02:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
min-height: 500px;
|
|
|
|
}
|
|
|
|
|
2019-07-16 04:36:57 +02:00
|
|
|
.mouse-user-styles {
|
2019-07-17 03:28:01 +02:00
|
|
|
button:focus,
|
|
|
|
input:focus,
|
|
|
|
textarea:focus,
|
|
|
|
.unit-input__input,
|
2020-07-15 15:13:40 +02:00
|
|
|
.currency-display__input {
|
2019-07-16 04:36:57 +02:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-07 17:58:48 +02:00
|
|
|
/*
|
|
|
|
This error class is used in the following files still:
|
2021-04-28 21:53:59 +02:00
|
|
|
/ui/pages/create-account/import-account/json.js
|
|
|
|
/ui/pages/create-account/import-account/private-key.js
|
2020-08-07 17:58:48 +02:00
|
|
|
*/
|
|
|
|
.error {
|
2022-03-24 19:08:08 +01:00
|
|
|
color: var(--color-error-default);
|
2020-09-02 17:45:09 +02:00
|
|
|
margin-top: 3px;
|
2020-08-07 17:58:48 +02:00
|
|
|
margin-bottom: 9px;
|
2022-09-22 16:56:51 +02:00
|
|
|
overflow-wrap: anywhere;
|
2020-08-07 17:58:48 +02:00
|
|
|
}
|
|
|
|
|
2017-08-14 10:31:27 +02:00
|
|
|
/* stylelint-disable */
|
2017-08-06 22:02:31 +02:00
|
|
|
#app-content {
|
|
|
|
overflow-x: hidden;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-02-25 23:11:22 +01:00
|
|
|
background: var(--color-background-alternative);
|
2017-09-14 18:56:40 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2022-02-25 23:11:22 +01:00
|
|
|
background-color: var(--color-background-default);
|
2017-09-14 18:56:40 +02:00
|
|
|
}
|
2017-08-06 22:02:31 +02:00
|
|
|
}
|
2017-08-14 10:31:27 +02:00
|
|
|
/* stylelint-enable */
|
2017-08-06 22:02:31 +02:00
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2017-08-14 10:31:27 +02:00
|
|
|
a:hover {
|
2022-03-16 15:49:25 +01:00
|
|
|
color: var(--color-primary-alternative);
|
2017-08-06 22:02:31 +02:00
|
|
|
}
|
2017-08-06 22:24:06 +02:00
|
|
|
|
2017-08-14 10:31:27 +02:00
|
|
|
input.large-input,
|
|
|
|
textarea.large-input {
|
2017-08-06 22:24:06 +02:00
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.large-input {
|
|
|
|
height: 36px;
|
|
|
|
}
|
2018-01-29 21:29:01 +01:00
|
|
|
|
|
|
|
.allcaps {
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2018-03-07 01:15:45 +01:00
|
|
|
|
2018-04-22 09:14:40 +02:00
|
|
|
.input-label {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
font-weight: 400;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.form-control {
|
|
|
|
padding-left: 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
height: 40px;
|
2022-03-31 22:11:06 +02:00
|
|
|
border: 1px solid var(--color-border-default);
|
|
|
|
color: 1px solid var(--color-text-default);
|
2022-03-18 23:55:33 +01:00
|
|
|
background: transparent;
|
2018-04-22 09:14:40 +02:00
|
|
|
border-radius: 3px;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&::-webkit-input-placeholder {
|
|
|
|
font-weight: 100;
|
2022-03-31 22:11:06 +02:00
|
|
|
color: var(--color-text-muted);
|
2018-04-22 09:14:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-placeholder {
|
|
|
|
font-weight: 100;
|
2022-03-31 22:11:06 +02:00
|
|
|
color: var(--color-text-muted);
|
2018-04-22 09:14:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:-ms-input-placeholder {
|
|
|
|
font-weight: 100;
|
2022-03-31 22:11:06 +02:00
|
|
|
color: var(--color-text-muted);
|
2018-04-22 09:14:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:-moz-placeholder {
|
|
|
|
font-weight: 100;
|
2022-03-31 22:11:06 +02:00
|
|
|
color: var(--color-text-muted);
|
2018-04-22 09:14:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&--error {
|
2022-02-25 23:11:22 +01:00
|
|
|
border: 1px solid var(--color-error-default);
|
2018-04-22 09:14:40 +02:00
|
|
|
}
|
|
|
|
}
|
2018-05-20 08:04:19 +02:00
|
|
|
|
2020-07-29 22:04:02 +02:00
|
|
|
/** Default Typography on base elements **/
|
|
|
|
* {
|
|
|
|
font-family: $font-family;
|
|
|
|
}
|