localtower 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (147) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +38 -0
  3. data/Rakefile +33 -0
  4. data/app/controllers/localtower/application_controller.rb +5 -0
  5. data/app/controllers/localtower/pages_controller.rb +55 -0
  6. data/app/helpers/localtower/application_helper.rb +19 -0
  7. data/app/views/layouts/localtower/application.html.erb +94 -0
  8. data/app/views/localtower/pages/dashboard.html.erb +55 -0
  9. data/app/views/localtower/pages/migrations.html.erb +99 -0
  10. data/app/views/localtower/pages/models.html.erb +78 -0
  11. data/app/views/localtower/pages/relations.html.erb +53 -0
  12. data/config/routes.rb +16 -0
  13. data/lib/localtower.rb +19 -0
  14. data/lib/localtower/engine.rb +9 -0
  15. data/lib/localtower/generators/migration.rb +275 -0
  16. data/lib/localtower/generators/model.rb +36 -0
  17. data/lib/localtower/generators/relation.rb +55 -0
  18. data/lib/localtower/tools.rb +173 -0
  19. data/lib/localtower/version.rb +3 -0
  20. data/lib/tasks/localtower_tasks.rake +4 -0
  21. data/public/css/app.css +29 -0
  22. data/public/js/app.js +106 -0
  23. data/public/light-bootstrap-dashboard-master/assets/css/animate.min.css +6 -0
  24. data/public/light-bootstrap-dashboard-master/assets/css/bootstrap.min.css +5 -0
  25. data/public/light-bootstrap-dashboard-master/assets/css/demo.css +61 -0
  26. data/public/light-bootstrap-dashboard-master/assets/css/light-bootstrap-dashboard.css +2815 -0
  27. data/public/light-bootstrap-dashboard-master/assets/css/pe-icon-7-stroke.css +632 -0
  28. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.eot +0 -0
  29. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.svg +212 -0
  30. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.ttf +0 -0
  31. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.woff +0 -0
  32. data/public/light-bootstrap-dashboard-master/assets/img/default-avatar.png +0 -0
  33. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-0.jpg +0 -0
  34. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-1.jpg +0 -0
  35. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-2.jpg +0 -0
  36. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-3.jpg +0 -0
  37. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-4.jpg +0 -0
  38. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-5.jpg +0 -0
  39. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-6.jpg +0 -0
  40. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-7.jpg +0 -0
  41. data/public/light-bootstrap-dashboard-master/assets/img/faces/tim_vector.jpe +0 -0
  42. data/public/light-bootstrap-dashboard-master/assets/img/favicon.ico +0 -0
  43. data/public/light-bootstrap-dashboard-master/assets/img/loading-bubbles.svg +14 -0
  44. data/public/light-bootstrap-dashboard-master/assets/img/mask.png +0 -0
  45. data/public/light-bootstrap-dashboard-master/assets/img/new_logo.png +0 -0
  46. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-1.jpg +0 -0
  47. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-2.jpg +0 -0
  48. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-3.jpg +0 -0
  49. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-4.jpg +0 -0
  50. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-5.jpg +0 -0
  51. data/public/light-bootstrap-dashboard-master/assets/img/tim_80x80.png +0 -0
  52. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-checkbox-radio-switch.js +502 -0
  53. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-notify.js +404 -0
  54. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-select.js +438 -0
  55. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap.min.js +7 -0
  56. data/public/light-bootstrap-dashboard-master/assets/js/chartist.min.js +9 -0
  57. data/public/light-bootstrap-dashboard-master/assets/js/demo.js +152 -0
  58. data/public/light-bootstrap-dashboard-master/assets/js/jquery-1.10.2.js +9789 -0
  59. data/public/light-bootstrap-dashboard-master/assets/js/light-bootstrap-dashboard.js +182 -0
  60. data/spec/dummy/Gemfile +33 -0
  61. data/spec/dummy/Gemfile.lock +186 -0
  62. data/spec/dummy/README.md +24 -0
  63. data/spec/dummy/Rakefile +6 -0
  64. data/spec/dummy/app/assets/config/manifest.js +3 -0
  65. data/spec/dummy/app/assets/javascripts/application.js +16 -0
  66. data/spec/dummy/app/assets/javascripts/cable.js +13 -0
  67. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  68. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  69. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  70. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  71. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  72. data/spec/dummy/app/jobs/application_job.rb +2 -0
  73. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  74. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  75. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  76. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  77. data/spec/dummy/bin/bundle +3 -0
  78. data/spec/dummy/bin/rails +9 -0
  79. data/spec/dummy/bin/rake +9 -0
  80. data/spec/dummy/bin/setup +34 -0
  81. data/spec/dummy/bin/spring +17 -0
  82. data/spec/dummy/bin/update +29 -0
  83. data/spec/dummy/config.ru +5 -0
  84. data/spec/dummy/config/application.rb +30 -0
  85. data/spec/dummy/config/boot.rb +3 -0
  86. data/spec/dummy/config/cable.yml +9 -0
  87. data/spec/dummy/config/database.yml +18 -0
  88. data/spec/dummy/config/environment.rb +5 -0
  89. data/spec/dummy/config/environments/development.rb +54 -0
  90. data/spec/dummy/config/environments/production.rb +86 -0
  91. data/spec/dummy/config/environments/test.rb +42 -0
  92. data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  93. data/spec/dummy/config/initializers/assets.rb +11 -0
  94. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  95. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  96. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  97. data/spec/dummy/config/initializers/inflections.rb +16 -0
  98. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  99. data/spec/dummy/config/initializers/new_framework_defaults.rb +24 -0
  100. data/spec/dummy/config/initializers/session_store.rb +3 -0
  101. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  102. data/spec/dummy/config/locales/en.yml +23 -0
  103. data/spec/dummy/config/puma.rb +47 -0
  104. data/spec/dummy/config/routes.rb +5 -0
  105. data/spec/dummy/config/secrets.yml +22 -0
  106. data/spec/dummy/config/spring.rb +6 -0
  107. data/spec/dummy/coverage/assets/0.10.0/application.css +799 -0
  108. data/spec/dummy/coverage/assets/0.10.0/application.js +1707 -0
  109. data/spec/dummy/coverage/assets/0.10.0/colorbox/border.png +0 -0
  110. data/spec/dummy/coverage/assets/0.10.0/colorbox/controls.png +0 -0
  111. data/spec/dummy/coverage/assets/0.10.0/colorbox/loading.gif +0 -0
  112. data/spec/dummy/coverage/assets/0.10.0/colorbox/loading_background.png +0 -0
  113. data/spec/dummy/coverage/assets/0.10.0/favicon_green.png +0 -0
  114. data/spec/dummy/coverage/assets/0.10.0/favicon_red.png +0 -0
  115. data/spec/dummy/coverage/assets/0.10.0/favicon_yellow.png +0 -0
  116. data/spec/dummy/coverage/assets/0.10.0/loading.gif +0 -0
  117. data/spec/dummy/coverage/assets/0.10.0/magnify.png +0 -0
  118. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  119. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  120. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  121. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  122. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  123. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  124. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  125. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  126. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-icons_222222_256x240.png +0 -0
  127. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  128. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-icons_454545_256x240.png +0 -0
  129. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-icons_888888_256x240.png +0 -0
  130. data/spec/dummy/coverage/assets/0.10.0/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  131. data/spec/dummy/coverage/index.html +294 -0
  132. data/spec/dummy/custom_plan.rb +11 -0
  133. data/spec/dummy/db/schema.rb +4 -0
  134. data/spec/dummy/lib/playground.rb +0 -0
  135. data/spec/dummy/log/development.log +22924 -0
  136. data/spec/dummy/log/localtower.log +11352 -0
  137. data/spec/dummy/log/test.log +9166 -0
  138. data/spec/dummy/tmp/restart.txt +0 -0
  139. data/spec/dummy/zeus.json +22 -0
  140. data/spec/factories/migration.rb +140 -0
  141. data/spec/factories/model.rb +36 -0
  142. data/spec/lib/localtower/generators/migration_spec.rb +113 -0
  143. data/spec/lib/localtower/generators/model_spec.rb +43 -0
  144. data/spec/lib/localtower/generators/relation_spec.rb +34 -0
  145. data/spec/lib/localtower/tools_spec.rb +14 -0
  146. data/spec/spec_helper.rb +47 -0
  147. metadata +401 -0
