|
27
|
1 |
@CHARSET "ISO-8859-1"; |
|
|
2 |
|
|
|
3 |
/* -- General style -- */ |
|
|
4 |
|
|
|
5 |
body { |
|
|
6 |
width: 960px; |
|
|
7 |
font: 14px Helvetica Neue; |
|
|
8 |
text-rendering: optimizeLegibility; |
|
|
9 |
overflow-y: scroll; |
|
|
10 |
z-index: 1; |
|
|
11 |
position: relative; |
|
|
12 |
} |
|
|
13 |
|
|
|
14 |
h1 { |
|
|
15 |
font-size: 36px; |
|
|
16 |
font-weight: 300; |
|
|
17 |
margin-bottom: .3em; |
|
|
18 |
} |
|
|
19 |
|
|
|
20 |
|
|
|
21 |
/* -- Streamgraph Style -- */ |
|
|
22 |
|
|
|
23 |
#streamgraphTimeline { |
|
|
24 |
font: 10px sans-serif; |
|
|
25 |
margin: 10px 0; |
|
|
26 |
} |
|
|
27 |
|
|
|
28 |
svg path { |
|
|
29 |
position: relative; |
|
|
30 |
} |
|
|
31 |
|
|
|
32 |
/* -- Treemap style -- */ |
|
|
33 |
|
|
|
34 |
#treemap { |
|
|
35 |
margin: 30px 0; |
|
|
36 |
} |
|
|
37 |
|
|
|
38 |
.cell { |
|
|
39 |
border: 1px solid white; |
|
|
40 |
font: 15px/17px sans-serif; |
|
|
41 |
overflow: hidden; |
|
|
42 |
position: absolute; |
|
|
43 |
text-indent: 0px; |
|
|
44 |
} |
|
|
45 |
.cell.selected { |
|
|
46 |
border-color: black; |
|
|
47 |
z-index: 5; |
|
|
48 |
} |
|
|
49 |
.details { |
|
|
50 |
background: none repeat scroll 0 0 white; |
|
|
51 |
border: 1px solid black; |
|
|
52 |
border-radius: 7px 0 0 0; |
|
|
53 |
display: none; |
|
|
54 |
margin: 10px 0px 0px 10px; |
|
|
55 |
padding: 10px; |
|
|
56 |
position: absolute; |
|
|
57 |
width: 200px; |
|
|
58 |
z-index: 10; |
|
|
59 |
} |
|
|
60 |
.details .size { |
|
|
61 |
font-weight: bold; |
|
|
62 |
} |
|
|
63 |
.details .name { |
|
|
64 |
font-weight: bold; |
|
|
65 |
margin-left: 10px; |
|
|
66 |
} |
|
|
67 |
|
|
|
68 |
.title { |
|
|
69 |
font-weight: bold; |
|
|
70 |
z-index: 2; |
|
|
71 |
position: absolute; |
|
|
72 |
background-color: white; |
|
|
73 |
text-align: center; |
|
|
74 |
top: 0px; |
|
|
75 |
left: 0px; |
|
|
76 |
margin: 0px; |
|
|
77 |
opacity: 0.4; |
|
|
78 |
}; |
|
|
79 |
|
|
|
80 |
.img { |
|
|
81 |
position: relative; |
|
|
82 |
} |
|
|
83 |
|
|
|
84 |
/* -- Style for the selectors -- */ |
|
|
85 |
|
|
|
86 |
div.selecteur { |
|
|
87 |
width: 5px; |
|
|
88 |
height: 50px; |
|
|
89 |
z-index: 2; |
|
|
90 |
position: absolute; |
|
|
91 |
background-color: #FFFFFF; |
|
|
92 |
opacity: 0.5; |
|
|
93 |
border-style: solid; |
|
|
94 |
border-color: #000000; |
|
|
95 |
border-width: 2px 0px; |
|
|
96 |
} |
|
|
97 |
|
|
|
98 |
div.selecteur.gauche { |
|
|
99 |
border-left-width: 2px; |
|
|
100 |
} |
|
|
101 |
|
|
|
102 |
div.selecteur.droite { |
|
|
103 |
border-right-width: 2px; |
|
|
104 |
} |
|
|
105 |
|
|
|
106 |
div.selection { |
|
|
107 |
background: black; |
|
|
108 |
height: 3px; |
|
|
109 |
z-index: 2; |
|
|
110 |
position: absolute; |
|
|
111 |
opacity: 1; |
|
|
112 |
} |
|
|
113 |
|
|
|
114 |
div.cache { |
|
|
115 |
background-color:#000000; |
|
|
116 |
opacity:0.3; |
|
|
117 |
z-index: 2; |
|
|
118 |
position: absolute; |
|
|
119 |
} |
|
|
120 |
|
|
|
121 |
div.cache.droite { |
|
|
122 |
} |
|
|
123 |
|
|
|
124 |
div.cache.gauche { |
|
|
125 |
width: 0px; |
|
|
126 |
} |
|
|
127 |
|
|
|
128 |
/* -- streamgraph -- */ |
|
|
129 |
|
|
|
130 |
#streamgraphTimeline div.selecteur { |
|
|
131 |
height: 50px; |
|
|
132 |
} |
|
|
133 |
|
|
|
134 |
#streamgraphTimeline div.selection { |
|
|
135 |
height: 5px; |
|
|
136 |
} |
|
|
137 |
|
|
|
138 |
#streamgraphTimeline div.cache { |
|
|
139 |
height: 50px; |
|
|
140 |
} |
|
|
141 |
|
|
|
142 |
.time-unit { |
|
|
143 |
border-width: 0 1px 1px; |
|
|
144 |
border-style: solid; |
|
|
145 |
border-color: black; |
|
|
146 |
display: inline-block; |
|
|
147 |
margin-right: 1px; |
|
|
148 |
padding: 1px; |
|
|
149 |
text-align: center; |
|
|
150 |
width: 85px; |
|
|
151 |
} |
|
|
152 |
|
|
|
153 |
#streamgraphTimeline .curseur { |
|
|
154 |
height: 50px; |
|
|
155 |
width: 1px; |
|
|
156 |
background: black; |
|
|
157 |
z-index: 5; |
|
|
158 |
position: absolute; |
|
|
159 |
} |