-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (43 loc) · 724 Bytes
/
style.css
File metadata and controls
47 lines (43 loc) · 724 Bytes
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
html,body,div,ul,li,svg{
margin:0;
padding:0;
list-style:none;
}
/*------------Global-------------*/
html,body{
height: 100%;
position: relative;
background: rgb(242,244,233);
}
.container{
height:100%;
}
.container .section{
width:100%;
}
.container .canvas{
width:100%;
background:white;
height:600px;
}
/*------------font-------------*/
body{
font-size: 16px;
}
h1{ font-size:2em;}
h2{ font-size:1.3em;}
p{
font-family:"Droid Serif", serif;
}
/*------------styling for axes-----------*/
.axis .domain{
fill:none
}
.axis .tick line{
stroke:rgb(180,180,180);
stroke-width:1px;
}
.axis .tick text{
font-size:10px;
fill:rgb(180,180,180);
}