blob: 3d155caf6f7be3de1d63cb176e7a7dca35f4333d [file] [log] [blame]
Matteo Scandolof6acdbe2016-12-13 10:29:37 -08001
2
3html, body, #root {
4 margin: 0;
5 height: 100%;
6 font-family: 'Open Sans', sans-serif;
7}
8
9body, h1, h2, h3 {
10 font-weight: 300
11}
12
13a {
14 color: white;
15 text-decoration: none;
16
17 &:hover {
18 color: #5aadbb;
19 }
20}
21
22.main-container {
23 display: flex;
24 flex-direction: column;
25 min-height: 100%;
26}
27.main {
28 flex: 1;
29 display: flex;
30 flex-direction: row;
31
32 .content {
33 display: flex;
34 flex: 1;
35 flex-direction: column;
36 flex-basis: 90%;
37 background: darken(grey, 25);
38 padding: 20px;
Matteo Scandolo035c5932016-12-14 09:55:15 -080039 color: #eee;
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080040 }
41}
42
43.header {
44 display: flex;
45 align-items: center;
46 background-color: #1f1f1f;
47}
48.header-title {
49 flex: 1;
50 font-size: 1.5rem;
51 margin: 1rem;
52}
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080053
54.footer {
55 padding: 0.5rem;
56 font-size: 1rem;
57 background-color: #1f1f1f;
58 text-align: center;
59 color: white;
Matteo Scandolod819c922016-12-02 14:06:14 -080060}
Matteo Scandolo035c5932016-12-14 09:55:15 -080061
62h1 {
63 color: #fff;
64}