-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (67 loc) · 1.12 KB
/
style.css
File metadata and controls
74 lines (67 loc) · 1.12 KB
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
html,body,h1,h2,h3,h4,p,div,ul,li,svg{
margin:0;
padding:0;
font-size:100%;
}
/*------------Structure-------------*/
html,body{
height: 100%;
position: relative;
background: rgb(250,250,250);
}
.container{
width:1170px;
margin:auto;
}
.container .plot{
width:100%;
height: 700px;
position: relative;
}
/*------------font-------------*/
body{
font-family:"Roboto",Arial,sans-serif;
font-size: 16px;
color:rgb(50,50,50);
}
h1{
font-size: 2em;
margin: 30px 0 30px;
}
h2{
font-size:1.5em;
margin: 0 0 20px;
}
p{
margin: 0 0 20px;
}
/*------------tooltip-------------*/
.tooltip{
width: 150px;
padding: 15px;
background: yellow;
position: absolute;
top:0;
opacity:0;
}
/*-----------control--------------*/
.control .button{
color:#000;
background: #fff;
text-align:center;
display:block;
height:60px;
float:left;
line-height:60px;
padding: 0 20px;
margin-right:30px;
}
.control .button:hover{
background: rgb(245,245,245);
}
/*------------svg-----------------*/
.plot .team circle{
stroke-width:2px;
stroke: rgb(50,50,50);
fill: rgba(200,200,200,.3)
}