twigg-app 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/data/quips.yml +45 -0
- data/lib/twigg-app/app/quips.rb +13 -0
- data/lib/twigg-app/app/routes.rb +43 -0
- data/lib/twigg-app/app/server.rb +146 -0
- data/lib/twigg-app/app/version.rb +5 -0
- data/lib/twigg-app/app.rb +14 -0
- data/lib/twigg-app.rb +5 -0
- data/public/application.js +106 -0
- data/public/favicon.ico +0 -0
- data/public/favicon.png +0 -0
- data/public/vendor/bootstrap/CNAME +1 -0
- data/public/vendor/bootstrap/CONTRIBUTING.md +66 -0
- data/public/vendor/bootstrap/Gruntfile.js +195 -0
- data/public/vendor/bootstrap/LICENSE +176 -0
- data/public/vendor/bootstrap/README.md +139 -0
- data/public/vendor/bootstrap/_config.yml +28 -0
- data/public/vendor/bootstrap/_includes/ads.html +1 -0
- data/public/vendor/bootstrap/_includes/footer.html +33 -0
- data/public/vendor/bootstrap/_includes/header.html +43 -0
- data/public/vendor/bootstrap/_includes/nav-components.html +135 -0
- data/public/vendor/bootstrap/_includes/nav-css.html +77 -0
- data/public/vendor/bootstrap/_includes/nav-customize.html +40 -0
- data/public/vendor/bootstrap/_includes/nav-getting-started.html +28 -0
- data/public/vendor/bootstrap/_includes/nav-javascript.html +88 -0
- data/public/vendor/bootstrap/_includes/nav-main.html +32 -0
- data/public/vendor/bootstrap/_includes/old-bs-docs.html +8 -0
- data/public/vendor/bootstrap/_includes/social-buttons.html +16 -0
- data/public/vendor/bootstrap/_layouts/customize.html +52 -0
- data/public/vendor/bootstrap/_layouts/default.html +72 -0
- data/public/vendor/bootstrap/_layouts/home.html +43 -0
- data/public/vendor/bootstrap/assets/css/docs.css +896 -0
- data/public/vendor/bootstrap/assets/css/pygments-manni.css +66 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/favicon.png +0 -0
- data/public/vendor/bootstrap/assets/js/application.js +82 -0
- data/public/vendor/bootstrap/assets/js/customizer.js +175 -0
- data/public/vendor/bootstrap/assets/js/holder.js +419 -0
- data/public/vendor/bootstrap/assets/js/html5shiv.js +8 -0
- data/public/vendor/bootstrap/assets/js/jquery.bbq.min.js +1287 -0
- data/public/vendor/bootstrap/assets/js/jquery.js +5 -0
- data/public/vendor/bootstrap/assets/js/jszip.js +1425 -0
- data/public/vendor/bootstrap/assets/js/less.js +9 -0
- data/public/vendor/bootstrap/assets/js/respond.min.js +6 -0
- data/public/vendor/bootstrap/assets/js/uglify.js +14 -0
- data/public/vendor/bootstrap/bower.json +11 -0
- data/public/vendor/bootstrap/browserstack.json +37 -0
- data/public/vendor/bootstrap/components.html +2555 -0
- data/public/vendor/bootstrap/composer.json +20 -0
- data/public/vendor/bootstrap/css.html +2276 -0
- data/public/vendor/bootstrap/customize.html +1480 -0
- data/public/vendor/bootstrap/dist/css/bootstrap.css +5579 -0
- data/public/vendor/bootstrap/dist/css/bootstrap.min.css +9 -0
- data/public/vendor/bootstrap/dist/js/bootstrap.js +1993 -0
- data/public/vendor/bootstrap/dist/js/bootstrap.min.js +6 -0
- data/public/vendor/bootstrap/getting-started.html +375 -0
- data/public/vendor/bootstrap/index.html +16 -0
- data/public/vendor/bootstrap/javascript.html +1904 -0
- data/public/vendor/bootstrap/js/affix.js +126 -0
- data/public/vendor/bootstrap/js/alert.js +98 -0
- data/public/vendor/bootstrap/js/button.js +109 -0
- data/public/vendor/bootstrap/js/carousel.js +217 -0
- data/public/vendor/bootstrap/js/collapse.js +179 -0
- data/public/vendor/bootstrap/js/dropdown.js +154 -0
- data/public/vendor/bootstrap/js/modal.js +244 -0
- data/public/vendor/bootstrap/js/popover.js +117 -0
- data/public/vendor/bootstrap/js/scrollspy.js +158 -0
- data/public/vendor/bootstrap/js/tab.js +135 -0
- data/public/vendor/bootstrap/js/tests/index.html +52 -0
- data/public/vendor/bootstrap/js/tests/phantom.js +63 -0
- data/public/vendor/bootstrap/js/tests/server.js +14 -0
- data/public/vendor/bootstrap/js/tests/unit/affix.js +25 -0
- data/public/vendor/bootstrap/js/tests/unit/alert.js +62 -0
- data/public/vendor/bootstrap/js/tests/unit/button.js +116 -0
- data/public/vendor/bootstrap/js/tests/unit/carousel.js +87 -0
- data/public/vendor/bootstrap/js/tests/unit/collapse.js +164 -0
- data/public/vendor/bootstrap/js/tests/unit/dropdown.js +219 -0
- data/public/vendor/bootstrap/js/tests/unit/modal.js +177 -0
- data/public/vendor/bootstrap/js/tests/unit/phantom.js +69 -0
- data/public/vendor/bootstrap/js/tests/unit/popover.js +133 -0
- data/public/vendor/bootstrap/js/tests/unit/scrollspy.js +37 -0
- data/public/vendor/bootstrap/js/tests/unit/tab.js +86 -0
- data/public/vendor/bootstrap/js/tests/unit/tooltip.js +437 -0
- data/public/vendor/bootstrap/js/tests/unit/transition.js +13 -0
- data/public/vendor/bootstrap/js/tests/vendor/jquery.js +5 -0
- data/public/vendor/bootstrap/js/tests/vendor/qunit.css +232 -0
- data/public/vendor/bootstrap/js/tests/vendor/qunit.js +1510 -0
- data/public/vendor/bootstrap/js/tooltip.js +382 -0
- data/public/vendor/bootstrap/js/transition.js +56 -0
- data/public/vendor/bootstrap/less/alerts.less +71 -0
- data/public/vendor/bootstrap/less/badges.less +51 -0
- data/public/vendor/bootstrap/less/bootstrap.less +63 -0
- data/public/vendor/bootstrap/less/breadcrumbs.less +23 -0
- data/public/vendor/bootstrap/less/button-groups.less +244 -0
- data/public/vendor/bootstrap/less/buttons.less +159 -0
- data/public/vendor/bootstrap/less/carousel.less +204 -0
- data/public/vendor/bootstrap/less/close.less +33 -0
- data/public/vendor/bootstrap/less/code.less +56 -0
- data/public/vendor/bootstrap/less/component-animations.less +29 -0
- data/public/vendor/bootstrap/less/dropdowns.less +176 -0
- data/public/vendor/bootstrap/less/forms.less +332 -0
- data/public/vendor/bootstrap/less/grid.less +340 -0
- data/public/vendor/bootstrap/less/input-groups.less +127 -0
- data/public/vendor/bootstrap/less/jumbotron.less +29 -0
- data/public/vendor/bootstrap/less/labels.less +54 -0
- data/public/vendor/bootstrap/less/list-group.less +88 -0
- data/public/vendor/bootstrap/less/media.less +56 -0
- data/public/vendor/bootstrap/less/mixins.less +693 -0
- data/public/vendor/bootstrap/less/modals.less +133 -0
- data/public/vendor/bootstrap/less/navbar.less +559 -0
- data/public/vendor/bootstrap/less/navs.less +228 -0
- data/public/vendor/bootstrap/less/normalize.less +396 -0
- data/public/vendor/bootstrap/less/pager.less +55 -0
- data/public/vendor/bootstrap/less/pagination.less +72 -0
- data/public/vendor/bootstrap/less/panels.less +128 -0
- data/public/vendor/bootstrap/less/popovers.less +133 -0
- data/public/vendor/bootstrap/less/print.less +100 -0
- data/public/vendor/bootstrap/less/progress-bars.less +99 -0
- data/public/vendor/bootstrap/less/responsive-utilities.less +149 -0
- data/public/vendor/bootstrap/less/scaffolding.less +111 -0
- data/public/vendor/bootstrap/less/tables.less +211 -0
- data/public/vendor/bootstrap/less/thumbnails.less +42 -0
- data/public/vendor/bootstrap/less/tooltip.less +95 -0
- data/public/vendor/bootstrap/less/type.less +238 -0
- data/public/vendor/bootstrap/less/utilities.less +42 -0
- data/public/vendor/bootstrap/less/variables.less +607 -0
- data/public/vendor/bootstrap/less/wells.less +29 -0
- data/public/vendor/bootstrap/package.json +33 -0
- data/public/vendor/bootstrap-glyphicons/CHANGELOG.md +3 -0
- data/public/vendor/bootstrap-glyphicons/CNAME +1 -0
- data/public/vendor/bootstrap-glyphicons/CONTRIBUTING.md +54 -0
- data/public/vendor/bootstrap-glyphicons/LICENSE +19 -0
- data/public/vendor/bootstrap-glyphicons/README.md +61 -0
- data/public/vendor/bootstrap-glyphicons/_config.yml +12 -0
- data/public/vendor/bootstrap-glyphicons/composer.json +9 -0
- data/public/vendor/bootstrap-glyphicons/css/bootstrap-glyphicons.css +2 -0
- data/public/vendor/bootstrap-glyphicons/css/bootstrap.css +9 -0
- data/public/vendor/bootstrap-glyphicons/css/docs.css +160 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.eot +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.otf +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.svg +175 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.ttf +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.woff +0 -0
- data/public/vendor/bootstrap-glyphicons/index.html +255 -0
- data/public/vendor/bootstrap-glyphicons/less/bootstrap-glyphicons.less +201 -0
- data/public/vendor/bootstrap-glyphicons/package.json +18 -0
- data/public/vendor/d3/LICENSE +26 -0
- data/public/vendor/d3/README.md +7 -0
- data/public/vendor/d3/bower.json +25 -0
- data/public/vendor/d3/d3.js +8810 -0
- data/public/vendor/d3/d3.min.js +5 -0
- data/public/vendor/jquery/README.md +11 -0
- data/public/vendor/jquery/bower.json +11 -0
- data/public/vendor/jquery/component.json +15 -0
- data/public/vendor/jquery/composer.json +35 -0
- data/public/vendor/jquery/jquery-migrate.js +511 -0
- data/public/vendor/jquery/jquery-migrate.min.js +3 -0
- data/public/vendor/jquery/jquery.js +8829 -0
- data/public/vendor/jquery/jquery.min.js +6 -0
- data/public/vendor/jquery/jquery.min.map +1 -0
- data/public/vendor/jquery/package.json +7 -0
- data/public/vendor/replacejs/CHANGELOG.md +3 -0
- data/public/vendor/replacejs/MIT-LICENSE.txt +20 -0
- data/public/vendor/replacejs/README.md +123 -0
- data/public/vendor/replacejs/bower.json +24 -0
- data/public/vendor/replacejs/primer.js +17 -0
- data/public/vendor/replacejs/primer.min.js +1 -0
- data/public/vendor/replacejs/replace.js +182 -0
- data/public/vendor/stupidtable.js +158 -0
- data/views/dashboard.haml +17 -0
- data/views/layout.haml +60 -0
- metadata +330 -0
@@ -0,0 +1,201 @@
|
|
1
|
+
//
|
2
|
+
// Glyphicons for Bootstrap
|
3
|
+
// -----------------------------------------------------------------------------
|
4
|
+
|
5
|
+
// About
|
6
|
+
//
|
7
|
+
// Glyphicons font-based icons require you to include all relevant font files,
|
8
|
+
// found in this project under the /fonts/ directory. Files are referenced relative
|
9
|
+
// to the compiled CSS.
|
10
|
+
//
|
11
|
+
// Basic usage
|
12
|
+
//
|
13
|
+
// Since icons are fonts, they can be placed anywhere text is placed and are
|
14
|
+
// thus automatically sized to match the surrounding child. To use, create an
|
15
|
+
// inline element with the appropriate classes, like so:
|
16
|
+
//
|
17
|
+
// <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
|
18
|
+
//
|
19
|
+
// Use them in links, buttons, headings, and more.
|
20
|
+
|
21
|
+
|
22
|
+
// Import the fonts
|
23
|
+
@font-face {
|
24
|
+
font-family: 'Glyphicons Halflings';
|
25
|
+
src: url('../fonts/glyphiconshalflings-regular.eot');
|
26
|
+
src: url('../fonts/glyphiconshalflings-regular.eot?#iefix') format('embedded-opentype'),
|
27
|
+
url('../fonts/glyphiconshalflings-regular.woff') format('woff'),
|
28
|
+
url('../fonts/glyphiconshalflings-regular.ttf') format('truetype'),
|
29
|
+
url('../fonts/glyphiconshalflings-regular.svg#glyphicons_halflingsregular') format('svg');
|
30
|
+
}
|
31
|
+
|
32
|
+
// Catchall baseclass
|
33
|
+
.glyphicon:before {
|
34
|
+
font-family: 'Glyphicons Halflings';
|
35
|
+
font-style: normal;
|
36
|
+
font-weight: normal;
|
37
|
+
line-height: 1;
|
38
|
+
-webkit-font-smoothing: antialiased;
|
39
|
+
}
|
40
|
+
|
41
|
+
// Individual icons
|
42
|
+
.glyphicon-glass:before { content: "\e001"; }
|
43
|
+
.glyphicon-music:before { content: "\e002"; }
|
44
|
+
.glyphicon-search:before { content: "\e003"; }
|
45
|
+
.glyphicon-envelope:before { content: "\2709"; }
|
46
|
+
.glyphicon-heart:before { content: "\e005"; }
|
47
|
+
.glyphicon-star:before { content: "\e006"; }
|
48
|
+
.glyphicon-star-empty:before { content: "\e007"; }
|
49
|
+
.glyphicon-user:before { content: "\e008"; }
|
50
|
+
.glyphicon-film:before { content: "\e009"; }
|
51
|
+
.glyphicon-th-large:before { content: "\e010"; }
|
52
|
+
.glyphicon-th:before { content: "\e011"; }
|
53
|
+
.glyphicon-th-list:before { content: "\e012"; }
|
54
|
+
.glyphicon-ok:before { content: "\e013"; }
|
55
|
+
.glyphicon-remove:before { content: "\e014"; }
|
56
|
+
.glyphicon-zoom-in:before { content: "\e015"; }
|
57
|
+
.glyphicon-zoom-out:before { content: "\e016"; }
|
58
|
+
.glyphicon-off:before { content: "\e017"; }
|
59
|
+
.glyphicon-signal:before { content: "\e018"; }
|
60
|
+
.glyphicon-cog:before { content: "\e019"; }
|
61
|
+
.glyphicon-trash:before { content: "\e020"; }
|
62
|
+
.glyphicon-home:before { content: "\e021"; }
|
63
|
+
.glyphicon-file:before { content: "\e022"; }
|
64
|
+
.glyphicon-time:before { content: "\e023"; }
|
65
|
+
.glyphicon-road:before { content: "\e024"; }
|
66
|
+
.glyphicon-download-alt:before { content: "\e025"; }
|
67
|
+
.glyphicon-download:before { content: "\e026"; }
|
68
|
+
.glyphicon-upload:before { content: "\e027"; }
|
69
|
+
.glyphicon-inbox:before { content: "\e028"; }
|
70
|
+
.glyphicon-play-circle:before { content: "\e029"; }
|
71
|
+
.glyphicon-repeat:before { content: "\e030"; }
|
72
|
+
.glyphicon-refresh:before { content: "\e031"; }
|
73
|
+
.glyphicon-list-alt:before { content: "\e032"; }
|
74
|
+
.glyphicon-lock:before { content: "\e033"; }
|
75
|
+
.glyphicon-flag:before { content: "\e034"; }
|
76
|
+
.glyphicon-headphones:before { content: "\e035"; }
|
77
|
+
.glyphicon-volume-off:before { content: "\e036"; }
|
78
|
+
.glyphicon-volume-down:before { content: "\e037"; }
|
79
|
+
.glyphicon-volume-up:before { content: "\e038"; }
|
80
|
+
.glyphicon-qrcode:before { content: "\e039"; }
|
81
|
+
.glyphicon-barcode:before { content: "\e040"; }
|
82
|
+
.glyphicon-tag:before { content: "\e041"; }
|
83
|
+
.glyphicon-tags:before { content: "\e042"; }
|
84
|
+
.glyphicon-book:before { content: "\e043"; }
|
85
|
+
.glyphicon-bookmark:before { content: "\e044"; }
|
86
|
+
.glyphicon-print:before { content: "\e045"; }
|
87
|
+
.glyphicon-camera:before { content: "\e046"; }
|
88
|
+
.glyphicon-font:before { content: "\e047"; }
|
89
|
+
.glyphicon-bold:before { content: "\e048"; }
|
90
|
+
.glyphicon-italic:before { content: "\e049"; }
|
91
|
+
.glyphicon-text-height:before { content: "\e050"; }
|
92
|
+
.glyphicon-text-width:before { content: "\e051"; }
|
93
|
+
.glyphicon-align-left:before { content: "\e052"; }
|
94
|
+
.glyphicon-align-center:before { content: "\e053"; }
|
95
|
+
.glyphicon-align-right:before { content: "\e054"; }
|
96
|
+
.glyphicon-align-justify:before { content: "\e055"; }
|
97
|
+
.glyphicon-list:before { content: "\e056"; }
|
98
|
+
.glyphicon-indent-left:before { content: "\e057"; }
|
99
|
+
.glyphicon-indent-right:before { content: "\e058"; }
|
100
|
+
.glyphicon-facetime-video:before { content: "\e059"; }
|
101
|
+
.glyphicon-picture:before { content: "\e060"; }
|
102
|
+
.glyphicon-pencil:before { content: "\270f"; }
|
103
|
+
.glyphicon-map-marker:before { content: "\e062"; }
|
104
|
+
.glyphicon-adjust:before { content: "\e063"; }
|
105
|
+
.glyphicon-tint:before { content: "\e064"; }
|
106
|
+
.glyphicon-edit:before { content: "\e065"; }
|
107
|
+
.glyphicon-share:before { content: "\e066"; }
|
108
|
+
.glyphicon-check:before { content: "\e067"; }
|
109
|
+
.glyphicon-move:before { content: "\e068"; }
|
110
|
+
.glyphicon-step-backward:before { content: "\e069"; }
|
111
|
+
.glyphicon-fast-backward:before { content: "\e070"; }
|
112
|
+
.glyphicon-backward:before { content: "\e071"; }
|
113
|
+
.glyphicon-play:before { content: "\e072"; }
|
114
|
+
.glyphicon-pause:before { content: "\e073"; }
|
115
|
+
.glyphicon-stop:before { content: "\e074"; }
|
116
|
+
.glyphicon-forward:before { content: "\e075"; }
|
117
|
+
.glyphicon-fast-forward:before { content: "\e076"; }
|
118
|
+
.glyphicon-step-forward:before { content: "\e077"; }
|
119
|
+
.glyphicon-eject:before { content: "\e078"; }
|
120
|
+
.glyphicon-chevron-left:before { content: "\e079"; }
|
121
|
+
.glyphicon-chevron-right:before { content: "\e080"; }
|
122
|
+
.glyphicon-plus-sign:before { content: "\e081"; }
|
123
|
+
.glyphicon-minus-sign:before { content: "\e082"; }
|
124
|
+
.glyphicon-remove-sign:before { content: "\e083"; }
|
125
|
+
.glyphicon-ok-sign:before { content: "\e084"; }
|
126
|
+
.glyphicon-question-sign:before { content: "\e085"; }
|
127
|
+
.glyphicon-info-sign:before { content: "\e086"; }
|
128
|
+
.glyphicon-screenshot:before { content: "\e087"; }
|
129
|
+
.glyphicon-remove-circle:before { content: "\e088"; }
|
130
|
+
.glyphicon-ok-circle:before { content: "\e089"; }
|
131
|
+
.glyphicon-ban-circle:before { content: "\e090"; }
|
132
|
+
.glyphicon-arrow-left:before { content: "\e091"; }
|
133
|
+
.glyphicon-arrow-right:before { content: "\e092"; }
|
134
|
+
.glyphicon-arrow-up:before { content: "\e093"; }
|
135
|
+
.glyphicon-arrow-down:before { content: "\e094"; }
|
136
|
+
.glyphicon-share-alt:before { content: "\e095"; }
|
137
|
+
.glyphicon-resize-full:before { content: "\e096"; }
|
138
|
+
.glyphicon-resize-small:before { content: "\e097"; }
|
139
|
+
.glyphicon-plus:before { content: "\002b"; }
|
140
|
+
.glyphicon-minus:before { content: "\2212"; }
|
141
|
+
.glyphicon-asterisk:before { content: "\002a"; }
|
142
|
+
.glyphicon-exclamation-sign:before { content: "\e101"; }
|
143
|
+
.glyphicon-gift:before { content: "\e102"; }
|
144
|
+
.glyphicon-leaf:before { content: "\e103"; }
|
145
|
+
.glyphicon-fire:before { content: "\e104"; }
|
146
|
+
.glyphicon-eye-open:before { content: "\e105"; }
|
147
|
+
.glyphicon-eye-close:before { content: "\e106"; }
|
148
|
+
.glyphicon-warning-sign:before { content: "\e107"; }
|
149
|
+
.glyphicon-plane:before { content: "\e108"; }
|
150
|
+
.glyphicon-calendar:before { content: "\e109"; }
|
151
|
+
.glyphicon-random:before { content: "\e110"; }
|
152
|
+
.glyphicon-comment:before { content: "\e111"; }
|
153
|
+
.glyphicon-magnet:before { content: "\e112"; }
|
154
|
+
.glyphicon-chevron-up:before { content: "\e113"; }
|
155
|
+
.glyphicon-chevron-down:before { content: "\e114"; }
|
156
|
+
.glyphicon-retweet:before { content: "\e115"; }
|
157
|
+
.glyphicon-shopping-cart:before { content: "\e116"; }
|
158
|
+
.glyphicon-folder-close:before { content: "\e117"; }
|
159
|
+
.glyphicon-folder-open:before { content: "\e118"; }
|
160
|
+
.glyphicon-resize-vertical:before { content: "\e119"; }
|
161
|
+
.glyphicon-resize-horizontal:before { content: "\e120"; }
|
162
|
+
.glyphicon-hdd:before { content: "\e121"; }
|
163
|
+
.glyphicon-bullhorn:before { content: "\e122"; }
|
164
|
+
.glyphicon-bell:before { content: "\e123"; }
|
165
|
+
.glyphicon-certificate:before { content: "\e124"; }
|
166
|
+
.glyphicon-thumbs-up:before { content: "\e125"; }
|
167
|
+
.glyphicon-thumbs-down:before { content: "\e126"; }
|
168
|
+
.glyphicon-hand-right:before { content: "\e127"; }
|
169
|
+
.glyphicon-hand-left:before { content: "\e128"; }
|
170
|
+
.glyphicon-hand-up:before { content: "\e129"; }
|
171
|
+
.glyphicon-hand-down:before { content: "\e130"; }
|
172
|
+
.glyphicon-circle-arrow-right:before { content: "\e131"; }
|
173
|
+
.glyphicon-circle-arrow-left:before { content: "\e132"; }
|
174
|
+
.glyphicon-circle-arrow-up:before { content: "\e133"; }
|
175
|
+
.glyphicon-circle-arrow-down:before { content: "\e134"; }
|
176
|
+
.glyphicon-globe:before { content: "\e135"; }
|
177
|
+
.glyphicon-wrench:before { content: "\e136"; }
|
178
|
+
.glyphicon-tasks:before { content: "\e137"; }
|
179
|
+
.glyphicon-filter:before { content: "\e138"; }
|
180
|
+
.glyphicon-briefcase:before { content: "\e139"; }
|
181
|
+
.glyphicon-fullscreen:before { content: "\e140"; }
|
182
|
+
.glyphicon-dashboard:before { content: "\e141"; }
|
183
|
+
.glyphicon-paperclip:before { content: "\e142"; }
|
184
|
+
.glyphicon-heart-empty:before { content: "\e143"; }
|
185
|
+
.glyphicon-link:before { content: "\e144"; }
|
186
|
+
.glyphicon-phone:before { content: "\e145"; }
|
187
|
+
.glyphicon-pushpin:before { content: "\e146"; }
|
188
|
+
.glyphicon-euro:before { content: "\20ac"; }
|
189
|
+
.glyphicon-usd:before { content: "\e148"; }
|
190
|
+
.glyphicon-gbp:before { content: "\e149"; }
|
191
|
+
.glyphicon-sort:before { content: "\e150"; }
|
192
|
+
.glyphicon-sort-by-alphabet:before { content: "\e151"; }
|
193
|
+
.glyphicon-sort-by-alphabet-alt:before { content: "\e152"; }
|
194
|
+
.glyphicon-sort-by-order:before { content: "\e153"; }
|
195
|
+
.glyphicon-sort-by-order-alt:before { content: "\e154"; }
|
196
|
+
.glyphicon-sort-by-attributes:before { content: "\e155"; }
|
197
|
+
.glyphicon-sort-by-attributes-alt:before { content: "\e156"; }
|
198
|
+
.glyphicon-unchecked:before { content: "\e157"; }
|
199
|
+
.glyphicon-expand:before { content: "\e158"; }
|
200
|
+
.glyphicon-collapse:before { content: "\e159"; }
|
201
|
+
.glyphicon-collapse-top:before { content: "\e160"; }
|
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
2
|
+
"name": "bootstrap-glyphicons"
|
3
|
+
, "description": "Icon font for use with Bootstrap, based on Glyphicons."
|
4
|
+
, "version": "1.0.0"
|
5
|
+
, "keywords": ["bootstrap", "css", "icons"]
|
6
|
+
, "homepage": "http://glyphicons.getbootstrap.com/"
|
7
|
+
, "author": "Mark Otto"
|
8
|
+
, "repository": {
|
9
|
+
"type": "git"
|
10
|
+
, "url": "https://github.com/twbs/bootstrap-glyphicons.git"
|
11
|
+
}
|
12
|
+
, "licenses": [
|
13
|
+
{
|
14
|
+
"type": "MIT"
|
15
|
+
, "url": "http://opensource.org/licenses/MIT"
|
16
|
+
}
|
17
|
+
]
|
18
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Copyright (c) 2013, Michael Bostock
|
2
|
+
All rights reserved.
|
3
|
+
|
4
|
+
Redistribution and use in source and binary forms, with or without
|
5
|
+
modification, are permitted provided that the following conditions are met:
|
6
|
+
|
7
|
+
* Redistributions of source code must retain the above copyright notice, this
|
8
|
+
list of conditions and the following disclaimer.
|
9
|
+
|
10
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
11
|
+
this list of conditions and the following disclaimer in the documentation
|
12
|
+
and/or other materials provided with the distribution.
|
13
|
+
|
14
|
+
* The name Michael Bostock may not be used to endorse or promote products
|
15
|
+
derived from this software without specific prior written permission.
|
16
|
+
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
18
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
19
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
20
|
+
DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT,
|
21
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
22
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
24
|
+
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
25
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
26
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Data-Driven Documents
|
2
|
+
|
3
|
+
**D3.js** is a JavaScript library for manipulating documents based on data. **D3** helps you bring data to life using HTML, SVG and CSS. D3’s emphasis on web standards gives you the full capabilities of modern browsers without tying yourself to a proprietary framework, combining powerful visualization components and a data-driven approach to DOM manipulation.
|
4
|
+
|
5
|
+
Want to learn more? [See the wiki.](https://github.com/mbostock/d3/wiki)
|
6
|
+
|
7
|
+
For examples, [see the gallery](https://github.com/mbostock/d3/wiki/Gallery) and [mbostock’s bl.ocks](http://bl.ocks.org/mbostock).
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"name": "d3",
|
3
|
+
"version": "3.2.8",
|
4
|
+
"main": "d3.js",
|
5
|
+
"scripts": [
|
6
|
+
"d3.js"
|
7
|
+
],
|
8
|
+
"ignore": [
|
9
|
+
".DS_Store",
|
10
|
+
".git",
|
11
|
+
".gitignore",
|
12
|
+
".npmignore",
|
13
|
+
".travis.yml",
|
14
|
+
"Makefile",
|
15
|
+
"bin",
|
16
|
+
"component.json",
|
17
|
+
"index-browserify.js",
|
18
|
+
"index.js",
|
19
|
+
"lib",
|
20
|
+
"node_modules",
|
21
|
+
"package.json",
|
22
|
+
"src",
|
23
|
+
"test"
|
24
|
+
]
|
25
|
+
}
|