-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplotting.css
More file actions
107 lines (91 loc) · 1.69 KB
/
plotting.css
File metadata and controls
107 lines (91 loc) · 1.69 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
102
103
104
105
106
107
html, body {
padding: 0;
margin: 0;
background-color: #222;
}
#wrapper {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: row;
}
#leftwrapper {
width: 50vw;
height: 95vh;
padding-top: 2.5vh;
padding-bottom: 2.5vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#rightwrapper {
width: 50vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#dragwrapper {
}
#scatterplot {
width: 45vw;
height: 45vw;
border: 3px solid #444;
transform: scale(1, -1);
}
circle {
transition: cx 1s ease-in-out, cy 1s ease-in-out;
}
#barplot {
width: 45vw;
height: 45vw;
border: 3px solid #444;
}
rect {
transition: y 1s ease-in-out, height 1s ease-in-out;
}
#selectorwrapper {
height: 25vh;
margin-top: 0vh;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.dimensionselector {
width: 45vw;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
border-radius: 5px;
}
.dimensionselectorButton {
height: 5vh;
border: none;
padding: 0;
margin: 0;
flex-grow: 1;
background-color: #2855bf;
color: #fff;
/*border: 3px solid #3c69d3;*/
border: 3px solid #647de7;
margin-left: -2px;
margin-right: -2px;
}
.dimensionselectorButton:disabled {
background-color: #002d97;
}
.dimensionselectorButton:hover:enabled {
background-color: #1441ab
}
.dimensionselectorButton:last-child {
border-bottom-right-radius: 5px;
border-top-right-radius: 5px;
}
.dimensionselectorButton:first-child {
border-bottom-left-radius: 5px;
border-top-left-radius: 5px;
}