creative_tim 1.0.5 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,37 @@
1
+ // Text Helpers
2
+ .center {
3
+ text-align: center;
4
+ }
5
+
6
+ .justify {
7
+ text-align: justify;
8
+ }
9
+
10
+ // Icons Helpers
11
+ .left-icon {
12
+ margin-right: 5px;
13
+ }
14
+
15
+ .right-icon {
16
+ margin-left: 5px;
17
+ }
18
+
19
+ // Float Helpers
20
+ .left {
21
+ float: left;
22
+ }
23
+
24
+ .right {
25
+ float: right;
26
+ }
27
+
28
+ // HELPERS
29
+ .justify {
30
+ text-align: justify;
31
+ }
32
+
33
+
34
+ // FIX
35
+ .logo-container .logo {
36
+ border: none;
37
+ }
@@ -0,0 +1,61 @@
1
+ /*********************
2
+ Media Query Classes
3
+ **********************/
4
+ .hide-on-small-only, .hide-on-small-and-down {
5
+ @media #{$small-and-down} {
6
+ display: none !important;
7
+ }
8
+ }
9
+ .hide-on-med-and-down {
10
+ @media #{$medium-and-down} {
11
+ display: none !important;
12
+ }
13
+ }
14
+ .hide-on-med-and-up {
15
+ @media #{$medium-and-up} {
16
+ display: none !important;
17
+ }
18
+ }
19
+ .hide-on-med-only {
20
+ @media only screen and (min-width: $small-screen) and (max-width: $medium-screen) {
21
+ display: none !important;
22
+ }
23
+ }
24
+ .hide-on-large-only {
25
+ @media #{$large-and-up} {
26
+ display: none !important;
27
+ }
28
+ }
29
+ .show-on-large {
30
+ @media #{$large-and-up} {
31
+ display: block !important;
32
+ }
33
+ }
34
+ .show-on-medium {
35
+ @media only screen and (min-width: $small-screen) and (max-width: $medium-screen) {
36
+ display: block !important;
37
+ }
38
+ }
39
+ .show-on-small {
40
+ @media #{$small-and-down} {
41
+ display: block !important;
42
+ }
43
+ }
44
+ .show-on-medium-and-up {
45
+ @media #{$medium-and-up} {
46
+ display: block !important;
47
+ }
48
+ }
49
+ .show-on-medium-and-down {
50
+ @media #{$medium-and-down} {
51
+ display: block !important;
52
+ }
53
+ }
54
+
55
+
56
+ // Center text on mobile
57
+ .center-on-small-only {
58
+ @media #{$small-and-down} {
59
+ text-align: center;
60
+ }
61
+ }
@@ -0,0 +1,162 @@
1
+ /*** Colors ***/
2
+ $primary-color: color("materialize-red", "lighten-2") !default;
3
+ $primary-color-light: lighten($primary-color, 15%) !default;
4
+ $primary-color-dark: darken($primary-color, 15%) !default;
5
+
6
+ $secondary-color: color("teal", "lighten-1") !default;
7
+ $success-color: color("green", "base") !default;
8
+ $error-color: color("red", "base") !default;
9
+ $link-color: color("light-blue", "darken-1") !default;
10
+
11
+ /*** Badges ***/
12
+ $badge-bg-color: $secondary-color !default;
13
+
14
+ /*** Buttons ***/
15
+ $button-bg-color-disabled: #DFDFDF !default;
16
+ $button-color: $secondary-color !default;
17
+ $button-color-disabled: #9F9F9F !default;
18
+ $button-color-flat: #343434 !default;
19
+ $button-color-raised: #fff !default;
20
+ $button-floating-size: 37px !default;
21
+ $button-height: 36px !default;
22
+ $button-font-size-shared: 1.3rem !default;
23
+ $button-large-icon-font-size: 1.6rem !default;
24
+ $button-line-height: 36px !default;
25
+
26
+ /*** Cards ***/
27
+ $card-padding: 20px !default;
28
+ $card-bg-color: #fff !default;
29
+ $card-link-color: color("orange", "accent-2") !default;
30
+ $card-link-color-light: lighten($card-link-color, 20%) !default;
31
+
32
+ /*** Collapsible ***/
33
+ $collapsible-height: 3rem !default;
34
+ $collapsible-header-color: #fff !default;
35
+ $collapsible-border-color: #ddd !default;
36
+
37
+ /*** Chips ***/
38
+ $chip-bg-color: #e4e4e4 !default;
39
+
40
+ /*** Date Picker ***/
41
+ $datepicker-weekday-bg: darken($secondary_color, 7%) !default;
42
+ $datepicker-date-bg: $secondary_color !default;
43
+ $datepicker-year: rgba(255, 255, 255, .4) !default;
44
+ $datepicker-focus: rgba(0,0,0, .05) !default;
45
+ $datepicker-selected: $secondary-color !default;
46
+ $datepicker-selected-outfocus: desaturate(lighten($secondary-color, 35%), 15%) !default;
47
+
48
+ /*** Dropdown ***/
49
+ $dropdown-bg-color: #fff !default;
50
+ $dropdown-hover-bg-color: #eee !default;
51
+ $dropdown-color: $secondary-color !default;
52
+ $dropdown-item-height: 50px !default;
53
+
54
+ /*** Fonts ***/
55
+ $roboto-font-path: "roboto/" !default;
56
+ $icons-font-path: "material-design-icons/" !default;
57
+
58
+ /*** Forms ***/
59
+ // Text Inputs + Textarea
60
+ $input-border-color: color("grey", "base") !default;
61
+ $input-bg-color: #fff !default;
62
+ $input-error-color: $error-color !default;
63
+ $input-success-color: $success-color !default;
64
+ $input-focus-color: $secondary-color !default;
65
+ $label-font-size: .8rem !default;
66
+ $input-disabled-color: rgba(0,0,0, .26) !default;
67
+ $input-disabled-solid-color: #BDBDBD !default;
68
+
69
+ // Radio Buttons
70
+ $radio-fill-color: $secondary-color !default;
71
+ $radio-empty-color: #5a5a5a !default;
72
+
73
+ // Switches
74
+ $switch-bg-color: $secondary-color !default;
75
+ $switch-checked-lever-bg: desaturate(lighten($secondary-color, 25%), 25%) !default;
76
+ $switch-unchecked-bg: #F1F1F1 !default;
77
+ $switch-unchecked-lever-bg: #818181 !default;
78
+
79
+
80
+ /*** Global ***/
81
+ // Media Query Ranges
82
+ $small-screen-up: 601px !default;
83
+ $medium-screen-up: 993px !default;
84
+ $large-screen-up: 1201px !default;
85
+ $small-screen: 600px !default;
86
+ $medium-screen: 992px !default;
87
+ $large-screen: 1200px !default;
88
+
89
+ $medium-and-up: "only screen and (min-width : #{$small-screen-up})" !default;
90
+ $large-and-up: "only screen and (min-width : #{$medium-screen-up})" !default;
91
+ $small-and-down: "only screen and (max-width : #{$small-screen})" !default;
92
+ $medium-and-down: "only screen and (max-width : #{$medium-screen})" !default;
93
+ $medium-only: "only screen and (min-width : #{$small-screen-up}) and (max-width : #{$medium-screen})" !default;
94
+
95
+ // Grid Variables
96
+ $num-cols: 12 !default;
97
+ $gutter-width: 1.5rem !default;
98
+ $element-top-margin: $gutter-width/3 !default;
99
+ $element-bottom-margin: ($gutter-width*2)/3 !default;
100
+
101
+ /*** Navbar ***/
102
+ $navbar-height: 64px !default;
103
+ $navbar-height-mobile: 56px !default;
104
+ $navbar-font-color: #fff !default;
105
+ $navbar-brand-font-size: 2.1rem !default;
106
+
107
+ /*** SideNav ***/
108
+ $sidenav-font-color: #444 !default;
109
+ $sidenav-bg-color: #fff !default;
110
+ $sidenav-padding-right: 30px !default;
111
+ $sidenav-item-height: 64px !default;
112
+
113
+ /*** Photo Slider ***/
114
+ $slider-bg-color: color('grey', 'base') !default;
115
+ $slider-bg-color-light: color('grey', 'lighten-2') !default;
116
+ $slider-indicator-color: color('green', 'base') !default;
117
+
118
+ /*** Spinners | Loaders ***/
119
+ $spinner-default-color: $secondary-color !default;
120
+
121
+ /*** Tabs ***/
122
+ $tabs-underline-color: $primary-color-light !default;
123
+ $tabs-text-color: $primary-color !default;
124
+ $tabs-bg-color: #fff !default;
125
+
126
+ /*** Tables ***/
127
+ $table-border-color: #d0d0d0 !default;
128
+ $table-striped-color: #f2f2f2 !default;
129
+
130
+ /*** Toasts ***/
131
+ $toast-height: 48px !default;
132
+ $toast-color: #323232 !default;
133
+ $toast-text-color: #fff !default;
134
+
135
+ /*** Typography ***/
136
+ $off-black: rgba(0, 0, 0, 0.87) !default;
137
+ // Header Styles
138
+ $h1-fontsize: 4.2rem !default;
139
+ $h2-fontsize: 3.56rem !default;
140
+ $h3-fontsize: 2.92rem !default;
141
+ $h4-fontsize: 2.28rem !default;
142
+ $h5-fontsize: 1.64rem !default;
143
+ $h6-fontsize: 1rem !default;
144
+
145
+ // Footer
146
+ $footer-bg-color: $primary-color !default;
147
+
148
+ // Flowtext
149
+ $range : $large-screen - $small-screen !default;
150
+ $intervals: 20 !default;
151
+ $interval-size: $range / $intervals !default;
152
+
153
+ /*** Collections ***/
154
+ $collection-border-color: #e0e0e0 !default;
155
+ $collection-bg-color: #fff !default;
156
+ $collection-active-bg-color: $secondary-color !default;
157
+ $collection-active-color: lighten($secondary-color, 55%) !default;
158
+ $collection-hover-bg-color: #ddd !default;
159
+ $collection-link-color: $secondary-color !default;
160
+
161
+ /* Progress Bar */
162
+ $progress-bar-color: $secondary-color !default;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: creative_tim
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilton Garcia
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-04-28 00:00:00.000000000 Z
11
+ date: 2016-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -123,8 +123,13 @@ files:
123
123
  - vendor/assets/javascripts/creative-tim/paper_dashboard/jquery-1.10.2.js
