forked from Shians/BiocExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmystyle.css
executable file
·68 lines (57 loc) · 901 Bytes
/
mystyle.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
p {
padding-left: 10px;
padding-right: 10px;
max-height: 270px;
overflow: scroll;
}
circle {
transition: all .1s ease-in-out;
}
circle:hover {
transform: scale(1.05);
cursor: pointer;
}
.bubble-text {
font: 13px sans-serif;
pointer-events: none;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.point {
fill: steelblue;
stroke: #000;
}
.info-box {
border: 6px solid;
border-radius: 4px;
position: absolute;
top: 100px;
left: 200px;
overflow-x: hidden;
}
.package-name {
font-size: 25px;
color: white;
padding: .6em 1em .6em;
}
.info-text {
font-size: 14px;
padding: .1em .3em .1em 1em;
max-height: 300px;
border-top: 2px solid;
border-top-color: inherit;
}
.info-title {
font-size: 16px;
padding-left: 5px;
font-weight: bold;
}
.scrollable-menu {
height: auto;
max-height: 300px;
overflow-x: hidden;
}