-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
60 lines (49 loc) · 792 Bytes
/
styles.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
body {
font-family: helvetica;
}
h1 {
text-align: center;
margin-bottom: 50px;
}
.textbox {
width: 40%;
margin: auto;
}
circle.leaf {
stroke: rebeccapurple;
stroke-width: 2;
fill: white;
}
circle.branch {
stroke: rebeccapurple;
stroke-width: 2;
fill: white;
}
circle.branch:hover {
stroke: red;
stroke-width: 4;
}
circle.leaf:hover {
stroke: lightgreen;
stroke-width: 4;
}
line.edge {
stroke:red;
stroke-width:2;
}
svg.tree {
/*border: 1px solid black;*/
display: flex;
justify-content: center;
align-items: center;
}
#treeBox {
/*border: 1px solid purple;*/
padding: 50px;
display: flex;
justify-content: space-around;
align-items: center;
}
#compDir {
font-size: 40px;
}