blob: 9d55324e378d1278d70f7ffe27df21677f72ae59 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/*
Generic
*/
@import './reset.scss';
* {
box-sizing: border-box;
}
html,
body {
font-family: Roboto, 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;
}
/* stylelint-disable */
#app-content {
overflow-x: hidden;
height: 100%;
display: flex;
flex-direction: column;
@media screen and (max-width: $break-small) {
background-color: $white;
}
}
/* stylelint-enable */
a {
text-decoration: none;
color: inherit;
}
a:hover {
color: #df6b0e;
}
input.large-input,
textarea.large-input {
padding: 8px;
}
input.large-input {
height: 36px;
}
|