1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 03:12:42 +02:00
metamask-extension/ui/css/base-styles.scss

125 lines
2.0 KiB
SCSS

* {
box-sizing: border-box;
}
html,
body {
color: var(--color-text-default);
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-size: 16px;
overflow: auto;
}
html {
min-height: 500px;
}
.mouse-user-styles {
button:focus,
input:focus,
textarea:focus,
.unit-input__input,
.currency-display__input {
outline: none;
}
}
/*
This error class is used in the following files still:
/ui/pages/create-account/import-account/json.js
/ui/pages/create-account/import-account/private-key.js
*/
.error {
color: var(--color-error-default);
margin-top: 3px;
margin-bottom: 9px;
overflow-wrap: anywhere;
}
/* stylelint-disable */
#app-content {
overflow-x: hidden;
height: 100%;
display: flex;
flex-direction: column;
background: var(--color-background-alternative);
@include screen-sm-max {
background-color: var(--color-background-default);
}
}
/* stylelint-enable */
a {
text-decoration: none;
color: inherit;
}
a:hover {
color: var(--color-primary-alternative);
}
input.large-input,
textarea.large-input {
padding: 8px;
}
input.large-input {
height: 36px;
}
.allcaps {
text-transform: uppercase;
}
.input-label {
padding-bottom: 10px;
font-weight: 400;
display: inline-block;
}
input.form-control {
padding-left: 10px;
font-size: 14px;
height: 40px;
border: 1px solid var(--color-border-default);
color: 1px solid var(--color-text-default);
background: transparent;
border-radius: 3px;
width: 100%;
&::-webkit-input-placeholder {
font-weight: 100;
color: var(--color-text-muted);
}
&::-moz-placeholder {
font-weight: 100;
color: var(--color-text-muted);
}
&:-ms-input-placeholder {
font-weight: 100;
color: var(--color-text-muted);
}
&:-moz-placeholder {
font-weight: 100;
color: var(--color-text-muted);
}
&--error {
border: 1px solid var(--color-error-default);
}
}
/** Default Typography on base elements **/
* {
font-family: $font-family;
}