124
124
  - vendor/assets/javascripts/creative-tim/paper_dashboard/paper-dashboard.js
125
125
  - vendor/assets/stylesheets/creative-tim/awesome_landing/bootstrap.css
126
+ - vendor/assets/stylesheets/creative-tim/awesome_landing/fixes.scss
126
127
  - vendor/assets/stylesheets/creative-tim/awesome_landing/landing-page.css
127
- - vendor/assets/stylesheets/creative-tim/awesome_landing/pe-icon-7-stroke.css
128
+ - vendor/assets/stylesheets/creative-tim/material_helper.scss
129
+ - vendor/assets/stylesheets/creative-tim/material_helper_resources/colors.scss
130
+ - vendor/assets/stylesheets/creative-tim/material_helper_resources/globals.scss
131
+ - vendor/assets/stylesheets/creative-tim/material_helper_resources/media_queries.scss
132
+ - vendor/assets/stylesheets/creative-tim/material_helper_resources/variables.scss
128
133
  - vendor/assets/stylesheets/creative-tim/paper_dashboard/animate.min.css
129
134
  - vendor/assets/stylesheets/creative-tim/paper_dashboard/bootstrap.min.css
130
135
  - vendor/assets/stylesheets/creative-tim/paper_dashboard/demo.css
@@ -1,632 +0,0 @@
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
- }