aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/generic/index.scss
blob: 0beb63efeea0dee12180fc394b24f5627960ff07 (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
// Generic styles
* {
  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;
}

input.large-input, textarea.large-input {
  /*margin-bottom: 24px;*/
  padding: 8px;
}

input.large-input {
  height: 36px;
}