Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
forestofarden committed Sep 12, 2014
0 parents commit fa495c3
Show file tree
Hide file tree
Showing 155 changed files with 137,504 additions and 0 deletions.
16 changes: 16 additions & 0 deletions TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
-- make reset button work
-- add some other dimensions
author
title
intersecting date
-- toggle to switch aggregations
total receipts
tickets sold
performances
[ avg receipts per day ]
[ avg ticket sales per day ]
-- display flip book page for current date
-- timeline improvements
change granularity (years, months, days)
scroll timeline left/right DONE
y axis outside of scroller
67 changes: 67 additions & 0 deletions app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/** css for crossfilter demo only **/


.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;
}

.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;
}

/* not working... check this */
#timeline .scroller {
width: 1000px;
overflow: auto;
overflow-y: hidden;
}
1 change: 1 addition & 0 deletions crossfilter.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added css/.DS_Store
Binary file not shown.
Binary file added css/.sass-cache/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
44 changes: 44 additions & 0 deletions css/fonts.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*Add fonts*/

@font-face {
font-family: 'MuseoSans300';
src: url('fonts/2386DB_1_0.eot'); /* IE9 Compat Modes */
src: url('fonts/2386DB_1_0.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/2386DB_1_0.woff') format('woff'), /* Modern Browsers */
url('fonts/2386DB_1_0.ttf') format('truetype'); /* Safari, Android, iOS */
}

@font-face {
font-family: 'MuseoSans500';
src: url('fonts/2386DB_2_0.eot'); /* IE9 Compat Modes */
src: url('fonts/2386DB_2_0.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/2386DB_2_0.woff') format('woff'), /* Modern Browsers */
url('fonts/2386DB_2_0.ttf') format('truetype'); /* Safari, Android, iOS */
}

@font-face {
font-family: 'MuseoSans700';
src: url('fonts/2386DB_0_0.eot'); /* IE9 Compat Modes */
src: url('fonts/2386DB_0_0.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/2386DB_0_0.woff') format('woff'), /* Modern Browsers */
url('fonts/2386DB_0_0.ttf') format('truetype'); /* Safari, Android, iOS */
}

@font-face {
font-family: 'Museo300';
src: url('fonts/23859B_2_0.eot'); /* IE9 Compat Modes */
src: url('fonts/23859B_2_0.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/23859B_2_0.woff') format('woff'), /* Modern Browsers */
url('fonts/23859B_2_0.ttf') format('truetype'); /* Safari, Android, iOS */
}

@font-face {
font-family: 'Museo500';
src: url('fonts/23859B_4_0.eot'); /* IE9 Compat Modes */
src: url('fonts/23859B_4_0.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/23859B_4_0.woff') format('woff'), /* Modern Browsers */
url('fonts/23859B_4_0.ttf') format('truetype'); /* Safari, Android, iOS */
}


/*end font add*/
Binary file added css/fonts/23859B_2_0.eot
Binary file not shown.
Binary file added css/fonts/23859B_2_0.ttf
Binary file not shown.
Binary file added css/fonts/23859B_2_0.woff
Binary file not shown.
Binary file added css/fonts/23859B_4_0.eot
Binary file not shown.
Binary file added css/fonts/23859B_4_0.ttf
Binary file not shown.
Binary file added css/fonts/23859B_4_0.woff
Binary file not shown.
Binary file added css/fonts/2386DB_0_0.eot
Binary file not shown.
Binary file added css/fonts/2386DB_0_0.ttf
Binary file not shown.
Binary file added css/fonts/2386DB_0_0.woff
Binary file not shown.
Binary file added css/fonts/2386DB_1_0.eot
Binary file not shown.
Binary file added css/fonts/2386DB_1_0.ttf
Binary file not shown.
Binary file added css/fonts/2386DB_1_0.woff
Binary file not shown.
Binary file added css/fonts/2386DB_2_0.eot
Binary file not shown.
Binary file added css/fonts/2386DB_2_0.ttf
Binary file not shown.
Binary file added css/fonts/2386DB_2_0.woff
Binary file not shown.
Loading

0 comments on commit fa495c3

Please sign in to comment.