-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
83 lines (69 loc) · 968 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
html,
body,
#svgWrapper,
svg {
margin: 0;
height: 100%;
touch-action: pinch-zoom;
}
g.circles circle:hover {
cursor: move;
}
#textInput {
border: none;
display: inline;
font-family: inherit;
font-size: inherit;
padding: none;
width: 100px;
}
.hovercursor {
cursor: pointer;
}
.moving {
fill: green;
}
#controls {
margin-top: 5px;
}
#controls input {
width: 3em;
}
#planediv {
width: 50%;
}
line {
stroke: lightgreen;
stroke-width: 3;
}
#plane {
width: 100%;
height: 500px;
background-color: #fdfdfd;
border-style: solid;
border-color: #2f2f2f;
border-width: 1px;
}
#treediv {
width: 100%;
float: left;
}
#tree {
width: 100%;
float: left;
height: 950px;
background-color: #2f2f2f;
}
#treeContainer {
position: relative;
}
#termExplainContainer {
position: absolute;
right: 0%;
padding: 10px;
background-color: #2f2f2f00;
}
#termExplainContainer p {
color: #fdfdfd;
font-size: 3px;
}