1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-26 13:20:26 +02:00
metamask-extension/ui/app/css/itcss/generic/index.scss

72 lines
845 B
SCSS
Raw Normal View History

/*
Generic
*/
@import './reset.scss';
* {
box-sizing: border-box;
}
2017-08-14 10:31:27 +02:00
html,
body {
2017-10-13 00:46:09 +02:00
font-family: Roboto, Arial;
2017-08-14 10:31:27 +02:00
color: #4d4d4d;
font-weight: 300;
line-height: 1.4em;
2017-08-14 10:31:27 +02:00
background: #f7f7f7;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
html {
min-height: 500px;
}
.app-root {
overflow: hidden;
2017-08-14 10:31:27 +02:00
position: relative;
}
.app-primary {
display: flex;
}
2017-08-14 10:31:27 +02:00
input:focus,
textarea:focus {
outline: none;
}
2017-08-14 10:31:27 +02:00
/* stylelint-disable */
#app-content {
overflow-x: hidden;
height: 100%;
display: flex;
flex-direction: column;
2017-09-14 18:56:40 +02:00
@media screen and (max-width: $break-small) {
background-color: $white;
}
}
2017-08-14 10:31:27 +02:00
/* stylelint-enable */
a {
text-decoration: none;
color: inherit;
}
2017-08-14 10:31:27 +02:00
a:hover {
color: #df6b0e;
}
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;
}