thesis 0.1.1 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (123) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +103 -68
  3. data/app/assets/javascripts/thesis.js +1 -0
  4. data/app/assets/javascripts/thesis/thesis.coffee +250 -0
  5. data/app/assets/javascripts/thesis/utilities.coffee +13 -0
  6. data/app/assets/stylesheets/thesis.sass +4 -0
  7. data/app/assets/stylesheets/thesis/_mixins/_barber-pole.sass +5 -0
  8. data/app/assets/stylesheets/thesis/_mixins/editor.sass +15 -0
  9. data/app/assets/stylesheets/thesis/_thesis.sass +207 -0
  10. data/app/assets/stylesheets/thesis/base/_base.sass +5 -0
  11. data/app/assets/stylesheets/thesis/base/_colors.sass +6 -0
  12. data/app/assets/stylesheets/thesis/base/_fonts.sass +6 -0
  13. data/app/assets/stylesheets/thesis/base/_forms.scss +165 -0
  14. data/app/assets/stylesheets/thesis/base/_keyframes.sass +205 -0
  15. data/app/assets/stylesheets/thesis/base/bourbon/_bourbon-deprecated-upcoming.scss +8 -0
  16. data/app/assets/stylesheets/thesis/base/bourbon/_bourbon.scss +79 -0
  17. data/app/assets/stylesheets/thesis/base/bourbon/addons/_button.scss +374 -0
  18. data/app/assets/stylesheets/thesis/base/bourbon/addons/_clearfix.scss +23 -0
  19. data/app/assets/stylesheets/thesis/base/bourbon/addons/_directional-values.scss +111 -0
  20. data/app/assets/stylesheets/thesis/base/bourbon/addons/_ellipsis.scss +7 -0
  21. data/app/assets/stylesheets/thesis/base/bourbon/addons/_font-family.scss +5 -0
  22. data/app/assets/stylesheets/thesis/base/bourbon/addons/_hide-text.scss +10 -0
  23. data/app/assets/stylesheets/thesis/base/bourbon/addons/_html5-input-types.scss +86 -0
  24. data/app/assets/stylesheets/thesis/base/bourbon/addons/_position.scss +32 -0
  25. data/app/assets/stylesheets/thesis/base/bourbon/addons/_prefixer.scss +45 -0
  26. data/app/assets/stylesheets/thesis/base/bourbon/addons/_retina-image.scss +31 -0
  27. data/app/assets/stylesheets/thesis/base/bourbon/addons/_size.scss +16 -0
  28. data/app/assets/stylesheets/thesis/base/bourbon/addons/_timing-functions.scss +32 -0
  29. data/app/assets/stylesheets/thesis/base/bourbon/addons/_triangle.scss +83 -0
  30. data/app/assets/stylesheets/thesis/base/bourbon/addons/_word-wrap.scss +8 -0
  31. data/app/assets/stylesheets/thesis/base/bourbon/css3/_animation.scss +52 -0
  32. data/app/assets/stylesheets/thesis/base/bourbon/css3/_appearance.scss +3 -0
  33. data/app/assets/stylesheets/thesis/base/bourbon/css3/_backface-visibility.scss +6 -0
  34. data/app/assets/stylesheets/thesis/base/bourbon/css3/_background-image.scss +42 -0
  35. data/app/assets/stylesheets/thesis/base/bourbon/css3/_background.scss +55 -0
  36. data/app/assets/stylesheets/thesis/base/bourbon/css3/_border-image.scss +59 -0
  37. data/app/assets/stylesheets/thesis/base/bourbon/css3/_border-radius.scss +22 -0
  38. data/app/assets/stylesheets/thesis/base/bourbon/css3/_box-sizing.scss +4 -0
  39. data/app/assets/stylesheets/thesis/base/bourbon/css3/_calc.scss +4 -0
  40. data/app/assets/stylesheets/thesis/base/bourbon/css3/_columns.scss +47 -0
  41. data/app/assets/stylesheets/thesis/base/bourbon/css3/_filter.scss +5 -0
  42. data/app/assets/stylesheets/thesis/base/bourbon/css3/_flex-box.scss +321 -0
  43. data/app/assets/stylesheets/thesis/base/bourbon/css3/_font-face.scss +23 -0
  44. data/app/assets/stylesheets/thesis/base/bourbon/css3/_font-feature-settings.scss +10 -0
  45. data/app/assets/stylesheets/thesis/base/bourbon/css3/_hidpi-media-query.scss +10 -0
  46. data/app/assets/stylesheets/thesis/base/bourbon/css3/_hyphens.scss +4 -0
  47. data/app/assets/stylesheets/thesis/base/bourbon/css3/_image-rendering.scss +14 -0
  48. data/app/assets/stylesheets/thesis/base/bourbon/css3/_keyframes.scss +35 -0
  49. data/app/assets/stylesheets/thesis/base/bourbon/css3/_linear-gradient.scss +38 -0
  50. data/app/assets/stylesheets/thesis/base/bourbon/css3/_perspective.scss +8 -0
  51. data/app/assets/stylesheets/thesis/base/bourbon/css3/_placeholder.scss +8 -0
  52. data/app/assets/stylesheets/thesis/base/bourbon/css3/_radial-gradient.scss +39 -0
  53. data/app/assets/stylesheets/thesis/base/bourbon/css3/_transform.scss +15 -0
  54. data/app/assets/stylesheets/thesis/base/bourbon/css3/_transition.scss +77 -0
  55. data/app/assets/stylesheets/thesis/base/bourbon/css3/_user-select.scss +3 -0
  56. data/app/assets/stylesheets/thesis/base/bourbon/functions/_assign.scss +11 -0
  57. data/app/assets/stylesheets/thesis/base/bourbon/functions/_color-lightness.scss +13 -0
  58. data/app/assets/stylesheets/thesis/base/bourbon/functions/_flex-grid.scss +39 -0
  59. data/app/assets/stylesheets/thesis/base/bourbon/functions/_golden-ratio.scss +3 -0
  60. data/app/assets/stylesheets/thesis/base/bourbon/functions/_grid-width.scss +13 -0
  61. data/app/assets/stylesheets/thesis/base/bourbon/functions/_modular-scale.scss +66 -0
  62. data/app/assets/stylesheets/thesis/base/bourbon/functions/_px-to-em.scss +13 -0
  63. data/app/assets/stylesheets/thesis/base/bourbon/functions/_px-to-rem.scss +15 -0
  64. data/app/assets/stylesheets/thesis/base/bourbon/functions/_strip-units.scss +5 -0
  65. data/app/assets/stylesheets/thesis/base/bourbon/functions/_tint-shade.scss +9 -0
  66. data/app/assets/stylesheets/thesis/base/bourbon/functions/_transition-property-name.scss +22 -0
  67. data/app/assets/stylesheets/thesis/base/bourbon/functions/_unpack.scss +17 -0
  68. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_convert-units.scss +15 -0
  69. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_gradient-positions-parser.scss +13 -0
  70. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_is-num.scss +8 -0
  71. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_linear-angle-parser.scss +25 -0
  72. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_linear-gradient-parser.scss +41 -0
  73. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_linear-positions-parser.scss +61 -0
  74. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_linear-side-corner-parser.scss +31 -0
  75. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_radial-arg-parser.scss +69 -0
  76. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_radial-gradient-parser.scss +50 -0
  77. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_radial-positions-parser.scss +18 -0
  78. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_render-gradients.scss +26 -0
  79. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_shape-size-stripper.scss +10 -0
  80. data/app/assets/stylesheets/thesis/base/bourbon/helpers/_str-to-num.scss +50 -0
  81. data/app/assets/stylesheets/thesis/base/bourbon/settings/_asset-pipeline.scss +1 -0
  82. data/app/assets/stylesheets/thesis/base/bourbon/settings/_prefixer.scss +6 -0
  83. data/app/assets/stylesheets/thesis/base/bourbon/settings/_px-to-em.scss +1 -0
  84. data/lib/generators/thesis/install/install_generator.rb +21 -13
  85. data/lib/thesis/controllers/controller_helpers.rb +11 -5
  86. data/lib/thesis/controllers/thesis_controller.rb +16 -13
  87. data/lib/thesis/models/page.rb +29 -22
  88. data/lib/thesis/models/page_content.rb +44 -29
  89. data/lib/thesis/routing/route_constraint.rb +8 -2
  90. data/lib/thesis/routing/routes.rb +2 -3
  91. data/lib/thesis/version.rb +1 -1
  92. data/spec/factories/pages.rb +1 -1
  93. data/spec/spec_helper.rb +2 -2
  94. data/spec/{lib/thesis → thesis}/controllers/thesis_controller_spec.rb +15 -13
  95. data/spec/{lib/thesis → thesis}/models/page_content_spec.rb +4 -4
  96. data/spec/{lib/thesis → thesis}/models/page_spec.rb +0 -0
  97. data/spec/thesis/routing/thesis_routing_spec.rb +23 -0
  98. metadata +137 -56
  99. data/app/assets/javascripts/thesis/thesis.js.coffee +0 -157
  100. data/app/assets/stylesheets/thesis.css +0 -4
  101. data/app/assets/stylesheets/thesis/font-awesome/font-awesome.scss +0 -534
  102. data/app/assets/stylesheets/thesis/font/FontAwesome.otf +0 -0
  103. data/app/assets/stylesheets/thesis/font/fontawesome-webfont.eot +0 -0
  104. data/app/assets/stylesheets/thesis/font/fontawesome-webfont.svg +0 -284
  105. data/app/assets/stylesheets/thesis/font/fontawesome-webfont.ttf +0 -0
  106. data/app/assets/stylesheets/thesis/font/fontawesome-webfont.woff +0 -0
  107. data/app/assets/stylesheets/thesis/jquery-ui/images/animated-overlay.gif +0 -0
  108. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  109. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  110. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-bg_glass_20_555555_1x400.png +0 -0
  111. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-bg_glass_40_0078a3_1x400.png +0 -0
  112. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  113. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-bg_gloss-wave_25_333333_500x100.png +0 -0
  114. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  115. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-bg_inset-soft_25_000000_1x100.png +0 -0
  116. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-bg_inset-soft_30_f58400_1x100.png +0 -0
  117. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-icons_222222_256x240.png +0 -0
  118. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-icons_4b8e0b_256x240.png +0 -0
  119. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-icons_a83300_256x240.png +0 -0
  120. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-icons_cccccc_256x240.png +0 -0
  121. data/app/assets/stylesheets/thesis/jquery-ui/images/ui-icons_ffffff_256x240.png +0 -0
  122. data/app/assets/stylesheets/thesis/jquery-ui/jquery-ui-1.10.2.custom.css +0 -1175
  123. data/app/assets/stylesheets/thesis/thesis.css.scss +0 -65
