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