summaryrefslogtreecommitdiff
path: root/animism-align/frontend/site/site.css
blob: 5a53028f97db352056db8cb318568dd5ca5ce8c2 (plain)
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
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  background: #000;
  color: #ddd;
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  height: 100%;
  width: 100%;
}
.gray {
  color: #888;
}

/* layout */

.container {
  height: 100%;
  width: 100%;
}
.app {
  /*display: flex;*/
  height: 100%;
  width: 100%;
}
.app > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.app .body {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  position: relative;
  height: 100%;
  width: 100%;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.row > div {
  margin-right: 1.5rem;
}
.row > div:last-child {
  margin-right: 0;
}