-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (72 loc) · 1.04 KB
/
style.css
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
div,
html,
body {
margin: 0;
padding: 0;
}
#container {
width: 100%;
padding: 0px;
margin: 0px;
}
#sections {
width: 33%;
display: inline-block;
position: relative;
background-color: white;
padding: 0;
margin: 0;
direction:rtl;
}
#charts {
width: 67%;
display: inline-block;
position: fixed;
background-color: white;
}
#section {
height: 100vh;
width: 40vh;
background-color: white;
display: flex;
padding-left: 0%;
padding-right: 5vh;
align-items: center;
justify-content: right;
direction:ltr;
}
#section-text {
color: black;
}
#chart {
height: 100vh;
background-color: white;
color: black;
display: flex;
margin-right: 3vw;
align-items: center;
}
#chart-text {
justify-items: left;
}
h1 {
font-size: 10vh;
font-family: 'Lato', sans-serif;
font-weight: 300;
}
h2 {
font-size: 6vh;
font-family: 'Lato', sans-serif;
font-weight: 400;
}
p {
font-size: 3vh;
font-family: 'Roboto', sans-serif;
font-weight: 300;
}
.comment {
font-size: 2vh;
font-family: 'Roboto', sans-serif;
font-weight: 300;
color: #888;
}