@@ -1,4 +0,0 @@
1
- /*
2
- *= require_self
3
- *= require_tree .
4
- */
@@ -1,534 +0,0 @@
1
- /*!
2
- * Font Awesome 3.0.2
3
- * the iconic font designed for use with Twitter Bootstrap
4
- * -------------------------------------------------------
5
- * The full suite of pictographic icons, examples, and documentation
6
- * can be found at: http://fortawesome.github.com/Font-Awesome/
7
- *
8
- * License
9
- * -------------------------------------------------------
10
- * - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
11
- * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
12
- * http://opensource.org/licenses/mit-license.html
13
- * - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
14
- * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
15
- * "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
16
- *
17
- * Contact
18
- * -------------------------------------------------------
19
- * Email: dave@davegandy.com
20
- * Twitter: http://twitter.com/fortaweso_me
21
- * Work: Lead Product Designer @ http://kyruus.com
22
- */
23
-
24
- $fontAwesomePath: "../font" !default;
25
- $borderColor: #eee;
26
- $iconMuted: #eee;
27
- @mixin border-radius($radius) { -webkit-border-radius: $radius; -moz-border-radius: $radius; border-radius: $radius; }
28
-
29
-
30
- @font-face {
31
- font-family: 'FontAwesome';
32
- src: url('#{$fontAwesomePath}/fontawesome-webfont.eot?v=3.0.1');
33
- src: url('#{$fontAwesomePath}/fontawesome-webfont.eot?#iefix&v=3.0.1') format("embedded-opentype"),
34
- url('#{$fontAwesomePath}/fontawesome-webfont.woff?v=3.0.1') format("woff"),
35
- url('#{$fontAwesomePath}/fontawesome-webfont.ttf?v=3.0.1') format("truetype");
36
- font-weight: normal;
37
- font-style: normal;
38
- }
39
-
40
- /* Font Awesome styles
41
- ------------------------------------------------------- */
42
- [class^="icon-"],
43
- [class*=" icon-"] {
44
- font-family: FontAwesome;
45
- font-weight: normal;
46
- font-style: normal;
47
- text-decoration: inherit;
48
- -webkit-font-smoothing: antialiased;
49
-
50
- /* sprites.less reset */
51
- display: inline;
52
- width: auto;
53
- height: auto;
54
- line-height: normal;
55
- vertical-align: baseline;
56
- background-image: none;
57
- background-position: 0% 0%;
58
- background-repeat: repeat;
59
- margin-top: 0;
60
- }
61
-
62
- /* more sprites.less reset */
63
- .icon-white,
64
- .nav-pills > .active > a > [class^="icon-"],
65
- .nav-pills > .active > a > [class*=" icon-"],
66
- .nav-list > .active > a > [class^="icon-"],
67
- .nav-list > .active > a > [class*=" icon-"],
68
- .navbar-inverse .nav > .active > a > [class^="icon-"],
69
- .navbar-inverse .nav > .active > a > [class*=" icon-"],
70
- .dropdown-menu > li > a:hover > [class^="icon-"],
71
- .dropdown-menu > li > a:hover > [class*=" icon-"],
72
- .dropdown-menu > .active > a > [class^="icon-"],
73
- .dropdown-menu > .active > a > [class*=" icon-"],
74
- .dropdown-submenu:hover > a > [class^="icon-"],
75
- .dropdown-submenu:hover > a > [class*=" icon-"] {
76
- background-image: none;
77
- }
78
-
79
- [class^="icon-"]:before,
80
- [class*=" icon-"]:before {
81
- text-decoration: inherit;
82
- display: inline-block;
83
- speak: none;
84
- }
85
-
86
- /* makes sure icons active on rollover in links */
87
- a {
88
- [class^="icon-"],
89
- [class*=" icon-"] {
90
- display: inline-block;
91
- }
92
- }
93
-
94
- /* makes the font 33% larger relative to the icon container */
95
- .icon-large:before {
96
- vertical-align: -10%;
97
- font-size: 1.3333333333333333em;
98
- }
99
-
100
- .btn, .nav {
101
- [class^="icon-"],
102
- [class*=" icon-"] {
103
- display: inline;
104
- /* keeps button heights with and without icons the same */
105
- &.icon-large { line-height: .9em; }
106
- &.icon-spin { display: inline-block; }
107
- }
108
- }
109
-
110
- .nav-tabs, .nav-pills {
111
- [class^="icon-"],
112
- [class*=" icon-"] {
113
- /* keeps button heights with and without icons the same */
114
- &, &.icon-large { line-height: .9em; }
115
- }
116
- }
117
-
118
- li, .nav li {
119
- [class^="icon-"],
120
- [class*=" icon-"] {
121
- display: inline-block;
122
- width: 1.25em;
123
- text-align: center;
124
- &.icon-large {
125
- /* increased font size for icon-large */
126
- width: 1.5625em;
127
- }
128
- }
129
- }
130
-
131
- ul.icons {
132
- list-style-type: none;
133
- text-indent: -.75em;
134
-
135
- li {
136
- [class^="icon-"],
137
- [class*=" icon-"] {
138
- width: .75em;
139
- }
140
- }
141
- }
142
-
143
- .icon-muted {
144
- color: $iconMuted;
145
- }
146
-
147
- // Icon Borders
148
- // -------------------------
149
-
150
- .icon-border {
151
- border: solid 1px $borderColor;
152
- padding: .2em .25em .15em;
153
- @include border-radius(3px);
154
- }
155
-
156
- // Icon Sizes
157
- // -------------------------
158
-
159
- .icon-2x {
160
- font-size: 2em;
161
- &.icon-border {
162
- border-width: 2px;
163
- @include border-radius(4px);
164
- }
165
- }
166
- .icon-3x {
167
- font-size: 3em;
168
- &.icon-border {
169
- border-width: 3px;
170
- @include border-radius(5px);
171
- }
172
- }
173
- .icon-4x {
174
- font-size: 4em;
175
- &.icon-border {
176
- border-width: 4px;
177
- @include border-radius(6px);
178
- }
179
- }
180
-
181
- // Floats
182
- // -------------------------
183
-
184
- // Quick floats
185
- .pull-right { float: right; }
186
- .pull-left { float: left; }
187
-
188
- [class^="icon-"],
189
- [class*=" icon-"] {
190
- &.pull-left {
191
- margin-right: .3em;
192
- }
193
- &.pull-right {
194
- margin-left: .3em;
195
- }
196
- }
197
-
198
- .btn {
199
- [class^="icon-"],
200
- [class*=" icon-"] {
201
- &.pull-left, &.pull-right {
202
- &.icon-2x { margin-top: .18em; }
203
- }
204
- &.icon-spin.icon-large { line-height: .8em; }
205
- }
206
- }
207
-
208
- .btn.btn-small {
209
- [class^="icon-"],
210
- [class*=" icon-"] {
211
- &.pull-left, &.pull-right {
212
- &.icon-2x { margin-top: .25em; }
213
- }
214
- }
215
- }
216
-
217
- .btn.btn-large {
218
- [class^="icon-"],
219
- [class*=" icon-"] {
220
- margin-top: 0; // overrides bootstrap default
221
- &.pull-left, &.pull-right {
222
- &.icon-2x { margin-top: .05em; }
223
- }
224
- &.pull-left.icon-2x { margin-right: .2em; }
225
- &.pull-right.icon-2x { margin-left: .2em; }
226
- }
227
- }
228
-
229
-
230
- .icon-spin {
231
- display: inline-block;
232
- -moz-animation: spin 2s infinite linear;
233
- -o-animation: spin 2s infinite linear;
234
- -webkit-animation: spin 2s infinite linear;
235
- animation: spin 2s infinite linear;
236
- }
237
-
238
- @-moz-keyframes spin {
239
- 0% { -moz-transform: rotate(0deg); }
240
- 100% { -moz-transform: rotate(359deg); }
241
- }
242
- @-webkit-keyframes spin {
243
- 0% { -webkit-transform: rotate(0deg); }
244
- 100% { -webkit-transform: rotate(359deg); }
245
- }
246
- @-o-keyframes spin {
247
- 0% { -o-transform: rotate(0deg); }
248
- 100% { -o-transform: rotate(359deg); }
249
- }
250
- @-ms-keyframes spin {
251
- 0% { -ms-transform: rotate(0deg); }
252
- 100% { -ms-transform: rotate(359deg); }
253
- }
254
- @keyframes spin {
255
- 0% { transform: rotate(0deg); }
256
- 100% { transform: rotate(359deg); }
257
- }
258
-
259
- @-moz-document url-prefix() {
260
- .icon-spin { height: .9em; }
261
- .btn .icon-spin { height: auto; }
262
- .icon-spin.icon-large { height: 1.25em; }
263
- .btn .icon-spin.icon-large { height: .75em; }
264
- }
265
-
266
- /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
267
- readers do not read off random characters that represent icons */
268
- .icon-glass:before { content: "\f000"; }
269
- .icon-music:before { content: "\f001"; }
270
- .icon-search:before { content: "\f002"; }
271
- .icon-envelope:before { content: "\f003"; }
272
- .icon-heart:before { content: "\f004"; }
273
- .icon-star:before { content: "\f005"; }
274
- .icon-star-empty:before { content: "\f006"; }
275
- .icon-user:before { content: "\f007"; }
276
- .icon-film:before { content: "\f008"; }
277
- .icon-th-large:before { content: "\f009"; }
278
- .icon-th:before { content: "\f00a"; }
279
- .icon-th-list:before { content: "\f00b"; }
280
- .icon-ok:before { content: "\f00c"; }
281
- .icon-remove:before { content: "\f00d"; }
282
- .icon-zoom-in:before { content: "\f00e"; }
283
-
284
- .icon-zoom-out:before { content: "\f010"; }
285
- .icon-off:before { content: "\f011"; }
286
- .icon-signal:before { content: "\f012"; }
287
- .icon-cog:before { content: "\f013"; }
288
- .icon-trash:before { content: "\f014"; }
289
- .icon-home:before { content: "\f015"; }
290
- .icon-file:before { content: "\f016"; }
291
- .icon-time:before { content: "\f017"; }
292
- .icon-road:before { content: "\f018"; }
293
- .icon-download-alt:before { content: "\f019"; }
294
- .icon-download:before { content: "\f01a"; }
295
- .icon-upload:before { content: "\f01b"; }
296
- .icon-inbox:before { content: "\f01c"; }
297
- .icon-play-circle:before { content: "\f01d"; }
298
- .icon-repeat:before { content: "\f01e"; }
299
-
300
- /* \f020 doesn't work in Safari. all shifted one down */
301
- .icon-refresh:before { content: "\f021"; }
302
- .icon-list-alt:before { content: "\f022"; }
303
- .icon-lock:before { content: "\f023"; }
304
- .icon-flag:before { content: "\f024"; }
305
- .icon-headphones:before { content: "\f025"; }
306
- .icon-volume-off:before { content: "\f026"; }
307
- .icon-volume-down:before { content: "\f027"; }
308
- .icon-volume-up:before { content: "\f028"; }
309
- .icon-qrcode:before { content: "\f029"; }
310
- .icon-barcode:before { content: "\f02a"; }
311
- .icon-tag:before { content: "\f02b"; }
312
- .icon-tags:before { content: "\f02c"; }
313
- .icon-book:before { content: "\f02d"; }
314
- .icon-bookmark:before { content: "\f02e"; }
315
- .icon-print:before { content: "\f02f"; }
316
-
317
- .icon-camera:before { content: "\f030"; }
318
- .icon-font:before { content: "\f031"; }
319
- .icon-bold:before { content: "\f032"; }
320
- .icon-italic:before { content: "\f033"; }
321
- .icon-text-height:before { content: "\f034"; }
322
- .icon-text-width:before { content: "\f035"; }
323
- .icon-align-left:before { content: "\f036"; }
324
- .icon-align-center:before { content: "\f037"; }
325
- .icon-align-right:before { content: "\f038"; }
326
- .icon-align-justify:before { content: "\f039"; }
327
- .icon-list:before { content: "\f03a"; }
328
- .icon-indent-left:before { content: "\f03b"; }
329
- .icon-indent-right:before { content: "\f03c"; }
330
- .icon-facetime-video:before { content: "\f03d"; }
331
- .icon-picture:before { content: "\f03e"; }
332
-
333
- .icon-pencil:before { content: "\f040"; }
334
- .icon-map-marker:before { content: "\f041"; }
335
- .icon-adjust:before { content: "\f042"; }
336
- .icon-tint:before { content: "\f043"; }
337
- .icon-edit:before { content: "\f044"; }
338
- .icon-share:before { content: "\f045"; }
339
- .icon-check:before { content: "\f046"; }
340
- .icon-move:before { content: "\f047"; }
341
- .icon-step-backward:before { content: "\f048"; }
342
- .icon-fast-backward:before { content: "\f049"; }
343
- .icon-backward:before { content: "\f04a"; }
344
- .icon-play:before { content: "\f04b"; }
345
- .icon-pause:before { content: "\f04c"; }
346
- .icon-stop:before { content: "\f04d"; }
347
- .icon-forward:before { content: "\f04e"; }
348
-
349
- .icon-fast-forward:before { content: "\f050"; }
350
- .icon-step-forward:before { content: "\f051"; }
351
- .icon-eject:before { content: "\f052"; }
352
- .icon-chevron-left:before { content: "\f053"; }
353
- .icon-chevron-right:before { content: "\f054"; }
354
- .icon-plus-sign:before { content: "\f055"; }
355
- .icon-minus-sign:before { content: "\f056"; }
356
- .icon-remove-sign:before { content: "\f057"; }
357
- .icon-ok-sign:before { content: "\f058"; }
358
- .icon-question-sign:before { content: "\f059"; }
359
- .icon-info-sign:before { content: "\f05a"; }
360
- .icon-screenshot:before { content: "\f05b"; }
361
- .icon-remove-circle:before { content: "\f05c"; }
362
- .icon-ok-circle:before { content: "\f05d"; }
363
- .icon-ban-circle:before { content: "\f05e"; }
364
-
365
- .icon-arrow-left:before { content: "\f060"; }
366
- .icon-arrow-right:before { content: "\f061"; }
367
- .icon-arrow-up:before { content: "\f062"; }
368
- .icon-arrow-down:before { content: "\f063"; }
369
- .icon-share-alt:before { content: "\f064"; }
370
- .icon-resize-full:before { content: "\f065"; }
371
- .icon-resize-small:before { content: "\f066"; }
372
- .icon-plus:before { content: "\f067"; }
373
- .icon-minus:before { content: "\f068"; }
374
- .icon-asterisk:before { content: "\f069"; }
375
- .icon-exclamation-sign:before { content: "\f06a"; }
376
- .icon-gift:before { content: "\f06b"; }
377
- .icon-leaf:before { content: "\f06c"; }
378
- .icon-fire:before { content: "\f06d"; }
379
- .icon-eye-open:before { content: "\f06e"; }
380
-
381
- .icon-eye-close:before { content: "\f070"; }
382
- .icon-warning-sign:before { content: "\f071"; }
383
- .icon-plane:before { content: "\f072"; }
384
- .icon-calendar:before { content: "\f073"; }
385
- .icon-random:before { content: "\f074"; }
386
- .icon-comment:before { content: "\f075"; }
387
- .icon-magnet:before { content: "\f076"; }
388
- .icon-chevron-up:before { content: "\f077"; }
389
- .icon-chevron-down:before { content: "\f078"; }
390
- .icon-retweet:before { content: "\f079"; }
391
- .icon-shopping-cart:before { content: "\f07a"; }
392
- .icon-folder-close:before { content: "\f07b"; }
393
- .icon-folder-open:before { content: "\f07c"; }
394
- .icon-resize-vertical:before { content: "\f07d"; }
395
- .icon-resize-horizontal:before { content: "\f07e"; }
396
-
397
- .icon-bar-chart:before { content: "\f080"; }
398
- .icon-twitter-sign:before { content: "\f081"; }
399
- .icon-facebook-sign:before { content: "\f082"; }
400
- .icon-camera-retro:before { content: "\f083"; }
401
- .icon-key:before { content: "\f084"; }
402
- .icon-cogs:before { content: "\f085"; }
403
- .icon-comments:before { content: "\f086"; }
404
- .icon-thumbs-up:before { content: "\f087"; }
405
- .icon-thumbs-down:before { content: "\f088"; }
406
- .icon-star-half:before { content: "\f089"; }
407
- .icon-heart-empty:before { content: "\f08a"; }
408
- .icon-signout:before { content: "\f08b"; }
409
- .icon-linkedin-sign:before { content: "\f08c"; }
410
- .icon-pushpin:before { content: "\f08d"; }
411
- .icon-external-link:before { content: "\f08e"; }
412
-
413
- .icon-signin:before { content: "\f090"; }
414
- .icon-trophy:before { content: "\f091"; }
415
- .icon-github-sign:before { content: "\f092"; }
416
- .icon-upload-alt:before { content: "\f093"; }
417
- .icon-lemon:before { content: "\f094"; }
418
- .icon-phone:before { content: "\f095"; }
419
- .icon-check-empty:before { content: "\f096"; }
420
- .icon-bookmark-empty:before { content: "\f097"; }
421
- .icon-phone-sign:before { content: "\f098"; }
422
- .icon-twitter:before { content: "\f099"; }
423
- .icon-facebook:before { content: "\f09a"; }
424
- .icon-github:before { content: "\f09b"; }
425
- .icon-unlock:before { content: "\f09c"; }
426
- .icon-credit-card:before { content: "\f09d"; }
427
- .icon-rss:before { content: "\f09e"; }
428
-
429
- .icon-hdd:before { content: "\f0a0"; }
430
- .icon-bullhorn:before { content: "\f0a1"; }
431
- .icon-bell:before { content: "\f0a2"; }
432
- .icon-certificate:before { content: "\f0a3"; }
433
- .icon-hand-right:before { content: "\f0a4"; }
434
- .icon-hand-left:before { content: "\f0a5"; }
435
- .icon-hand-up:before { content: "\f0a6"; }
436
- .icon-hand-down:before { content: "\f0a7"; }
437
- .icon-circle-arrow-left:before { content: "\f0a8"; }
438
- .icon-circle-arrow-right:before { content: "\f0a9"; }
439
- .icon-circle-arrow-up:before { content: "\f0aa"; }
440
- .icon-circle-arrow-down:before { content: "\f0ab"; }
441
- .icon-globe:before { content: "\f0ac"; }
442
- .icon-wrench:before { content: "\f0ad"; }
443
- .icon-tasks:before { content: "\f0ae"; }
444
-
445
- .icon-filter:before { content: "\f0b0"; }
446
- .icon-briefcase:before { content: "\f0b1"; }
447
- .icon-fullscreen:before { content: "\f0b2"; }
448
-
449
- .icon-group:before { content: "\f0c0"; }
450
- .icon-link:before { content: "\f0c1"; }
451
- .icon-cloud:before { content: "\f0c2"; }
452
- .icon-beaker:before { content: "\f0c3"; }
453
- .icon-cut:before { content: "\f0c4"; }
454
- .icon-copy:before { content: "\f0c5"; }
455
- .icon-paper-clip:before { content: "\f0c6"; }
456
- .icon-save:before { content: "\f0c7"; }
457
- .icon-sign-blank:before { content: "\f0c8"; }
458
- .icon-reorder:before { content: "\f0c9"; }
459
- .icon-list-ul:before { content: "\f0ca"; }
460
- .icon-list-ol:before { content: "\f0cb"; }
461
- .icon-strikethrough:before { content: "\f0cc"; }
462
- .icon-underline:before { content: "\f0cd"; }
463
- .icon-table:before { content: "\f0ce"; }
464
-
465
- .icon-magic:before { content: "\f0d0"; }
466
- .icon-truck:before { content: "\f0d1"; }
467
- .icon-pinterest:before { content: "\f0d2"; }
468
- .icon-pinterest-sign:before { content: "\f0d3"; }
469
- .icon-google-plus-sign:before { content: "\f0d4"; }
470
- .icon-google-plus:before { content: "\f0d5"; }
471
- .icon-money:before { content: "\f0d6"; }
472
- .icon-caret-down:before { content: "\f0d7"; }
473
- .icon-caret-up:before { content: "\f0d8"; }
474
- .icon-caret-left:before { content: "\f0d9"; }
475
- .icon-caret-right:before { content: "\f0da"; }
476
- .icon-columns:before { content: "\f0db"; }
477
- .icon-sort:before { content: "\f0dc"; }
478
- .icon-sort-down:before { content: "\f0dd"; }
479
- .icon-sort-up:before { content: "\f0de"; }
480
-
481
- .icon-envelope-alt:before { content: "\f0e0"; }
482
- .icon-linkedin:before { content: "\f0e1"; }
483
- .icon-undo:before { content: "\f0e2"; }
484
- .icon-legal:before { content: "\f0e3"; }
485
- .icon-dashboard:before { content: "\f0e4"; }
486
- .icon-comment-alt:before { content: "\f0e5"; }
487
- .icon-comments-alt:before { content: "\f0e6"; }
488
- .icon-bolt:before { content: "\f0e7"; }
489
- .icon-sitemap:before { content: "\f0e8"; }
490
- .icon-umbrella:before { content: "\f0e9"; }
491
- .icon-paste:before { content: "\f0ea"; }
492
- .icon-lightbulb:before { content: "\f0eb"; }
493
- .icon-exchange:before { content: "\f0ec"; }
494
- .icon-cloud-download:before { content: "\f0ed"; }
495
- .icon-cloud-upload:before { content: "\f0ee"; }
496
-
497
- .icon-user-md:before { content: "\f0f0"; }
498
- .icon-stethoscope:before { content: "\f0f1"; }
499
- .icon-suitcase:before { content: "\f0f2"; }
500
- .icon-bell-alt:before { content: "\f0f3"; }
501
- .icon-coffee:before { content: "\f0f4"; }
502
- .icon-food:before { content: "\f0f5"; }
503
- .icon-file-alt:before { content: "\f0f6"; }
504
- .icon-building:before { content: "\f0f7"; }
505
- .icon-hospital:before { content: "\f0f8"; }
506
- .icon-ambulance:before { content: "\f0f9"; }
507
- .icon-medkit:before { content: "\f0fa"; }
508
- .icon-fighter-jet:before { content: "\f0fb"; }
509
- .icon-beer:before { content: "\f0fc"; }
510
- .icon-h-sign:before { content: "\f0fd"; }
511
- .icon-plus-sign-alt:before { content: "\f0fe"; }
512
-
513
- .icon-double-angle-left:before { content: "\f100"; }
514
- .icon-double-angle-right:before { content: "\f101"; }
515
- .icon-double-angle-up:before { content: "\f102"; }
516
- .icon-double-angle-down:before { content: "\f103"; }
517
- .icon-angle-left:before { content: "\f104"; }
518
- .icon-angle-right:before { content: "\f105"; }
519
- .icon-angle-up:before { content: "\f106"; }
520
- .icon-angle-down:before { content: "\f107"; }
521
- .icon-desktop:before { content: "\f108"; }
522
- .icon-laptop:before { content: "\f109"; }
523
- .icon-tablet:before { content: "\f10a"; }
524
- .icon-mobile-phone:before { content: "\f10b"; }
525
- .icon-circle-blank:before { content: "\f10c"; }
526
- .icon-quote-left:before { content: "\f10d"; }
527
- .icon-quote-right:before { content: "\f10e"; }
528
-
529
- .icon-spinner:before { content: "\f110"; }
530
- .icon-circle:before { content: "\f111"; }
531
- .icon-reply:before { content: "\f112"; }
532
- .icon-github-alt:before { content: "\f113"; }
533
- .icon-folder-close-alt:before { content: "\f114"; }
534
- .icon-folder-open-alt:before { content: "\f115"; }