forked from intermine/bluegenes-tissue-expression-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.less
106 lines (90 loc) · 1.95 KB
/
style.less
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
.bluegenesTissueExpressionVisualizer {
// put all your css classes inside this block. Keeping them
// nested under the tool name prevents your styles from
// leaking out and affecting other elements by accident.
// If you want to learn more about LESS, visit lesscss.org.
// to build your css, run `lessc src/style.css dist/style.css --clean-css`
// in your terminal
// this is just an example class for root div element, you may modify or delete it as per your usecase
.rootContainer {
border: 1px solid black;
padding: 20px;
}
.error {
font-weight: 300;
display: flex;
justify-content: center;
font-size: 22px;
font-family: sans-serif;
}
.firstGraph {
margin-bottom: 10%;
.controls {
display: grid;
grid-template-columns: 33% 33% 33%;
grid-template-rows: 100% 100%;
div {
display: flex;
align-items: center;
border: 1px solid #dcc8e2;
font-family: sans-serif;
font-size: 12px;
input {
cursor: pointer;
margin-left: 40px;
// make it above span
z-index: 1;
}
span {
margin-left: 20px;
cursor: pointer;
}
}
div:nth-child(even) {
background: #fdf8fe;
cursor: pointer;
}
}
}
.secondGraph {
}
.loading-container {
display: flex;
justify-content: center;
margin: 40px;
div {
display: flex;
flex-flow: row nowrap;
align-items: center;
justify-content: space-between;
width: 2em;
font-size: 40px;
span {
width: 0.3em;
height: 1em;
background-color: #a373ca;
}
span:nth-of-type(1) {
animation: grow 1s -0.45s ease-in-out infinite;
}
span:nth-of-type(2) {
animation: grow 1s -0.3s ease-in-out infinite;
}
span:nth-of-type(3) {
animation: grow 1s -0.15s ease-in-out infinite;
}
span:nth-of-type(4) {
animation: grow 1s 0.15s ease-in-out infinite;
}
@keyframes grow {
0%,
100% {
transform: scaleY(1);
}
50% {
transform: scaleY(2);
}
}
}
}
}