blob: 74c1327c6148fadc7a384f09fda1976479468597 (
plain)
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
|
.App {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 40vmin;
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #61dafb;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.root {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.graph-area{
border-style: solid;
border-color: darkgray;
border-width: 1px 0 1px 0;
position: relative;
width: 100%;
height: 70%;
}
|