-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
executable file
·88 lines (76 loc) · 1.44 KB
/
app.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
84
85
86
87
88
.graph-tooltip {
position: absolute;
text-align: center;
padding: 3px 5px 3px 5px;
font: 12px sans-serif;
background: white;
border: 1px solid gray;
border-radius: 4px;
pointer-events: none;
}
.graph-tooltip-first {
font-weight: bold;
text-align: left;
padding-right: 5px;
}
.graph-grid .item {
padding: 5px;
margin: 5px;
float: left;
cursor: pointer;
border-radius:5px
}
.graph-grid .current {
border-color:#66afe9;
background-color:#EEEEFF;
outline:0;
-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.graph-grid .image {
padding: 10px;
width: 100px;
height: 86px;
}
.graph-grid .title {
text-align: center;
font-size: 0.9em;
word-wrap: break-work;
font-weight: bold;
width: 100px;
}
.graph-grid .header {
font-size: 0.9em;
font-weight: bold;
padding-bottom: 10px;
}
.graph-viewport {
height: inherit;
min-height: 50px;
}
.graph-viewport .info {
position: absolute;
margin: 10px 20px 50px 10px;
}
.graph-viewport .text {
position: relative;
margin-left: 5px;
top: -1px;
font-size: 1.0em;
display: inline;
}
.graph-viewport .icon {
font-size: 1.2em;
display: inline-block;
}
.graph-viewport .graph-viewport-container {
float: left;
display: block;
height: 100%;
}
.graph-viewport .graph-viewport-canvas {
display: block;
width:100%;
min-height: 100px;
height: inherit;
}