-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·105 lines (84 loc) · 1.44 KB
/
Copy pathstyle.css
File metadata and controls
executable file
·105 lines (84 loc) · 1.44 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
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);
font-family: 'Lato';
}
div{
}
}
.container{
width:100%;
margin:auto;
}
.container .canvas{
position: absolute;
width:100%;
height: 800px;
top: 0;
position: relative;
}
.container .control{
height:40px;
margin:auto;
}
/*------------font-------------*/
body{
font-size: 16px;
}
h1{ font-size:2em;
margin:15px 45%;
font-style: black}
h2{
font-size:1.3em;
}
p{
font-family:'Lato';
font-weight: 200 ;
font-size: 15pt;
margin-left: 30%;
margin-top: 5%;
}
/*------------tooltip-------------*/
.tooltip{
margin:15px 35%;
}
/*------------svg-----------------*/
.canvas .node{
fill: red;
stroke: #fff;
stroke-width:1.5px;
}
.canvas .link{
fill:none;
stroke:white;
stroke-width:1px;
opacity:.03;
}
.path {
stroke: white;
stroke-weight: 2px;
fill: white;
}
.animation-timeline{
height:100%;
position:relative;
}
.animation-timeline .scene{
height:100%;
width:100%;
position:relative;
}
.scene .scene-commentary{
width:500px;
z-index:9999;
padding: 20px 15px;
color:black;
margin-left: 40%;
}