Seetha commited on
Commit
3595b58
1 Parent(s): b495590

Upload 3 files

Browse files
Files changed (3) hide show
  1. level2.css +18 -0
  2. side.css +21 -0
  3. tree.css +15 -0
level2.css ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ path.link {
2
+ fill: none;
3
+
4
+ stroke-width: 1.5px;
5
+ }
6
+
7
+
8
+ circle {
9
+ fill: #ccc;
10
+ stroke: #333;
11
+ stroke-width: 1.5px;
12
+ }
13
+
14
+ text {
15
+ font: 10px sans-serif;
16
+ pointer-events: none;
17
+ }
18
+
side.css ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*.tree*/
2
+ /*{*/
3
+ /* position: absolute;*/
4
+ /* top: 50%;*/
5
+ /* left: 50%;*/
6
+ /* transform: translate(-50%, -50%);*/
7
+ /* background-color : #4444aa;*/
8
+ /*}*/
9
+ /*.graph*/
10
+ /*{*/
11
+ /* position: absolute;*/
12
+ /* top: 50%;*/
13
+ /* right: 50%;*/
14
+ /* transform: translate(50%, 50%);*/
15
+ /*}*/
16
+
17
+ #container{
18
+ display: flex;
19
+ flex-direction: row;
20
+ width: 100vw;
21
+ }
tree.css ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .node circle {
2
+ fill: #fff;
3
+ stroke: black;
4
+ stroke-width: 2px;
5
+ }
6
+
7
+ .node text {
8
+ font: 12px sans-serif;
9
+ }
10
+
11
+ .link {
12
+ fill: none;
13
+
14
+ stroke-width: 2px;
15
+ }