@@ -0,0 +1,632 @@
1
+ @font-face {
2
+ font-family: 'Pe-icon-7-stroke';
3
+ src:url('../fonts/Pe-icon-7-stroke.eot?d7yf1v');
4
+ src:url('../fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v') format('embedded-opentype'),
5
+ url('../fonts/Pe-icon-7-stroke.woff?d7yf1v') format('woff'),
6
+ url('../fonts/Pe-icon-7-stroke.ttf?d7yf1v') format('truetype'),
7
+ url('../fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke') format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ }
11
+
12
+ [class^="pe-7s-"], [class*=" pe-7s-"] {
13
+ display: inline-block;
14
+ font-family: 'Pe-icon-7-stroke';
15
+ speak: none;
16
+ font-style: normal;
17
+ font-weight: normal;
18
+ font-variant: normal;
19
+ text-transform: none;
20
+ line-height: 1;
21
+
22
+ /* Better Font Rendering =========== */
23
+ -webkit-font-smoothing: antialiased;
24
+ -moz-osx-font-smoothing: grayscale;
25
+ }
26
+
27
+ .pe-7s-album:before {
28
+ content: "\e6aa";
29
+ }
30
+ .pe-7s-arc:before {
31
+ content: "\e6ab";
32
+ }
33
+ .pe-7s-back-2:before {
34
+ content: "\e6ac";
35
+ }
36
+ .pe-7s-bandaid:before {
37
+ content: "\e6ad";
38
+ }
39
+ .pe-7s-car:before {
40
+ content: "\e6ae";
41
+ }
42
+ .pe-7s-diamond:before {
43
+ content: "\e6af";
44
+ }
45
+ .pe-7s-door-lock:before {
46
+ content: "\e6b0";
47
+ }
48
+ .pe-7s-eyedropper:before {
49
+ content: "\e6b1";
50
+ }
51
+ .pe-7s-female:before {
52
+ content: "\e6b2";
53
+ }
54
+ .pe-7s-gym:before {
55
+ content: "\e6b3";
56
+ }
57
+ .pe-7s-hammer:before {
58
+ content: "\e6b4";
59
+ }
60
+ .pe-7s-headphones:before {
61
+ content: "\e6b5";
62
+ }
63
+ .pe-7s-helm:before {
64
+ content: "\e6b6";
65
+ }
66
+ .pe-7s-hourglass:before {
67
+ content: "\e6b7";
68
+ }
69
+ .pe-7s-leaf:before {
70
+ content: "\e6b8";
71
+ }
72
+ .pe-7s-magic-wand:before {
73
+ content: "\e6b9";
74
+ }
75
+ .pe-7s-male:before {
76
+ content: "\e6ba";
77
+ }
78
+ .pe-7s-map-2:before {
79
+ content: "\e6bb";
80
+ }
81
+ .pe-7s-next-2:before {
82
+ content: "\e6bc";
83
+ }
84
+ .pe-7s-paint-bucket:before {
85
+ content: "\e6bd";
86
+ }
87
+ .pe-7s-pendrive:before {
88
+ content: "\e6be";
89
+ }
90
+ .pe-7s-photo:before {
91
+ content: "\e6bf";
92
+ }
93
+ .pe-7s-piggy:before {
94
+ content: "\e6c0";
95
+ }
96
+ .pe-7s-plugin:before {
97
+ content: "\e6c1";
98
+ }
99
+ .pe-7s-refresh-2:before {
100
+ content: "\e6c2";
101
+ }
102
+ .pe-7s-rocket:before {
103
+ content: "\e6c3";
104
+ }
105
+ .pe-7s-settings:before {
106
+ content: "\e6c4";
107
+ }
108
+ .pe-7s-shield:before {
109
+ content: "\e6c5";
110
+ }
111
+ .pe-7s-smile:before {
112
+ content: "\e6c6";
113
+ }
114
+ .pe-7s-usb:before {
115
+ content: "\e6c7";
116
+ }
117
+ .pe-7s-vector:before {
118
+ content: "\e6c8";
119
+ }
120
+ .pe-7s-wine:before {
121
+ content: "\e6c9";
122
+ }
123
+ .pe-7s-cloud-upload:before {
124
+ content: "\e68a";
125
+ }
126
+ .pe-7s-cash:before {
127
+ content: "\e68c";
128
+ }
129
+ .pe-7s-close:before {
130
+ content: "\e680";
131
+ }
132
+ .pe-7s-bluetooth:before {
133
+ content: "\e68d";
134
+ }
135
+ .pe-7s-cloud-download:before {
136
+ content: "\e68b";
137
+ }
138
+ .pe-7s-way:before {
139
+ content: "\e68e";
140
+ }
141
+ .pe-7s-close-circle:before {
142
+ content: "\e681";
143
+ }
144
+ .pe-7s-id:before {
145
+ content: "\e68f";
146
+ }
147
+ .pe-7s-angle-up:before {
148
+ content: "\e682";
149
+ }
150
+ .pe-7s-wristwatch:before {
151
+ content: "\e690";
152
+ }
153
+ .pe-7s-angle-up-circle:before {
154
+ content: "\e683";
155
+ }
156
+ .pe-7s-world:before {
157
+ content: "\e691";
158
+ }
159
+ .pe-7s-angle-right:before {
160
+ content: "\e684";
161
+ }
162
+ .pe-7s-volume:before {
163
+ content: "\e692";
164
+ }
165
+ .pe-7s-angle-right-circle:before {
166
+ content: "\e685";
167
+ }
168
+ .pe-7s-users:before {
169
+ content: "\e693";
170
+ }
171
+ .pe-7s-angle-left:before {
172
+ content: "\e686";
173
+ }
174
+ .pe-7s-user-female:before {
175
+ content: "\e694";
176
+ }
177
+ .pe-7s-angle-left-circle:before {
178
+ content: "\e687";
179
+ }
180
+ .pe-7s-up-arrow:before {
181
+ content: "\e695";
182
+ }
183
+ .pe-7s-angle-down:before {
184
+ content: "\e688";
185
+ }
186
+ .pe-7s-switch:before {
187
+ content: "\e696";
188
+ }
189
+ .pe-7s-angle-down-circle:before {
190
+ content: "\e689";
191
+ }
192
+ .pe-7s-scissors:before {
193
+ content: "\e697";
194
+ }
195
+ .pe-7s-wallet:before {
196
+ content: "\e600";
197
+ }
198
+ .pe-7s-safe:before {
199
+ content: "\e698";
200
+ }
201
+ .pe-7s-volume2:before {
202
+ content: "\e601";
203
+ }
204
+ .pe-7s-volume1:before {
205
+ content: "\e602";
206
+ }
207
+ .pe-7s-voicemail:before {
208
+ content: "\e603";
209
+ }
210
+ .pe-7s-video:before {
211
+ content: "\e604";
212
+ }
213
+ .pe-7s-user:before {
214
+ content: "\e605";
215
+ }
216
+ .pe-7s-upload:before {
217
+ content: "\e606";
218
+ }
219
+ .pe-7s-unlock:before {
220
+ content: "\e607";
221
+ }
222
+ .pe-7s-umbrella:before {
223
+ content: "\e608";
224
+ }
225
+ .pe-7s-trash:before {
226
+ content: "\e609";
227
+ }
228
+ .pe-7s-tools:before {
229
+ content: "\e60a";
230
+ }
231
+ .pe-7s-timer:before {
232
+ content: "\e60b";
233
+ }
234
+ .pe-7s-ticket:before {
235
+ content: "\e60c";
236
+ }
237
+ .pe-7s-target:before {
238
+ content: "\e60d";
239
+ }
240
+ .pe-7s-sun:before {
241
+ content: "\e60e";
242
+ }
243
+ .pe-7s-study:before {
244
+ content: "\e60f";
245
+ }
246
+ .pe-7s-stopwatch:before {
247
+ content: "\e610";
248
+ }
249
+ .pe-7s-star:before {
250
+ content: "\e611";
251
+ }
252
+ .pe-7s-speaker:before {
253
+ content: "\e612";
254
+ }
255
+ .pe-7s-signal:before {
256
+ content: "\e613";
257
+ }
258
+ .pe-7s-shuffle:before {
259
+ content: "\e614";
260
+ }
261
+ .pe-7s-shopbag:before {
262
+ content: "\e615";
263
+ }
264
+ .pe-7s-share:before {
265
+ content: "\e616";
266
+ }
267
+ .pe-7s-server:before {
268
+ content: "\e617";
269
+ }
270
+ .pe-7s-search:before {
271
+ content: "\e618";
272
+ }
273
+ .pe-7s-film:before {
274
+ content: "\e6a5";
275
+ }
276
+ .pe-7s-science:before {
277
+ content: "\e619";
278
+ }
279
+ .pe-7s-disk:before {
280
+ content: "\e6a6";
281
+ }
282
+ .pe-7s-ribbon:before {
283
+ content: "\e61a";
284
+ }
285
+ .pe-7s-repeat:before {
286
+ content: "\e61b";
287
+ }
288
+ .pe-7s-refresh:before {
289
+ content: "\e61c";
290
+ }
291
+ .pe-7s-add-user:before {
292
+ content: "\e6a9";
293
+ }
294
+ .pe-7s-refresh-cloud:before {
295
+ content: "\e61d";
296
+ }
297
+ .pe-7s-paperclip:before {
298
+ content: "\e69c";
299
+ }
300
+ .pe-7s-radio:before {
301
+ content: "\e61e";
302
+ }
303
+ .pe-7s-note2:before {
304
+ content: "\e69d";
305
+ }
306
+ .pe-7s-print:before {
307
+ content: "\e61f";
308
+ }
309
+ .pe-7s-network:before {
310
+ content: "\e69e";
311
+ }
312
+ .pe-7s-prev:before {
313
+ content: "\e620";
314
+ }
315
+ .pe-7s-mute:before {
316
+ content: "\e69f";
317
+ }
318
+ .pe-7s-power:before {
319
+ content: "\e621";
320
+ }
321
+ .pe-7s-medal:before {
322
+ content: "\e6a0";
323
+ }
324
+ .pe-7s-portfolio:before {
325
+ content: "\e622";
326
+ }
327
+ .pe-7s-like2:before {
328
+ content: "\e6a1";
329
+ }
330
+ .pe-7s-plus:before {
331
+ content: "\e623";
332
+ }
333
+ .pe-7s-left-arrow:before {
334
+ content: "\e6a2";
335
+ }
336
+ .pe-7s-play:before {
337
+ content: "\e624";
338
+ }
339
+ .pe-7s-key:before {
340
+ content: "\e6a3";
341
+ }
342
+ .pe-7s-plane:before {
343
+ content: "\e625";
344
+ }
345
+ .pe-7s-joy:before {
346
+ content: "\e6a4";
347
+ }
348
+ .pe-7s-photo-gallery:before {
349
+ content: "\e626";
350
+ }
351
+ .pe-7s-pin:before {
352
+ content: "\e69b";
353
+ }
354
+ .pe-7s-phone:before {
355
+ content: "\e627";
356
+ }
357
+ .pe-7s-plug:before {
358
+ content: "\e69a";
359
+ }
360
+ .pe-7s-pen:before {
361
+ content: "\e628";
362
+ }
363
+ .pe-7s-right-arrow:before {
364
+ content: "\e699";
365
+ }
366
+ .pe-7s-paper-plane:before {
367
+ content: "\e629";
368
+ }
369
+ .pe-7s-delete-user:before {
370
+ content: "\e6a7";
371
+ }
372
+ .pe-7s-paint:before {
373
+ content: "\e62a";
374
+ }
375
+ .pe-7s-bottom-arrow:before {
376
+ content: "\e6a8";
377
+ }
378
+ .pe-7s-notebook:before {
379
+ content: "\e62b";
380
+ }
381
+ .pe-7s-note:before {
382
+ content: "\e62c";
383
+ }
384
+ .pe-7s-next:before {
385
+ content: "\e62d";
386
+ }
387
+ .pe-7s-news-paper:before {
388
+ content: "\e62e";
389
+ }
390
+ .pe-7s-musiclist:before {
391
+ content: "\e62f";
392
+ }
393
+ .pe-7s-music:before {
394
+ content: "\e630";
395
+ }
396
+ .pe-7s-mouse:before {
397
+ content: "\e631";
398
+ }
399
+ .pe-7s-more:before {
400
+ content: "\e632";
401
+ }
402
+ .pe-7s-moon:before {
403
+ content: "\e633";
404
+ }
405
+ .pe-7s-monitor:before {
406
+ content: "\e634";
407
+ }
408
+ .pe-7s-micro:before {
409
+ content: "\e635";
410
+ }
411
+ .pe-7s-menu:before {
412
+ content: "\e636";
413
+ }
414
+ .pe-7s-map:before {
415
+ content: "\e637";
416
+ }
417
+ .pe-7s-map-marker:before {
418
+ content: "\e638";
419
+ }
420
+ .pe-7s-mail:before {
421
+ content: "\e639";
422
+ }
423
+ .pe-7s-mail-open:before {
424
+ content: "\e63a";
425
+ }
426
+ .pe-7s-mail-open-file:before {
427
+ content: "\e63b";
428
+ }
429
+ .pe-7s-magnet:before {
430
+ content: "\e63c";
431
+ }
432
+ .pe-7s-loop:before {
433
+ content: "\e63d";
434
+ }
435
+ .pe-7s-look:before {
436
+ content: "\e63e";
437
+ }
438
+ .pe-7s-lock:before {
439
+ content: "\e63f";
440
+ }
441
+ .pe-7s-lintern:before {
442
+ content: "\e640";
443
+ }
444
+ .pe-7s-link:before {
445
+ content: "\e641";
446
+ }
447
+ .pe-7s-like:before {
448
+ content: "\e642";
449
+ }
450
+ .pe-7s-light:before {
451
+ content: "\e643";
452
+ }
453
+ .pe-7s-less:before {
454
+ content: "\e644";
455
+ }
456
+ .pe-7s-keypad:before {
457
+ content: "\e645";
458
+ }
459
+ .pe-7s-junk:before {
460
+ content: "\e646";
461
+ }
462
+ .pe-7s-info:before {
463
+ content: "\e647";
464
+ }
465
+ .pe-7s-home:before {
466
+ content: "\e648";
467
+ }
468
+ .pe-7s-help2:before {
469
+ content: "\e649";
470
+ }
471
+ .pe-7s-help1:before {
472
+ content: "\e64a";
473
+ }
474
+ .pe-7s-graph3:before {
475
+ content: "\e64b";
476
+ }
477
+ .pe-7s-graph2:before {
478
+ content: "\e64c";
479
+ }
480
+ .pe-7s-graph1:before {
481
+ content: "\e64d";
482
+ }
483
+ .pe-7s-graph:before {
484
+ content: "\e64e";
485
+ }
486
+ .pe-7s-global:before {
487
+ content: "\e64f";
488
+ }
489
+ .pe-7s-gleam:before {
490
+ content: "\e650";
491
+ }
492
+ .pe-7s-glasses:before {
493
+ content: "\e651";
494
+ }
495
+ .pe-7s-gift:before {
496
+ content: "\e652";
497
+ }
498
+ .pe-7s-folder:before {
499
+ content: "\e653";
500
+ }
501
+ .pe-7s-flag:before {
502
+ content: "\e654";
503
+ }
504
+ .pe-7s-filter:before {
505
+ content: "\e655";
506
+ }
507
+ .pe-7s-file:before {
508
+ content: "\e656";
509
+ }
510
+ .pe-7s-expand1:before {
511
+ content: "\e657";
512
+ }
513
+ .pe-7s-exapnd2:before {
514
+ content: "\e658";
515
+ }
516
+ .pe-7s-edit:before {
517
+ content: "\e659";
518
+ }
519
+ .pe-7s-drop:before {
520
+ content: "\e65a";
521
+ }
522
+ .pe-7s-drawer:before {
523
+ content: "\e65b";
524
+ }
525
+ .pe-7s-download:before {
526
+ content: "\e65c";
527
+ }
528
+ .pe-7s-display2:before {
529
+ content: "\e65d";
530
+ }
531
+ .pe-7s-display1:before {
532
+ content: "\e65e";
533
+ }
534
+ .pe-7s-diskette:before {
535
+ content: "\e65f";
536
+ }
537
+ .pe-7s-date:before {
538
+ content: "\e660";
539
+ }
540
+ .pe-7s-cup:before {
541
+ content: "\e661";
542
+ }
543
+ .pe-7s-culture:before {
544
+ content: "\e662";
545
+ }
546
+ .pe-7s-crop:before {
547
+ content: "\e663";
548
+ }
549
+ .pe-7s-credit:before {
550
+ content: "\e664";
551
+ }
552
+ .pe-7s-copy-file:before {
553
+ content: "\e665";
554
+ }
555
+ .pe-7s-config:before {
556
+ content: "\e666";
557
+ }
558
+ .pe-7s-compass:before {
559
+ content: "\e667";
560
+ }
561
+ .pe-7s-comment:before {
562
+ content: "\e668";
563
+ }
564
+ .pe-7s-coffee:before {
565
+ content: "\e669";
566
+ }
567
+ .pe-7s-cloud:before {
568
+ content: "\e66a";
569
+ }
570
+ .pe-7s-clock:before {
571
+ content: "\e66b";
572
+ }
573
+ .pe-7s-check:before {
574
+ content: "\e66c";
575
+ }
576
+ .pe-7s-chat:before {
577
+ content: "\e66d";
578
+ }
579
+ .pe-7s-cart:before {
580
+ content: "\e66e";
581
+ }
582
+ .pe-7s-camera:before {
583
+ content: "\e66f";
584
+ }
585
+ .pe-7s-call:before {
586
+ content: "\e670";
587
+ }
588
+ .pe-7s-calculator:before {
589
+ content: "\e671";
590
+ }
591
+ .pe-7s-browser:before {
592
+ content: "\e672";
593
+ }
594
+ .pe-7s-box2:before {
595
+ content: "\e673";
596
+ }
597
+ .pe-7s-box1:before {
598
+ content: "\e674";
599
+ }
600
+ .pe-7s-bookmarks:before {
601
+ content: "\e675";
602
+ }
603
+ .pe-7s-bicycle:before {
604
+ content: "\e676";
605
+ }
606
+ .pe-7s-bell:before {
607
+ content: "\e677";
608
+ }
609
+ .pe-7s-battery:before {
610
+ content: "\e678";
611
+ }
612
+ .pe-7s-ball:before {
613
+ content: "\e679";
614
+ }
615
+ .pe-7s-back:before {
616
+ content: "\e67a";
617
+ }
618
+ .pe-7s-attention:before {
619
+ content: "\e67b";
620
+ }
621
+ .pe-7s-anchor:before {
622
+ content: "\e67c";
623
+ }
624
+ .pe-7s-albums:before {
625
+ content: "\e67d";
626
+ }
627
+ .pe-7s-alarm:before {
628
+ content: "\e67e";
629
+ }
630
+ .pe-7s-airplay:before {
631
+ content: "\e67f";
632
+ }