-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
152 lines (122 loc) · 1.91 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/** css for crossfilter demo only **/
/** not sure why this is needed. foundation should be clearing rows.
#timeline {
margin-top: 40px;
} **/
.titlebar {
background: rgba(254, 206, 60, 0.8)
}
#progressbar {
margin-bottom: 10px;
font: 8px sans-serif;
text-transform: uppercase;
}
.title {
margin-bottom: 5px;
}
form span {
margin-left: 5px;
}
form label {
height: 20px;
}
form {
margin-bottom: 10px;
}
/* for billets vendus input */
input[disabled] ~ span {
opacity: 0.2;
}
.chart {
display: inline-block;
height: 151px;
margin-bottom: 20px;
}
.reset {
padding-left: 1em;
font-size: smaller;
color: #ccc;
}
.background.bar {
fill: #ccc;
}
.foreground.bar {
fill: #ffbb78;
}
.previewing .foreground.bar {
fill: #ccc;
}
.bar {
cursor: pointer;
}
.axis text {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.brush rect.extent {
fill: #F2CFAC;
fill-opacity: .125;
}
.brush .resize path {
fill: #eee;
stroke: #666;
}
.units {
max-width: 100px;
float: right;
font-size: 12px;
border: 0;
margin: 0;
}
.crosshairs {
cursor: move;
font: 8px sans-serif;
}
.crosshairs line {
stroke: #888;
}
.chart.sparse .scroller {
height: 200px;
overflow: auto;
overflow-x: hidden;
}
.chart.sparse .mode {
fill: #777;
margin: 2px;
font: 10px sans-serif;
float:right;
cursor: pointer;
}
.chart.sparse text {
fill: #777;
font: 10px sans-serif;
}
.chart.sparse .measure text.start {
fill: #777;
font: 8px sans-serif;
}
.chart.sparse .measure text.end {
fill: #fff;
font: 8px sans-serif;
}
.foreground.bar .preview {
display: none;
}
.preview.active {
fill: red;
}
.preview {
stroke: white; /* creates invisible surrounding area that's easier to hover over */
fill: #aaa;
}
/* not working... check this */
#timeline .scroller {
width: 1000px;
overflow: auto;
overflow-y: hidden;
}