-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
91 lines (77 loc) · 1.16 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
84
85
86
87
88
89
90
91
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Slabo+27px');
*{
box-sizing: border-box;
}
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
line-height: 1.7;
font-size: 1.2em;
}
h1, h2, h3, h4 {
font-family: 'Slabo 27px', serif;
text-align: center;
border-bottom:1px solid #eaeaea;
}
h2{
background: #444;
color:#fff;
}
canvas{
/* max-width: 600px; */
margin: 1em auto 0 auto;
border:1px solid #999;
}
.chart-container{
width:100%;
height:370px;
}
.canvasjs-chart-credit{
display:none;
}
canvas.big {
max-width: 800px;
}
.page{
max-width: 900px;
margin: 0 auto;
text-align: center;
}
@media screen and (max-width:900px) {
.page{
max-width: 95vw;
}
}
p, ul{
text-align: left;
}
img {
width: 100%;
max-width:600px;
margin: 0 auto;
}
table{
margin:0 auto;
max-width:100%;
overflow:scroll;
font-size:0.9em;
}
table, tr, td {
border:1px solid #aaa;
}
footer {
margin-top:2em;
font-size:0.8em;
background:#eaeaea;
color:#333;
padding:1em;
text-align: left;
}
.commentary{
margin:1em 0;
background: #eaeaea;
padding: 1em;
font-style: italic;
font-size:0.9em;
}