blob: 2cbe1734b732af329db8e215945526acac5a3b71 [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;
39 }
40}
41
42.header {
43 display: flex;
44 align-items: center;
45 background-color: #1f1f1f;
46}
47.header-title {
48 flex: 1;
49 font-size: 1.5rem;
50 margin: 1rem;
51}
52.header-date {
53 flex: 1;
54 text-align: right;
55 margin: 1rem;
56 white: white;
57}
58
59.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}