2017-08-06 23:03:44 +02:00
|
|
|
/*
|
|
|
|
Generic
|
|
|
|
*/
|
|
|
|
|
|
|
|
@import './reset.scss';
|
|
|
|
|
2017-08-06 22:02:31 +02:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
font-family: 'Montserrat Regular', Arial;
|
|
|
|
color: #4D4D4D;
|
|
|
|
font-weight: 300;
|
|
|
|
line-height: 1.4em;
|
|
|
|
background: #F7F7F7;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
min-height: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-root {
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-primary {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:focus, textarea:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-content {
|
|
|
|
overflow-x: hidden;
|
|
|
|
min-width: 357px;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover{
|
|
|
|
color: #df6b0e;
|
|
|
|
}
|
2017-08-06 22:24:06 +02:00
|
|
|
|
|
|
|
input.large-input, textarea.large-input {
|
|
|
|
/*margin-bottom: 24px;*/
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.large-input {
|
|
|
|
height: 36px;
|
|
|
|
}
|