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