blueshift 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +74 -0
- data/Rakefile +1 -0
- data/app/assets/fonts/gotham/gotham-bold.eot +0 -0
- data/app/assets/fonts/gotham/gotham-bold.svg +628 -0
- data/app/assets/fonts/gotham/gotham-bold.ttf +0 -0
- data/app/assets/fonts/gotham/gotham-bold.woff +0 -0
- data/app/assets/fonts/gotham/gotham-book.eot +0 -0
- data/app/assets/fonts/gotham/gotham-book.svg +631 -0
- data/app/assets/fonts/gotham/gotham-book.ttf +0 -0
- data/app/assets/fonts/gotham/gotham-book.woff +0 -0
- data/app/assets/fonts/gotham/gotham-light.eot +0 -0
- data/app/assets/fonts/gotham/gotham-light.svg +635 -0
- data/app/assets/fonts/gotham/gotham-light.ttf +0 -0
- data/app/assets/fonts/gotham/gotham-light.woff +0 -0
- data/app/assets/fonts/gotham/gotham-medium.eot +0 -0
- data/app/assets/fonts/gotham/gotham-medium.svg +629 -0
- data/app/assets/fonts/gotham/gotham-medium.ttf +0 -0
- data/app/assets/fonts/gotham/gotham-medium.woff +0 -0
- data/app/assets/fonts/ionicons/ionicons.eot +0 -0
- data/app/assets/fonts/ionicons/ionicons.svg +2254 -0
- data/app/assets/fonts/ionicons/ionicons.ttf +0 -0
- data/app/assets/fonts/ionicons/ionicons.woff +0 -0
- data/blueshift.gemspec +23 -0
- data/lib/blueshift.rb +6 -0
- data/lib/blueshift/version.rb +3 -0
- data/vendor/assets/javascripts/alert.js +99 -0
- data/vendor/assets/javascripts/collapse.js +167 -0
- data/vendor/assets/javascripts/date_picker.js +474 -0
- data/vendor/assets/javascripts/dropdown.js +169 -0
- data/vendor/assets/javascripts/file_input.js +100 -0
- data/vendor/assets/javascripts/map.js +2044 -0
- data/vendor/assets/javascripts/modal (1).js +247 -0
- data/vendor/assets/javascripts/modal.js +247 -0
- data/vendor/assets/javascripts/popover.js +114 -0
- data/vendor/assets/javascripts/tab.js +144 -0
- data/vendor/assets/javascripts/time_picker.js +888 -0
- data/vendor/assets/javascripts/tooltip.js +361 -0
- data/vendor/assets/javascripts/transitions.js +60 -0
- data/vendor/assets/stylesheets/ad.css.scss +72 -0
- data/vendor/assets/stylesheets/alert.css.scss +40 -0
- data/vendor/assets/stylesheets/breadcrumb.css.scss +22 -0
- data/vendor/assets/stylesheets/button.css.scss +202 -0
- data/vendor/assets/stylesheets/code.css.scss +49 -0
- data/vendor/assets/stylesheets/collapse.css.scss +14 -0
- data/vendor/assets/stylesheets/datepicker.css.scss +102 -0
- data/vendor/assets/stylesheets/dropdown.css.scss +84 -0
- data/vendor/assets/stylesheets/footer.css.scss +33 -0
- data/vendor/assets/stylesheets/form.css.scss +207 -0
- data/vendor/assets/stylesheets/grid.css.scss +291 -0
- data/vendor/assets/stylesheets/header.css.scss +134 -0
- data/vendor/assets/stylesheets/icon.css.scss +966 -0
- data/vendor/assets/stylesheets/image.css.scss +39 -0
- data/vendor/assets/stylesheets/label_and_badge.css.scss +53 -0
- data/vendor/assets/stylesheets/link.css.scss +19 -0
- data/vendor/assets/stylesheets/list.css.scss +38 -0
- data/vendor/assets/stylesheets/map.css.scss +13 -0
- data/vendor/assets/stylesheets/modal.css.scss +117 -0
- data/vendor/assets/stylesheets/pagination.css.scss +37 -0
- data/vendor/assets/stylesheets/placeholder.css.scss +11 -0
- data/vendor/assets/stylesheets/popover.css.scss +107 -0
- data/vendor/assets/stylesheets/progress.css.scss +25 -0
- data/vendor/assets/stylesheets/reset.css.scss +57 -0
- data/vendor/assets/stylesheets/tab.css.scss +165 -0
- data/vendor/assets/stylesheets/table.css.scss +70 -0
- data/vendor/assets/stylesheets/timepicker.css.scss +69 -0
- data/vendor/assets/stylesheets/tooltip.css.scss +81 -0
- data/vendor/assets/stylesheets/transitions.css.scss +12 -0
- data/vendor/assets/stylesheets/trunk.css.scss +72 -0
- data/vendor/assets/stylesheets/typography.css.scss +140 -0
- metadata +145 -0
@@ -0,0 +1,134 @@
|
|
1
|
+
/* Table of Contents
|
2
|
+
==================================================
|
3
|
+
#Header
|
4
|
+
#Header Alternate
|
5
|
+
#Media Queries */
|
6
|
+
|
7
|
+
/* #Header
|
8
|
+
================================================== */
|
9
|
+
.header {
|
10
|
+
background: rgba(58,144,216,1);
|
11
|
+
height: 86px;
|
12
|
+
margin-bottom: 40px;
|
13
|
+
width: 100%;
|
14
|
+
}
|
15
|
+
.header-brand a {
|
16
|
+
color: rgba(255,255,255,1);
|
17
|
+
float: left;
|
18
|
+
font-size: 44px;
|
19
|
+
margin-top: 21px;
|
20
|
+
}
|
21
|
+
.header-search {
|
22
|
+
float: left;
|
23
|
+
margin: 22px 0 0 30px;
|
24
|
+
}
|
25
|
+
.header-search input {
|
26
|
+
background-color: transparent;
|
27
|
+
border-color: rgba(255,255,255,0.25);
|
28
|
+
color: rgba(255,255,255,1);
|
29
|
+
font-weight: 200;
|
30
|
+
margin: 0;
|
31
|
+
width: 280px;
|
32
|
+
}
|
33
|
+
.header-search input:focus { border-color: rgba(255,255,255,1); }
|
34
|
+
.header-search input:-moz-placeholder { color: rgba(255,255,255,0.40); }
|
35
|
+
.header-search input:-ms-input-placeholder { color: rgba(255,255,255,0.40); }
|
36
|
+
.header-search input::-webkit-input-placeholder { color: rgba(255,255,255,0.40); }
|
37
|
+
.header-nav {
|
38
|
+
float: right;
|
39
|
+
list-style-type: none;
|
40
|
+
margin: 29px 0 10px 0;
|
41
|
+
padding: 0;
|
42
|
+
}
|
43
|
+
.header-nav li {
|
44
|
+
color: rgba(255,255,255,1);
|
45
|
+
display: inline-block;
|
46
|
+
font-size: 13px;
|
47
|
+
font-weight: 500;
|
48
|
+
margin-left: 25px;
|
49
|
+
}
|
50
|
+
.header-nav li:first-child { margin-left: 0; }
|
51
|
+
.header-nav li a {
|
52
|
+
border: 1px solid transparent;
|
53
|
+
border-radius: 2px;
|
54
|
+
color: rgba(255,255,255,1);
|
55
|
+
letter-spacing: 1px;
|
56
|
+
padding: 14px 0 13px 0;
|
57
|
+
text-transform: uppercase;
|
58
|
+
}
|
59
|
+
.header-nav li.bordered a {
|
60
|
+
border-color: rgba(230,230,230,1);
|
61
|
+
padding: 14px 20px 13px 20px;
|
62
|
+
}
|
63
|
+
.header-nav li.bordered a:hover { border-color: rgba(255,255,255,1); }
|
64
|
+
.header-nav .dropdown-menu li {
|
65
|
+
color: rgba(71,74,84,1);
|
66
|
+
display: block;
|
67
|
+
font-size: 12px;
|
68
|
+
margin-left: 0;
|
69
|
+
}
|
70
|
+
.header-nav .dropdown-menu li a {
|
71
|
+
border: none;
|
72
|
+
color: rgba(71,74,84,1);
|
73
|
+
letter-spacing: 0;
|
74
|
+
padding: 5px 15px;
|
75
|
+
text-transform: inherit;
|
76
|
+
}
|
77
|
+
.header-nav .dropdown-menu li a:hover { color: rgba(58,144,216,1); }
|
78
|
+
.header-user {
|
79
|
+
float: right;
|
80
|
+
margin: 23px 0 0 15px;
|
81
|
+
}
|
82
|
+
.header-user a {
|
83
|
+
color: rgba(255,255,255,0.8);
|
84
|
+
text-decoration: none;
|
85
|
+
}
|
86
|
+
.header-user a:hover { color: rgba(255,255,255,1); }
|
87
|
+
.header-user img,
|
88
|
+
.header-user-placeholder {
|
89
|
+
background-color: rgba(174,182,192,1);
|
90
|
+
color: rgba(255,255,255,1);
|
91
|
+
border-radius: 500px;
|
92
|
+
display: inline-block;
|
93
|
+
height: 40px;
|
94
|
+
text-align: center;
|
95
|
+
width: 40px;
|
96
|
+
vertical-align: middle;
|
97
|
+
}
|
98
|
+
.header-user-placeholder i {
|
99
|
+
font-size: 26px;
|
100
|
+
line-height: 36px;
|
101
|
+
}
|
102
|
+
.header-toggle a {
|
103
|
+
color: rgba(255,255,255,1);
|
104
|
+
float: right;
|
105
|
+
font-size: 40px;
|
106
|
+
opacity: 0.85;
|
107
|
+
padding: 4px 0px 3px 14px;
|
108
|
+
text-decoration: none;
|
109
|
+
}
|
110
|
+
.header-toggle a:hover { opacity: 1; }
|
111
|
+
|
112
|
+
/* #Header Alternate
|
113
|
+
================================================== */
|
114
|
+
.header-alt { background: none; }
|
115
|
+
.header-alt .header-brand a { color: rgba(236,238,241,1); }
|
116
|
+
.header-alt .header-brand a:hover { color: rgba(174,182,192,1); }
|
117
|
+
.header-alt .header-nav li.bordered a {
|
118
|
+
border-color: rgba(236,238,241,1);
|
119
|
+
color: rgba(224,226,229,1);
|
120
|
+
}
|
121
|
+
.header-alt .header-nav li.bordered a:hover {
|
122
|
+
border-color: rgba(209,210,214,1);
|
123
|
+
color: rgba(174,182,192,1);
|
124
|
+
}
|
125
|
+
|
126
|
+
/* #Media Queries
|
127
|
+
================================================== */
|
128
|
+
@media only screen and (max-width: 767px) {
|
129
|
+
.header { height: 50px; }
|
130
|
+
.header-brand a {
|
131
|
+
font-size: 36px;
|
132
|
+
margin-top: 7px;
|
133
|
+
}
|
134
|
+
}
|
@@ -0,0 +1,966 @@
|
|
1
|
+
/* Table of Contents
|
2
|
+
==================================================
|
3
|
+
#Icon */
|
4
|
+
|
5
|
+
/* #Icon
|
6
|
+
================================================== */
|
7
|
+
@font-face {
|
8
|
+
font-family: "Ionicons";
|
9
|
+
src: url(font_path("ionicons/ionicons.eot?v=1.3.3"));
|
10
|
+
src: url(font_path("ionicons/ionicons.eot?v=1.3.3#iefix")) format("embedded-opentype"),
|
11
|
+
url(font_path("ionicons/ionicons.ttf?v=1.3.3")) format("truetype"),
|
12
|
+
url(font_path("ionicons/ionicons.woff?v=1.3.3")) format("woff"),
|
13
|
+
url(font_path("ionicons/ionicons.svg?v=1.3.3#Ionicons")) format("svg");
|
14
|
+
font-weight: normal;
|
15
|
+
font-style: normal;
|
16
|
+
}
|
17
|
+
.icon, .icon-loading-a,
|
18
|
+
.icon-loading-b,
|
19
|
+
.icon-loading-c,
|
20
|
+
.icon-loading-d,
|
21
|
+
.icon-looping,
|
22
|
+
.icon-refreshing,
|
23
|
+
.icon-ios7-reloading, .iconicons,
|
24
|
+
.icon-alert,
|
25
|
+
.icon-alert-circled,
|
26
|
+
.icon-archive,
|
27
|
+
.icon-arrow-down-a,
|
28
|
+
.icon-arrow-down-b,
|
29
|
+
.icon-arrow-down-c,
|
30
|
+
.icon-arrow-expand,
|
31
|
+
.icon-arrow-graph-down-left,
|
32
|
+
.icon-arrow-graph-down-right,
|
33
|
+
.icon-arrow-graph-up-left,
|
34
|
+
.icon-arrow-graph-up-right,
|
35
|
+
.icon-arrow-left-a,
|
36
|
+
.icon-arrow-left-b,
|
37
|
+
.icon-arrow-left-c,
|
38
|
+
.icon-arrow-move,
|
39
|
+
.icon-arrow-resize,
|
40
|
+
.icon-arrow-return-left,
|
41
|
+
.icon-arrow-return-right,
|
42
|
+
.icon-arrow-right-a,
|
43
|
+
.icon-arrow-right-b,
|
44
|
+
.icon-arrow-right-c,
|
45
|
+
.icon-arrow-shrink,
|
46
|
+
.icon-arrow-swap,
|
47
|
+
.icon-arrow-up-a,
|
48
|
+
.icon-arrow-up-b,
|
49
|
+
.icon-arrow-up-c,
|
50
|
+
.icon-at,
|
51
|
+
.icon-bag,
|
52
|
+
.icon-battery-charging,
|
53
|
+
.icon-battery-empty,
|
54
|
+
.icon-battery-full,
|
55
|
+
.icon-battery-half,
|
56
|
+
.icon-battery-low,
|
57
|
+
.icon-beaker,
|
58
|
+
.icon-beer,
|
59
|
+
.icon-bluetooth,
|
60
|
+
.icon-bookmark,
|
61
|
+
.icon-briefcase,
|
62
|
+
.icon-calculator,
|
63
|
+
.icon-calendar,
|
64
|
+
.icon-camera,
|
65
|
+
.icon-card,
|
66
|
+
.icon-chatbox,
|
67
|
+
.icon-chatbox-working,
|
68
|
+
.icon-chatboxes,
|
69
|
+
.icon-chatbubble,
|
70
|
+
.icon-chatbubble-working,
|
71
|
+
.icon-chatbubbles,
|
72
|
+
.icon-checkmark,
|
73
|
+
.icon-checkmark-circled,
|
74
|
+
.icon-checkmark-round,
|
75
|
+
.icon-chevron-down,
|
76
|
+
.icon-chevron-left,
|
77
|
+
.icon-chevron-right,
|
78
|
+
.icon-chevron-up,
|
79
|
+
.icon-clipboard,
|
80
|
+
.icon-clock,
|
81
|
+
.icon-close,
|
82
|
+
.icon-close-circled,
|
83
|
+
.icon-close-round,
|
84
|
+
.icon-cloud,
|
85
|
+
.icon-code,
|
86
|
+
.icon-code-download,
|
87
|
+
.icon-code-working,
|
88
|
+
.icon-coffee,
|
89
|
+
.icon-compass,
|
90
|
+
.icon-compose,
|
91
|
+
.icon-connection-bars,
|
92
|
+
.icon-contrast,
|
93
|
+
.icon-disc,
|
94
|
+
.icon-document,
|
95
|
+
.icon-document-text,
|
96
|
+
.icon-drag,
|
97
|
+
.icon-earth,
|
98
|
+
.icon-egg,
|
99
|
+
.icon-eject,
|
100
|
+
.icon-email,
|
101
|
+
.icon-eye,
|
102
|
+
.icon-female,
|
103
|
+
.icon-filing,
|
104
|
+
.icon-film-marker,
|
105
|
+
.icon-flag,
|
106
|
+
.icon-flash,
|
107
|
+
.icon-flash-off,
|
108
|
+
.icon-flask,
|
109
|
+
.icon-folder,
|
110
|
+
.icon-fork,
|
111
|
+
.icon-forward,
|
112
|
+
.icon-game-controller-a,
|
113
|
+
.icon-game-controller-b,
|
114
|
+
.icon-gear-a,
|
115
|
+
.icon-gear-b,
|
116
|
+
.icon-grid,
|
117
|
+
.icon-hammer,
|
118
|
+
.icon-headphone,
|
119
|
+
.icon-heart,
|
120
|
+
.icon-help,
|
121
|
+
.icon-help-buoy,
|
122
|
+
.icon-help-circled,
|
123
|
+
.icon-home,
|
124
|
+
.icon-icecream,
|
125
|
+
.icon-icon-social-google-plus,
|
126
|
+
.icon-icon-social-google-plus-outline,
|
127
|
+
.icon-image,
|
128
|
+
.icon-images,
|
129
|
+
.icon-information,
|
130
|
+
.icon-information-circled,
|
131
|
+
.icon-ionic,
|
132
|
+
.icon-ios7-alarm,
|
133
|
+
.icon-ios7-alarm-outline,
|
134
|
+
.icon-ios7-albums,
|
135
|
+
.icon-ios7-albums-outline,
|
136
|
+
.icon-ios7-arrow-back,
|
137
|
+
.icon-ios7-arrow-down,
|
138
|
+
.icon-ios7-arrow-forward,
|
139
|
+
.icon-ios7-arrow-left,
|
140
|
+
.icon-ios7-arrow-right,
|
141
|
+
.icon-ios7-arrow-thin-down,
|
142
|
+
.icon-ios7-arrow-thin-left,
|
143
|
+
.icon-ios7-arrow-thin-right,
|
144
|
+
.icon-ios7-arrow-thin-up,
|
145
|
+
.icon-ios7-arrow-up,
|
146
|
+
.icon-ios7-at,
|
147
|
+
.icon-ios7-at-outline,
|
148
|
+
.icon-ios7-bell,
|
149
|
+
.icon-ios7-bell-outline,
|
150
|
+
.icon-ios7-bolt,
|
151
|
+
.icon-ios7-bolt-outline,
|
152
|
+
.icon-ios7-bookmarks,
|
153
|
+
.icon-ios7-bookmarks-outline,
|
154
|
+
.icon-ios7-box,
|
155
|
+
.icon-ios7-box-outline,
|
156
|
+
.icon-ios7-briefcase,
|
157
|
+
.icon-ios7-briefcase-outline,
|
158
|
+
.icon-ios7-browsers,
|
159
|
+
.icon-ios7-browsers-outline,
|
160
|
+
.icon-ios7-calculator,
|
161
|
+
.icon-ios7-calculator-outline,
|
162
|
+
.icon-ios7-calendar,
|
163
|
+
.icon-ios7-calendar-outline,
|
164
|
+
.icon-ios7-camera,
|
165
|
+
.icon-ios7-camera-outline,
|
166
|
+
.icon-ios7-cart,
|
167
|
+
.icon-ios7-cart-outline,
|
168
|
+
.icon-ios7-chatboxes,
|
169
|
+
.icon-ios7-chatboxes-outline,
|
170
|
+
.icon-ios7-chatbubble,
|
171
|
+
.icon-ios7-chatbubble-outline,
|
172
|
+
.icon-ios7-checkmark,
|
173
|
+
.icon-ios7-checkmark-empty,
|
174
|
+
.icon-ios7-checkmark-outline,
|
175
|
+
.icon-ios7-circle-filled,
|
176
|
+
.icon-ios7-circle-outline,
|
177
|
+
.icon-ios7-clock,
|
178
|
+
.icon-ios7-clock-outline,
|
179
|
+
.icon-ios7-close,
|
180
|
+
.icon-ios7-close-outline,
|
181
|
+
.icon-ios7-cloud,
|
182
|
+
.icon-ios7-cloud-download,
|
183
|
+
.icon-ios7-cloud-download-outline,
|
184
|
+
.icon-ios7-cloud-outline,
|
185
|
+
.icon-ios7-cloud-upload,
|
186
|
+
.icon-ios7-cloud-upload-outline,
|
187
|
+
.icon-ios7-cloudy,
|
188
|
+
.icon-ios7-cloudy-outline,
|
189
|
+
.icon-ios7-cog,
|
190
|
+
.icon-ios7-cog-outline,
|
191
|
+
.icon-ios7-compose,
|
192
|
+
.icon-ios7-compose-outline,
|
193
|
+
.icon-ios7-contact,
|
194
|
+
.icon-ios7-contact-outline,
|
195
|
+
.icon-ios7-copy,
|
196
|
+
.icon-ios7-copy-outline,
|
197
|
+
.icon-ios7-download,
|
198
|
+
.icon-ios7-download-outline,
|
199
|
+
.icon-ios7-drag,
|
200
|
+
.icon-ios7-email,
|
201
|
+
.icon-ios7-email-outline,
|
202
|
+
.icon-ios7-eye,
|
203
|
+
.icon-ios7-eye-outline,
|
204
|
+
.icon-ios7-fastforward,
|
205
|
+
.icon-ios7-fastforward-outline,
|
206
|
+
.icon-ios7-filing,
|
207
|
+
.icon-ios7-filing-outline,
|
208
|
+
.icon-ios7-film,
|
209
|
+
.icon-ios7-film-outline,
|
210
|
+
.icon-ios7-flag,
|
211
|
+
.icon-ios7-flag-outline,
|
212
|
+
.icon-ios7-folder,
|
213
|
+
.icon-ios7-folder-outline,
|
214
|
+
.icon-ios7-gear,
|
215
|
+
.icon-ios7-gear-outline,
|
216
|
+
.icon-ios7-glasses,
|
217
|
+
.icon-ios7-glasses-outline,
|
218
|
+
.icon-ios7-heart,
|
219
|
+
.icon-ios7-heart-outline,
|
220
|
+
.icon-ios7-help,
|
221
|
+
.icon-ios7-help-empty,
|
222
|
+
.icon-ios7-help-outline,
|
223
|
+
.icon-ios7-infinite,
|
224
|
+
.icon-ios7-infinite-outline,
|
225
|
+
.icon-ios7-information,
|
226
|
+
.icon-ios7-information-empty,
|
227
|
+
.icon-ios7-information-outline,
|
228
|
+
.icon-ios7-ionic-outline,
|
229
|
+
.icon-ios7-keypad,
|
230
|
+
.icon-ios7-keypad-outline,
|
231
|
+
.icon-ios7-lightbulb,
|
232
|
+
.icon-ios7-lightbulb-outline,
|
233
|
+
.icon-ios7-location,
|
234
|
+
.icon-ios7-location-outline,
|
235
|
+
.icon-ios7-locked,
|
236
|
+
.icon-ios7-locked-outline,
|
237
|
+
.icon-ios7-medkit,
|
238
|
+
.icon-ios7-medkit-outline,
|
239
|
+
.icon-ios7-mic,
|
240
|
+
.icon-ios7-mic-off,
|
241
|
+
.icon-ios7-mic-outline,
|
242
|
+
.icon-ios7-minus,
|
243
|
+
.icon-ios7-minus-empty,
|
244
|
+
.icon-ios7-minus-outline,
|
245
|
+
.icon-ios7-monitor,
|
246
|
+
.icon-ios7-monitor-outline,
|
247
|
+
.icon-ios7-moon,
|
248
|
+
.icon-ios7-moon-outline,
|
249
|
+
.icon-ios7-more,
|
250
|
+
.icon-ios7-more-outline,
|
251
|
+
.icon-ios7-musical-note,
|
252
|
+
.icon-ios7-musical-notes,
|
253
|
+
.icon-ios7-navigate,
|
254
|
+
.icon-ios7-navigate-outline,
|
255
|
+
.icon-ios7-paperplane,
|
256
|
+
.icon-ios7-paperplane-outline,
|
257
|
+
.icon-ios7-partlysunny,
|
258
|
+
.icon-ios7-partlysunny-outline,
|
259
|
+
.icon-ios7-pause,
|
260
|
+
.icon-ios7-pause-outline,
|
261
|
+
.icon-ios7-people,
|
262
|
+
.icon-ios7-people-outline,
|
263
|
+
.icon-ios7-person,
|
264
|
+
.icon-ios7-person-outline,
|
265
|
+
.icon-ios7-personadd,
|
266
|
+
.icon-ios7-personadd-outline,
|
267
|
+
.icon-ios7-photos,
|
268
|
+
.icon-ios7-photos-outline,
|
269
|
+
.icon-ios7-pie,
|
270
|
+
.icon-ios7-pie-outline,
|
271
|
+
.icon-ios7-play,
|
272
|
+
.icon-ios7-play-outline,
|
273
|
+
.icon-ios7-plus,
|
274
|
+
.icon-ios7-plus-empty,
|
275
|
+
.icon-ios7-plus-outline,
|
276
|
+
.icon-ios7-pricetag,
|
277
|
+
.icon-ios7-pricetag-outline,
|
278
|
+
.icon-ios7-printer,
|
279
|
+
.icon-ios7-printer-outline,
|
280
|
+
.icon-ios7-rainy,
|
281
|
+
.icon-ios7-rainy-outline,
|
282
|
+
.icon-ios7-recording,
|
283
|
+
.icon-ios7-recording-outline,
|
284
|
+
.icon-ios7-redo,
|
285
|
+
.icon-ios7-redo-outline,
|
286
|
+
.icon-ios7-refresh,
|
287
|
+
.icon-ios7-refresh-empty,
|
288
|
+
.icon-ios7-refresh-outline,
|
289
|
+
.icon-ios7-reload,
|
290
|
+
.icon-ios7-rewind,
|
291
|
+
.icon-ios7-rewind-outline,
|
292
|
+
.icon-ios7-search,
|
293
|
+
.icon-ios7-search-strong,
|
294
|
+
.icon-ios7-skipbackward,
|
295
|
+
.icon-ios7-skipbackward-outline,
|
296
|
+
.icon-ios7-skipforward,
|
297
|
+
.icon-ios7-skipforward-outline,
|
298
|
+
.icon-ios7-speedometer,
|
299
|
+
.icon-ios7-speedometer-outline,
|
300
|
+
.icon-ios7-star,
|
301
|
+
.icon-ios7-star-outline,
|
302
|
+
.icon-ios7-stopwatch,
|
303
|
+
.icon-ios7-stopwatch-outline,
|
304
|
+
.icon-ios7-sunny,
|
305
|
+
.icon-ios7-sunny-outline,
|
306
|
+
.icon-ios7-telephone,
|
307
|
+
.icon-ios7-telephone-outline,
|
308
|
+
.icon-ios7-thunderstorm,
|
309
|
+
.icon-ios7-thunderstorm-outline,
|
310
|
+
.icon-ios7-time,
|
311
|
+
.icon-ios7-time-outline,
|
312
|
+
.icon-ios7-timer,
|
313
|
+
.icon-ios7-timer-outline,
|
314
|
+
.icon-ios7-trash,
|
315
|
+
.icon-ios7-trash-outline,
|
316
|
+
.icon-ios7-undo,
|
317
|
+
.icon-ios7-undo-outline,
|
318
|
+
.icon-ios7-unlocked,
|
319
|
+
.icon-ios7-unlocked-outline,
|
320
|
+
.icon-ios7-upload,
|
321
|
+
.icon-ios7-upload-outline,
|
322
|
+
.icon-ios7-videocam,
|
323
|
+
.icon-ios7-videocam-outline,
|
324
|
+
.icon-ios7-volume-high,
|
325
|
+
.icon-ios7-volume-low,
|
326
|
+
.icon-ios7-wineglass,
|
327
|
+
.icon-ios7-wineglass-outline,
|
328
|
+
.icon-ios7-world,
|
329
|
+
.icon-ios7-world-outline,
|
330
|
+
.icon-ipad,
|
331
|
+
.icon-iphone,
|
332
|
+
.icon-ipod,
|
333
|
+
.icon-jet,
|
334
|
+
.icon-key,
|
335
|
+
.icon-knife,
|
336
|
+
.icon-laptop,
|
337
|
+
.icon-leaf,
|
338
|
+
.icon-levels,
|
339
|
+
.icon-lightbulb,
|
340
|
+
.icon-link,
|
341
|
+
.icon-load-a,
|
342
|
+
.icon-load-b,
|
343
|
+
.icon-load-c,
|
344
|
+
.icon-load-d,
|
345
|
+
.icon-location,
|
346
|
+
.icon-locked,
|
347
|
+
.icon-log-in,
|
348
|
+
.icon-log-out,
|
349
|
+
.icon-loop,
|
350
|
+
.icon-magnet,
|
351
|
+
.icon-male,
|
352
|
+
.icon-man,
|
353
|
+
.icon-map,
|
354
|
+
.icon-medkit,
|
355
|
+
.icon-mic-a,
|
356
|
+
.icon-mic-b,
|
357
|
+
.icon-mic-c,
|
358
|
+
.icon-minus,
|
359
|
+
.icon-minus-circled,
|
360
|
+
.icon-minus-round,
|
361
|
+
.icon-monitor,
|
362
|
+
.icon-more,
|
363
|
+
.icon-music-note,
|
364
|
+
.icon-navicon,
|
365
|
+
.icon-navicon-round,
|
366
|
+
.icon-navigate,
|
367
|
+
.icon-nuclear,
|
368
|
+
.icon-paperclip,
|
369
|
+
.icon-pause,
|
370
|
+
.icon-person,
|
371
|
+
.icon-person-add,
|
372
|
+
.icon-person-stalker,
|
373
|
+
.icon-pie-graph,
|
374
|
+
.icon-pin,
|
375
|
+
.icon-pinpoint,
|
376
|
+
.icon-pizza,
|
377
|
+
.icon-plane,
|
378
|
+
.icon-play,
|
379
|
+
.icon-plus,
|
380
|
+
.icon-plus-circled,
|
381
|
+
.icon-plus-round,
|
382
|
+
.icon-pound,
|
383
|
+
.icon-power,
|
384
|
+
.icon-pricetag,
|
385
|
+
.icon-pricetags,
|
386
|
+
.icon-printer,
|
387
|
+
.icon-radio-waves,
|
388
|
+
.icon-record,
|
389
|
+
.icon-refresh,
|
390
|
+
.icon-reply,
|
391
|
+
.icon-reply-all,
|
392
|
+
.icon-search,
|
393
|
+
.icon-settings,
|
394
|
+
.icon-share,
|
395
|
+
.icon-shuffle,
|
396
|
+
.icon-skip-backward,
|
397
|
+
.icon-skip-forward,
|
398
|
+
.icon-social-android,
|
399
|
+
.icon-social-android-outline,
|
400
|
+
.icon-social-apple,
|
401
|
+
.icon-social-apple-outline,
|
402
|
+
.icon-social-bitcoin,
|
403
|
+
.icon-social-bitcoin-outline,
|
404
|
+
.icon-social-buffer,
|
405
|
+
.icon-social-buffer-outline,
|
406
|
+
.icon-social-designernews,
|
407
|
+
.icon-social-designernews-outline,
|
408
|
+
.icon-social-dribbble,
|
409
|
+
.icon-social-dribbble-outline,
|
410
|
+
.icon-social-dropbox,
|
411
|
+
.icon-social-dropbox-outline,
|
412
|
+
.icon-social-facebook,
|
413
|
+
.icon-social-facebook-outline,
|
414
|
+
.icon-social-github,
|
415
|
+
.icon-social-github-outline,
|
416
|
+
.icon-social-googleplus,
|
417
|
+
.icon-social-googleplus-outline,
|
418
|
+
.icon-social-hackernews,
|
419
|
+
.icon-social-hackernews-outline,
|
420
|
+
.icon-social-linkedin,
|
421
|
+
.icon-social-linkedin-outline,
|
422
|
+
.icon-social-pinterest,
|
423
|
+
.icon-social-pinterest-outline,
|
424
|
+
.icon-social-reddit,
|
425
|
+
.icon-social-reddit-outline,
|
426
|
+
.icon-social-rss,
|
427
|
+
.icon-social-rss-outline,
|
428
|
+
.icon-social-skype,
|
429
|
+
.icon-social-skype-outline,
|
430
|
+
.icon-social-tumblr,
|
431
|
+
.icon-social-tumblr-outline,
|
432
|
+
.icon-social-twitter,
|
433
|
+
.icon-social-twitter-outline,
|
434
|
+
.icon-social-vimeo,
|
435
|
+
.icon-social-vimeo-outline,
|
436
|
+
.icon-social-windows,
|
437
|
+
.icon-social-windows-outline,
|
438
|
+
.icon-social-wordpress,
|
439
|
+
.icon-social-wordpress-outline,
|
440
|
+
.icon-social-yahoo,
|
441
|
+
.icon-social-yahoo-outline,
|
442
|
+
.icon-social-youtube,
|
443
|
+
.icon-social-youtube-outline,
|
444
|
+
.icon-speakerphone,
|
445
|
+
.icon-speedometer,
|
446
|
+
.icon-spoon,
|
447
|
+
.icon-star,
|
448
|
+
.icon-stats-bars,
|
449
|
+
.icon-stop,
|
450
|
+
.icon-thermometer,
|
451
|
+
.icon-thumbsdown,
|
452
|
+
.icon-thumbsup,
|
453
|
+
.icon-trash-a,
|
454
|
+
.icon-trash-b,
|
455
|
+
.icon-umbrella,
|
456
|
+
.icon-unlocked,
|
457
|
+
.icon-upload,
|
458
|
+
.icon-usb,
|
459
|
+
.icon-videocamera,
|
460
|
+
.icon-volume-high,
|
461
|
+
.icon-volume-low,
|
462
|
+
.icon-volume-medium,
|
463
|
+
.icon-volume-mute,
|
464
|
+
.icon-waterdrop,
|
465
|
+
.icon-wifi,
|
466
|
+
.icon-wineglass,
|
467
|
+
.icon-woman,
|
468
|
+
.icon-wrench {
|
469
|
+
display: inline-block;
|
470
|
+
font-family: "Ionicons";
|
471
|
+
speak: none;
|
472
|
+
font-style: normal;
|
473
|
+
font-weight: normal;
|
474
|
+
font-variant: normal;
|
475
|
+
text-transform: none;
|
476
|
+
line-height: 1;
|
477
|
+
-webkit-font-smoothing: antialiased;
|
478
|
+
-moz-osx-font-smoothing: grayscale;
|
479
|
+
}
|
480
|
+
.icon-spin, .icon-loading-a,
|
481
|
+
.icon-loading-b,
|
482
|
+
.icon-loading-c,
|
483
|
+
.icon-loading-d,
|
484
|
+
.icon-looping,
|
485
|
+
.icon-refreshing,
|
486
|
+
.icon-ios7-reloading {
|
487
|
+
-webkit-animation: spin 1s infinite linear;
|
488
|
+
-moz-animation: spin 1s infinite linear;
|
489
|
+
-o-animation: spin 1s infinite linear;
|
490
|
+
animation: spin 1s infinite linear;
|
491
|
+
}
|
492
|
+
@-moz-keyframes spin {
|
493
|
+
0% { -moz-transform: rotate(0deg); }
|
494
|
+
100% { -moz-transform: rotate(359deg); }
|
495
|
+
}
|
496
|
+
@-webkit-keyframes spin {
|
497
|
+
0% { -webkit-transform: rotate(0deg); }
|
498
|
+
100% { -webkit-transform: rotate(359deg); }
|
499
|
+
}
|
500
|
+
@-o-keyframes spin {
|
501
|
+
0% { -o-transform: rotate(0deg); }
|
502
|
+
100% { -o-transform: rotate(359deg); }
|
503
|
+
}
|
504
|
+
@-ms-keyframes spin {
|
505
|
+
0% { -ms-transform: rotate(0deg); }
|
506
|
+
100% { -ms-transform: rotate(359deg); }
|
507
|
+
}
|
508
|
+
@keyframes spin {
|
509
|
+
0% { transform: rotate(0deg); }
|
510
|
+
100% { transform: rotate(359deg); }
|
511
|
+
}
|
512
|
+
.icon-alert:before { content: "\f101" }
|
513
|
+
.icon-alert-circled:before { content: "\f100" }
|
514
|
+
.icon-archive:before { content: "\f102" }
|
515
|
+
.icon-arrow-down-a:before { content: "\f103" }
|
516
|
+
.icon-arrow-down-b:before { content: "\f104" }
|
517
|
+
.icon-arrow-down-c:before { content: "\f105" }
|
518
|
+
.icon-arrow-expand:before { content: "\f25e" }
|
519
|
+
.icon-arrow-graph-down-left:before { content: "\f25f" }
|
520
|
+
.icon-arrow-graph-down-right:before { content: "\f260" }
|
521
|
+
.icon-arrow-graph-up-left:before { content: "\f261" }
|
522
|
+
.icon-arrow-graph-up-right:before { content: "\f262" }
|
523
|
+
.icon-arrow-left-a:before { content: "\f106" }
|
524
|
+
.icon-arrow-left-b:before { content: "\f107" }
|
525
|
+
.icon-arrow-left-c:before { content: "\f108" }
|
526
|
+
.icon-arrow-move:before { content: "\f263" }
|
527
|
+
.icon-arrow-resize:before { content: "\f264" }
|
528
|
+
.icon-arrow-return-left:before { content: "\f265" }
|
529
|
+
.icon-arrow-return-right:before { content: "\f266" }
|
530
|
+
.icon-arrow-right-a:before { content: "\f109" }
|
531
|
+
.icon-arrow-right-b:before { content: "\f10a" }
|
532
|
+
.icon-arrow-right-c:before { content: "\f10b" }
|
533
|
+
.icon-arrow-shrink:before { content: "\f267" }
|
534
|
+
.icon-arrow-swap:before { content: "\f268" }
|
535
|
+
.icon-arrow-up-a:before { content: "\f10c" }
|
536
|
+
.icon-arrow-up-b:before { content: "\f10d" }
|
537
|
+
.icon-arrow-up-c:before { content: "\f10e" }
|
538
|
+
.icon-at:before { content: "\f10f" }
|
539
|
+
.icon-bag:before { content: "\f110" }
|
540
|
+
.icon-battery-charging:before { content: "\f111" }
|
541
|
+
.icon-battery-empty:before { content: "\f112" }
|
542
|
+
.icon-battery-full:before { content: "\f113" }
|
543
|
+
.icon-battery-half:before { content: "\f114" }
|
544
|
+
.icon-battery-low:before { content: "\f115" }
|
545
|
+
.icon-beaker:before { content: "\f269" }
|
546
|
+
.icon-beer:before { content: "\f26a" }
|
547
|
+
.icon-bluetooth:before { content: "\f116" }
|
548
|
+
.icon-bookmark:before { content: "\f26b" }
|
549
|
+
.icon-briefcase:before { content: "\f26c" }
|
550
|
+
.icon-calculator:before { content: "\f26d" }
|
551
|
+
.icon-calendar:before { content: "\f117" }
|
552
|
+
.icon-camera:before { content: "\f118" }
|
553
|
+
.icon-card:before { content: "\f119" }
|
554
|
+
.icon-chatbox:before { content: "\f11b" }
|
555
|
+
.icon-chatbox-working:before { content: "\f11a" }
|
556
|
+
.icon-chatboxes:before { content: "\f11c" }
|
557
|
+
.icon-chatbubble:before { content: "\f11e" }
|
558
|
+
.icon-chatbubble-working:before { content: "\f11d" }
|
559
|
+
.icon-chatbubbles:before { content: "\f11f" }
|
560
|
+
.icon-checkmark:before { content: "\f122" }
|
561
|
+
.icon-checkmark-circled:before { content: "\f120" }
|
562
|
+
.icon-checkmark-round:before { content: "\f121" }
|
563
|
+
.icon-chevron-down:before { content: "\f123" }
|
564
|
+
.icon-chevron-left:before { content: "\f124" }
|
565
|
+
.icon-chevron-right:before { content: "\f125" }
|
566
|
+
.icon-chevron-up:before { content: "\f126" }
|
567
|
+
.icon-clipboard:before { content: "\f127" }
|
568
|
+
.icon-clock:before { content: "\f26e" }
|
569
|
+
.icon-close:before { content: "\f12a" }
|
570
|
+
.icon-close-circled:before { content: "\f128" }
|
571
|
+
.icon-close-round:before { content: "\f129" }
|
572
|
+
.icon-cloud:before { content: "\f12b" }
|
573
|
+
.icon-code:before { content: "\f271" }
|
574
|
+
.icon-code-download:before { content: "\f26f" }
|
575
|
+
.icon-code-working:before { content: "\f270" }
|
576
|
+
.icon-coffee:before { content: "\f272" }
|
577
|
+
.icon-compass:before { content: "\f273" }
|
578
|
+
.icon-compose:before { content: "\f12c" }
|
579
|
+
.icon-connection-bars:before { content: "\f274" }
|
580
|
+
.icon-contrast:before { content: "\f275" }
|
581
|
+
.icon-disc:before { content: "\f12d" }
|
582
|
+
.icon-document:before { content: "\f12f" }
|
583
|
+
.icon-document-text:before { content: "\f12e" }
|
584
|
+
.icon-drag:before { content: "\f130" }
|
585
|
+
.icon-earth:before { content: "\f276" }
|
586
|
+
.icon-egg:before { content: "\f277" }
|
587
|
+
.icon-eject:before { content: "\f131" }
|
588
|
+
.icon-email:before { content: "\f132" }
|
589
|
+
.icon-eye:before { content: "\f133" }
|
590
|
+
.icon-female:before { content: "\f278" }
|
591
|
+
.icon-filing:before { content: "\f134" }
|
592
|
+
.icon-film-marker:before { content: "\f135" }
|
593
|
+
.icon-flag:before { content: "\f279" }
|
594
|
+
.icon-flash:before { content: "\f137" }
|
595
|
+
.icon-flash-off:before { content: "\f136" }
|
596
|
+
.icon-flask:before { content: "\f138" }
|
597
|
+
.icon-folder:before { content: "\f139" }
|
598
|
+
.icon-fork:before { content: "\f27a" }
|
599
|
+
.icon-forward:before { content: "\f13a" }
|
600
|
+
.icon-game-controller-a:before { content: "\f13b" }
|
601
|
+
.icon-game-controller-b:before { content: "\f13c" }
|
602
|
+
.icon-gear-a:before { content: "\f13d" }
|
603
|
+
.icon-gear-b:before { content: "\f13e" }
|
604
|
+
.icon-grid:before { content: "\f13f" }
|
605
|
+
.icon-hammer:before { content: "\f27b" }
|
606
|
+
.icon-headphone:before { content: "\f140" }
|
607
|
+
.icon-heart:before { content: "\f141" }
|
608
|
+
.icon-help:before { content: "\f143" }
|
609
|
+
.icon-help-buoy:before { content: "\f27c" }
|
610
|
+
.icon-help-circled:before { content: "\f142" }
|
611
|
+
.icon-home:before { content: "\f144" }
|
612
|
+
.icon-icecream:before { content: "\f27d" }
|
613
|
+
.icon-icon-social-google-plus:before { content: "\f146" }
|
614
|
+
.icon-icon-social-google-plus-outline:before
|
615
|
+
{ content: "\f145" }
|
616
|
+
.icon-image:before { content: "\f147" }
|
617
|
+
.icon-images:before { content: "\f148" }
|
618
|
+
.icon-information:before { content: "\f14a" }
|
619
|
+
.icon-information-circled:before { content: "\f149" }
|
620
|
+
.icon-ionic:before { content: "\f14b" }
|
621
|
+
.icon-ios7-alarm:before { content: "\f14d" }
|
622
|
+
.icon-ios7-alarm-outline:before { content: "\f14c" }
|
623
|
+
.icon-ios7-albums:before { content: "\f14f" }
|
624
|
+
.icon-ios7-albums-outline:before { content: "\f14e" }
|
625
|
+
.icon-ios7-arrow-back:before { content: "\f150" }
|
626
|
+
.icon-ios7-arrow-down:before { content: "\f151" }
|
627
|
+
.icon-ios7-arrow-forward:before { content: "\f152" }
|
628
|
+
.icon-ios7-arrow-left:before { content: "\f153" }
|
629
|
+
.icon-ios7-arrow-right:before { content: "\f154" }
|
630
|
+
.icon-ios7-arrow-thin-down:before { content: "\f27e" }
|
631
|
+
.icon-ios7-arrow-thin-left:before { content: "\f27f" }
|
632
|
+
.icon-ios7-arrow-thin-right:before { content: "\f280" }
|
633
|
+
.icon-ios7-arrow-thin-up:before { content: "\f281" }
|
634
|
+
.icon-ios7-arrow-up:before { content: "\f155" }
|
635
|
+
.icon-ios7-at:before { content: "\f157" }
|
636
|
+
.icon-ios7-at-outline:before { content: "\f156" }
|
637
|
+
.icon-ios7-bell:before { content: "\f159" }
|
638
|
+
.icon-ios7-bell-outline:before { content: "\f158" }
|
639
|
+
.icon-ios7-bolt:before { content: "\f15b" }
|
640
|
+
.icon-ios7-bolt-outline:before { content: "\f15a" }
|
641
|
+
.icon-ios7-bookmarks:before { content: "\f15d" }
|
642
|
+
.icon-ios7-bookmarks-outline:before { content: "\f15c" }
|
643
|
+
.icon-ios7-box:before { content: "\f15f" }
|
644
|
+
.icon-ios7-box-outline:before { content: "\f15e" }
|
645
|
+
.icon-ios7-briefcase:before { content: "\f283" }
|
646
|
+
.icon-ios7-briefcase-outline:before { content: "\f282" }
|
647
|
+
.icon-ios7-browsers:before { content: "\f161" }
|
648
|
+
.icon-ios7-browsers-outline:before { content: "\f160" }
|
649
|
+
.icon-ios7-calculator:before { content: "\f285" }
|
650
|
+
.icon-ios7-calculator-outline:before { content: "\f284" }
|
651
|
+
.icon-ios7-calendar:before { content: "\f163" }
|
652
|
+
.icon-ios7-calendar-outline:before { content: "\f162" }
|
653
|
+
.icon-ios7-camera:before { content: "\f165" }
|
654
|
+
.icon-ios7-camera-outline:before { content: "\f164" }
|
655
|
+
.icon-ios7-cart:before { content: "\f167" }
|
656
|
+
.icon-ios7-cart-outline:before { content: "\f166" }
|
657
|
+
.icon-ios7-chatboxes:before { content: "\f169" }
|
658
|
+
.icon-ios7-chatboxes-outline:before { content: "\f168" }
|
659
|
+
.icon-ios7-chatbubble:before { content: "\f16b" }
|
660
|
+
.icon-ios7-chatbubble-outline:before { content: "\f16a" }
|
661
|
+
.icon-ios7-checkmark:before { content: "\f16e" }
|
662
|
+
.icon-ios7-checkmark-empty:before { content: "\f16c" }
|
663
|
+
.icon-ios7-checkmark-outline:before { content: "\f16d" }
|
664
|
+
.icon-ios7-circle-filled:before { content: "\f16f" }
|
665
|
+
.icon-ios7-circle-outline:before { content: "\f170" }
|
666
|
+
.icon-ios7-clock:before { content: "\f172" }
|
667
|
+
.icon-ios7-clock-outline:before { content: "\f171" }
|
668
|
+
.icon-ios7-close:before { content: "\f2bc" }
|
669
|
+
.icon-ios7-close-outline:before { content: "\f2bb" }
|
670
|
+
.icon-ios7-cloud:before { content: "\f178" }
|
671
|
+
.icon-ios7-cloud-download:before { content: "\f174" }
|
672
|
+
.icon-ios7-cloud-download-outline:before
|
673
|
+
{ content: "\f173" }
|
674
|
+
.icon-ios7-cloud-outline:before { content: "\f175" }
|
675
|
+
.icon-ios7-cloud-upload:before { content: "\f177" }
|
676
|
+
.icon-ios7-cloud-upload-outline:before { content: "\f176" }
|
677
|
+
.icon-ios7-cloudy:before { content: "\f17a" }
|
678
|
+
.icon-ios7-cloudy-outline:before { content: "\f179" }
|
679
|
+
.icon-ios7-cog:before { content: "\f17c" }
|
680
|
+
.icon-ios7-cog-outline:before { content: "\f17b" }
|
681
|
+
.icon-ios7-compose:before { content: "\f17e" }
|
682
|
+
.icon-ios7-compose-outline:before { content: "\f17d" }
|
683
|
+
.icon-ios7-contact:before { content: "\f180" }
|
684
|
+
.icon-ios7-contact-outline:before { content: "\f17f" }
|
685
|
+
.icon-ios7-copy:before { content: "\f182" }
|
686
|
+
.icon-ios7-copy-outline:before { content: "\f181" }
|
687
|
+
.icon-ios7-download:before { content: "\f184" }
|
688
|
+
.icon-ios7-download-outline:before { content: "\f183" }
|
689
|
+
.icon-ios7-drag:before { content: "\f185" }
|
690
|
+
.icon-ios7-email:before { content: "\f187" }
|
691
|
+
.icon-ios7-email-outline:before { content: "\f186" }
|
692
|
+
.icon-ios7-eye:before { content: "\f189" }
|
693
|
+
.icon-ios7-eye-outline:before { content: "\f188" }
|
694
|
+
.icon-ios7-fastforward:before { content: "\f18b" }
|
695
|
+
.icon-ios7-fastforward-outline:before { content: "\f18a" }
|
696
|
+
.icon-ios7-filing:before { content: "\f18d" }
|
697
|
+
.icon-ios7-filing-outline:before { content: "\f18c" }
|
698
|
+
.icon-ios7-film:before { content: "\f18f" }
|
699
|
+
.icon-ios7-film-outline:before { content: "\f18e" }
|
700
|
+
.icon-ios7-flag:before { content: "\f191" }
|
701
|
+
.icon-ios7-flag-outline:before { content: "\f190" }
|
702
|
+
.icon-ios7-folder:before { content: "\f193" }
|
703
|
+
.icon-ios7-folder-outline:before { content: "\f192" }
|
704
|
+
.icon-ios7-gear:before { content: "\f195" }
|
705
|
+
.icon-ios7-gear-outline:before { content: "\f194" }
|
706
|
+
.icon-ios7-glasses:before { content: "\f197" }
|
707
|
+
.icon-ios7-glasses-outline:before { content: "\f196" }
|
708
|
+
.icon-ios7-heart:before { content: "\f199" }
|
709
|
+
.icon-ios7-heart-outline:before { content: "\f198" }
|
710
|
+
.icon-ios7-help:before { content: "\f19c" }
|
711
|
+
.icon-ios7-help-empty:before { content: "\f19a" }
|
712
|
+
.icon-ios7-help-outline:before { content: "\f19b" }
|
713
|
+
.icon-ios7-infinite:before { content: "\f19e" }
|
714
|
+
.icon-ios7-infinite-outline:before { content: "\f19d" }
|
715
|
+
.icon-ios7-information:before { content: "\f1a1" }
|
716
|
+
.icon-ios7-information-empty:before { content: "\f19f" }
|
717
|
+
.icon-ios7-information-outline:before { content: "\f1a0" }
|
718
|
+
.icon-ios7-ionic-outline:before { content: "\f1a2" }
|
719
|
+
.icon-ios7-keypad:before { content: "\f1a4" }
|
720
|
+
.icon-ios7-keypad-outline:before { content: "\f1a3" }
|
721
|
+
.icon-ios7-lightbulb:before { content: "\f287" }
|
722
|
+
.icon-ios7-lightbulb-outline:before { content: "\f286" }
|
723
|
+
.icon-ios7-location:before { content: "\f1a6" }
|
724
|
+
.icon-ios7-location-outline:before { content: "\f1a5" }
|
725
|
+
.icon-ios7-locked:before { content: "\f1a8" }
|
726
|
+
.icon-ios7-locked-outline:before { content: "\f1a7" }
|
727
|
+
.icon-ios7-medkit:before { content: "\f289" }
|
728
|
+
.icon-ios7-medkit-outline:before { content: "\f288" }
|
729
|
+
.icon-ios7-mic:before { content: "\f1ab" }
|
730
|
+
.icon-ios7-mic-off:before { content: "\f1a9" }
|
731
|
+
.icon-ios7-mic-outline:before { content: "\f1aa" }
|
732
|
+
.icon-ios7-minus:before { content: "\f1ae" }
|
733
|
+
.icon-ios7-minus-empty:before { content: "\f1ac" }
|
734
|
+
.icon-ios7-minus-outline:before { content: "\f1ad" }
|
735
|
+
.icon-ios7-monitor:before { content: "\f1b0" }
|
736
|
+
.icon-ios7-monitor-outline:before { content: "\f1af" }
|
737
|
+
.icon-ios7-moon:before { content: "\f1b2" }
|
738
|
+
.icon-ios7-moon-outline:before { content: "\f1b1" }
|
739
|
+
.icon-ios7-more:before { content: "\f1b4" }
|
740
|
+
.icon-ios7-more-outline:before { content: "\f1b3" }
|
741
|
+
.icon-ios7-musical-note:before { content: "\f1b5" }
|
742
|
+
.icon-ios7-musical-notes:before { content: "\f1b6" }
|
743
|
+
.icon-ios7-navigate:before { content: "\f1b8" }
|
744
|
+
.icon-ios7-navigate-outline:before { content: "\f1b7" }
|
745
|
+
.icon-ios7-paperplane:before { content: "\f1ba" }
|
746
|
+
.icon-ios7-paperplane-outline:before { content: "\f1b9" }
|
747
|
+
.icon-ios7-partlysunny:before { content: "\f1bc" }
|
748
|
+
.icon-ios7-partlysunny-outline:before { content: "\f1bb" }
|
749
|
+
.icon-ios7-pause:before { content: "\f1be" }
|
750
|
+
.icon-ios7-pause-outline:before { content: "\f1bd" }
|
751
|
+
.icon-ios7-people:before { content: "\f1c0" }
|
752
|
+
.icon-ios7-people-outline:before { content: "\f1bf" }
|
753
|
+
.icon-ios7-person:before { content: "\f1c2" }
|
754
|
+
.icon-ios7-person-outline:before { content: "\f1c1" }
|
755
|
+
.icon-ios7-personadd:before { content: "\f1c4" }
|
756
|
+
.icon-ios7-personadd-outline:before { content: "\f1c3" }
|
757
|
+
.icon-ios7-photos:before { content: "\f1c6" }
|
758
|
+
.icon-ios7-photos-outline:before { content: "\f1c5" }
|
759
|
+
.icon-ios7-pie:before { content: "\f28b" }
|
760
|
+
.icon-ios7-pie-outline:before { content: "\f28a" }
|
761
|
+
.icon-ios7-play:before { content: "\f1c8" }
|
762
|
+
.icon-ios7-play-outline:before { content: "\f1c7" }
|
763
|
+
.icon-ios7-plus:before { content: "\f1cb" }
|
764
|
+
.icon-ios7-plus-empty:before { content: "\f1c9" }
|
765
|
+
.icon-ios7-plus-outline:before { content: "\f1ca" }
|
766
|
+
.icon-ios7-pricetag:before { content: "\f28d" }
|
767
|
+
.icon-ios7-pricetag-outline:before { content: "\f28c" }
|
768
|
+
.icon-ios7-printer:before { content: "\f1cd" }
|
769
|
+
.icon-ios7-printer-outline:before { content: "\f1cc" }
|
770
|
+
.icon-ios7-rainy:before { content: "\f1cf" }
|
771
|
+
.icon-ios7-rainy-outline:before { content: "\f1ce" }
|
772
|
+
.icon-ios7-recording:before { content: "\f1d1" }
|
773
|
+
.icon-ios7-recording-outline:before { content: "\f1d0" }
|
774
|
+
.icon-ios7-redo:before { content: "\f1d3" }
|
775
|
+
.icon-ios7-redo-outline:before { content: "\f1d2" }
|
776
|
+
.icon-ios7-refresh:before { content: "\f1d6" }
|
777
|
+
.icon-ios7-refresh-empty:before { content: "\f1d4" }
|
778
|
+
.icon-ios7-refresh-outline:before { content: "\f1d5" }
|
779
|
+
.icon-ios7-reload:before,
|
780
|
+
.icon-ios7-reloading:before { content: "\f28e" }
|
781
|
+
.icon-ios7-rewind:before { content: "\f1d8" }
|
782
|
+
.icon-ios7-rewind-outline:before { content: "\f1d7" }
|
783
|
+
.icon-ios7-search:before { content: "\f1da" }
|
784
|
+
.icon-ios7-search-strong:before { content: "\f1d9" }
|
785
|
+
.icon-ios7-skipbackward:before { content: "\f1dc" }
|
786
|
+
.icon-ios7-skipbackward-outline:before { content: "\f1db" }
|
787
|
+
.icon-ios7-skipforward:before { content: "\f1de" }
|
788
|
+
.icon-ios7-skipforward-outline:before { content: "\f1dd" }
|
789
|
+
.icon-ios7-speedometer:before { content: "\f290" }
|
790
|
+
.icon-ios7-speedometer-outline:before { content: "\f28f" }
|
791
|
+
.icon-ios7-star:before { content: "\f1e0" }
|
792
|
+
.icon-ios7-star-outline:before { content: "\f1df" }
|
793
|
+
.icon-ios7-stopwatch:before { content: "\f1e2" }
|
794
|
+
.icon-ios7-stopwatch-outline:before { content: "\f1e1" }
|
795
|
+
.icon-ios7-sunny:before { content: "\f1e4" }
|
796
|
+
.icon-ios7-sunny-outline:before { content: "\f1e3" }
|
797
|
+
.icon-ios7-telephone:before { content: "\f1e6" }
|
798
|
+
.icon-ios7-telephone-outline:before { content: "\f1e5" }
|
799
|
+
.icon-ios7-thunderstorm:before { content: "\f1e8" }
|
800
|
+
.icon-ios7-thunderstorm-outline:before { content: "\f1e7" }
|
801
|
+
.icon-ios7-time:before { content: "\f292" }
|
802
|
+
.icon-ios7-time-outline:before { content: "\f291" }
|
803
|
+
.icon-ios7-timer:before { content: "\f1ea" }
|
804
|
+
.icon-ios7-timer-outline:before { content: "\f1e9" }
|
805
|
+
.icon-ios7-trash:before { content: "\f1ec" }
|
806
|
+
.icon-ios7-trash-outline:before { content: "\f1eb" }
|
807
|
+
.icon-ios7-undo:before { content: "\f1ee" }
|
808
|
+
.icon-ios7-undo-outline:before { content: "\f1ed" }
|
809
|
+
.icon-ios7-unlocked:before { content: "\f1f0" }
|
810
|
+
.icon-ios7-unlocked-outline:before { content: "\f1ef" }
|
811
|
+
.icon-ios7-upload:before { content: "\f1f2" }
|
812
|
+
.icon-ios7-upload-outline:before { content: "\f1f1" }
|
813
|
+
.icon-ios7-videocam:before { content: "\f1f4" }
|
814
|
+
.icon-ios7-videocam-outline:before { content: "\f1f3" }
|
815
|
+
.icon-ios7-volume-high:before { content: "\f1f5" }
|
816
|
+
.icon-ios7-volume-low:before { content: "\f1f6" }
|
817
|
+
.icon-ios7-wineglass:before { content: "\f294" }
|
818
|
+
.icon-ios7-wineglass-outline:before { content: "\f293" }
|
819
|
+
.icon-ios7-world:before { content: "\f1f8" }
|
820
|
+
.icon-ios7-world-outline:before { content: "\f1f7" }
|
821
|
+
.icon-ipad:before { content: "\f1f9" }
|
822
|
+
.icon-iphone:before { content: "\f1fa" }
|
823
|
+
.icon-ipod:before { content: "\f1fb" }
|
824
|
+
.icon-jet:before { content: "\f295" }
|
825
|
+
.icon-key:before { content: "\f296" }
|
826
|
+
.icon-knife:before { content: "\f297" }
|
827
|
+
.icon-laptop:before { content: "\f1fc" }
|
828
|
+
.icon-leaf:before { content: "\f1fd" }
|
829
|
+
.icon-levels:before { content: "\f298" }
|
830
|
+
.icon-lightbulb:before { content: "\f299" }
|
831
|
+
.icon-link:before { content: "\f1fe" }
|
832
|
+
.icon-load-a:before,
|
833
|
+
.icon-loading-a:before { content: "\f29a" }
|
834
|
+
.icon-load-b:before,
|
835
|
+
.icon-loading-b:before { content: "\f29b" }
|
836
|
+
.icon-load-c:before,
|
837
|
+
.icon-loading-c:before { content: "\f29c" }
|
838
|
+
.icon-load-d:before,
|
839
|
+
.icon-loading-d:before { content: "\f29d" }
|
840
|
+
.icon-location:before { content: "\f1ff" }
|
841
|
+
.icon-locked:before { content: "\f200" }
|
842
|
+
.icon-log-in:before { content: "\f29e" }
|
843
|
+
.icon-log-out:before { content: "\f29f" }
|
844
|
+
.icon-loop:before,
|
845
|
+
.icon-looping:before { content: "\f201" }
|
846
|
+
.icon-magnet:before { content: "\f2a0" }
|
847
|
+
.icon-male:before { content: "\f2a1" }
|
848
|
+
.icon-man:before { content: "\f202" }
|
849
|
+
.icon-map:before { content: "\f203" }
|
850
|
+
.icon-medkit:before { content: "\f2a2" }
|
851
|
+
.icon-mic-a:before { content: "\f204" }
|
852
|
+
.icon-mic-b:before { content: "\f205" }
|
853
|
+
.icon-mic-c:before { content: "\f206" }
|
854
|
+
.icon-minus:before { content: "\f209" }
|
855
|
+
.icon-minus-circled:before { content: "\f207" }
|
856
|
+
.icon-minus-round:before { content: "\f208" }
|
857
|
+
.icon-monitor:before { content: "\f20a" }
|
858
|
+
.icon-more:before { content: "\f20b" }
|
859
|
+
.icon-music-note:before { content: "\f20c" }
|
860
|
+
.icon-navicon:before { content: "\f20e" }
|
861
|
+
.icon-navicon-round:before { content: "\f20d" }
|
862
|
+
.icon-navigate:before { content: "\f2a3" }
|
863
|
+
.icon-nuclear:before { content: "\f2a4" }
|
864
|
+
.icon-paperclip:before { content: "\f20f" }
|
865
|
+
.icon-pause:before { content: "\f210" }
|
866
|
+
.icon-person:before { content: "\f213" }
|
867
|
+
.icon-person-add:before { content: "\f211" }
|
868
|
+
.icon-person-stalker:before { content: "\f212" }
|
869
|
+
.icon-pie-graph:before { content: "\f2a5" }
|
870
|
+
.icon-pin:before { content: "\f2a6" }
|
871
|
+
.icon-pinpoint:before { content: "\f2a7" }
|
872
|
+
.icon-pizza:before { content: "\f2a8" }
|
873
|
+
.icon-plane:before { content: "\f214" }
|
874
|
+
.icon-play:before { content: "\f215" }
|
875
|
+
.icon-plus:before { content: "\f218" }
|
876
|
+
.icon-plus-circled:before { content: "\f216" }
|
877
|
+
.icon-plus-round:before { content: "\f217" }
|
878
|
+
.icon-pound:before { content: "\f219" }
|
879
|
+
.icon-power:before { content: "\f2a9" }
|
880
|
+
.icon-pricetag:before { content: "\f2aa" }
|
881
|
+
.icon-pricetags:before { content: "\f2ab" }
|
882
|
+
.icon-printer:before { content: "\f21a" }
|
883
|
+
.icon-radio-waves:before { content: "\f2ac" }
|
884
|
+
.icon-record:before { content: "\f21b" }
|
885
|
+
.icon-refresh:before,
|
886
|
+
.icon-refreshing:before { content: "\f21c" }
|
887
|
+
.icon-reply:before { content: "\f21e" }
|
888
|
+
.icon-reply-all:before { content: "\f21d" }
|
889
|
+
.icon-search:before { content: "\f21f" }
|
890
|
+
.icon-settings:before { content: "\f2ad" }
|
891
|
+
.icon-share:before { content: "\f220" }
|
892
|
+
.icon-shuffle:before { content: "\f221" }
|
893
|
+
.icon-skip-backward:before { content: "\f222" }
|
894
|
+
.icon-skip-forward:before { content: "\f223" }
|
895
|
+
.icon-social-android:before { content: "\f225" }
|
896
|
+
.icon-social-android-outline:before { content: "\f224" }
|
897
|
+
.icon-social-apple:before { content: "\f227" }
|
898
|
+
.icon-social-apple-outline:before { content: "\f226" }
|
899
|
+
.icon-social-bitcoin:before { content: "\f2af" }
|
900
|
+
.icon-social-bitcoin-outline:before { content: "\f2ae" }
|
901
|
+
.icon-social-buffer:before { content: "\f229" }
|
902
|
+
.icon-social-buffer-outline:before { content: "\f228" }
|
903
|
+
.icon-social-designernews:before { content: "\f22b" }
|
904
|
+
.icon-social-designernews-outline:before
|
905
|
+
{ content: "\f22a" }
|
906
|
+
.icon-social-dribbble:before { content: "\f22d" }
|
907
|
+
.icon-social-dribbble-outline:before { content: "\f22c" }
|
908
|
+
.icon-social-dropbox:before { content: "\f22f" }
|
909
|
+
.icon-social-dropbox-outline:before { content: "\f22e" }
|
910
|
+
.icon-social-facebook:before { content: "\f231" }
|
911
|
+
.icon-social-facebook-outline:before { content: "\f230" }
|
912
|
+
.icon-social-github:before { content: "\f233" }
|
913
|
+
.icon-social-github-outline:before { content: "\f232" }
|
914
|
+
.icon-social-googleplus:before { content: "\f235" }
|
915
|
+
.icon-social-googleplus-outline:before { content: "\f234" }
|
916
|
+
.icon-social-hackernews:before { content: "\f237" }
|
917
|
+
.icon-social-hackernews-outline:before { content: "\f236" }
|
918
|
+
.icon-social-linkedin:before { content: "\f239" }
|
919
|
+
.icon-social-linkedin-outline:before { content: "\f238" }
|
920
|
+
.icon-social-pinterest:before { content: "\f2b1" }
|
921
|
+
.icon-social-pinterest-outline:before { content: "\f2b0" }
|
922
|
+
.icon-social-reddit:before { content: "\f23b" }
|
923
|
+
.icon-social-reddit-outline:before { content: "\f23a" }
|
924
|
+
.icon-social-rss:before { content: "\f23d" }
|
925
|
+
.icon-social-rss-outline:before { content: "\f23c" }
|
926
|
+
.icon-social-skype:before { content: "\f23f" }
|
927
|
+
.icon-social-skype-outline:before { content: "\f23e" }
|
928
|
+
.icon-social-tumblr:before { content: "\f241" }
|
929
|
+
.icon-social-tumblr-outline:before { content: "\f240" }
|
930
|
+
.icon-social-twitter:before { content: "\f243" }
|
931
|
+
.icon-social-twitter-outline:before { content: "\f242" }
|
932
|
+
.icon-social-vimeo:before { content: "\f245" }
|
933
|
+
.icon-social-vimeo-outline:before { content: "\f244" }
|
934
|
+
.icon-social-windows:before { content: "\f247" }
|
935
|
+
.icon-social-windows-outline:before { content: "\f246" }
|
936
|
+
.icon-social-wordpress:before { content: "\f249" }
|
937
|
+
.icon-social-wordpress-outline:before { content: "\f248" }
|
938
|
+
.icon-social-yahoo:before { content: "\f24b" }
|
939
|
+
.icon-social-yahoo-outline:before { content: "\f24a" }
|
940
|
+
.icon-social-youtube:before { content: "\f24d" }
|
941
|
+
.icon-social-youtube-outline:before { content: "\f24c" }
|
942
|
+
.icon-speakerphone:before { content: "\f2b2" }
|
943
|
+
.icon-speedometer:before { content: "\f2b3" }
|
944
|
+
.icon-spoon:before { content: "\f2b4" }
|
945
|
+
.icon-star:before { content: "\f24e" }
|
946
|
+
.icon-stats-bars:before { content: "\f2b5" }
|
947
|
+
.icon-stop:before { content: "\f24f" }
|
948
|
+
.icon-thermometer:before { content: "\f2b6" }
|
949
|
+
.icon-thumbsdown:before { content: "\f250" }
|
950
|
+
.icon-thumbsup:before { content: "\f251" }
|
951
|
+
.icon-trash-a:before { content: "\f252" }
|
952
|
+
.icon-trash-b:before { content: "\f253" }
|
953
|
+
.icon-umbrella:before { content: "\f2b7" }
|
954
|
+
.icon-unlocked:before { content: "\f254" }
|
955
|
+
.icon-upload:before { content: "\f255"; }
|
956
|
+
.icon-usb:before { content: "\f2b8"; }
|
957
|
+
.icon-videocamera:before { content: "\f256"; }
|
958
|
+
.icon-volume-high:before { content: "\f257"; }
|
959
|
+
.icon-volume-low:before { content: "\f258"; }
|
960
|
+
.icon-volume-medium:before { content: "\f259"; }
|
961
|
+
.icon-volume-mute:before { content: "\f25a"; }
|
962
|
+
.icon-waterdrop:before { content: "\f25b"; }
|
963
|
+
.icon-wifi:before { content: "\f25c"; }
|
964
|
+
.icon-wineglass:before { content: "\f2b9"; }
|
965
|
+
.icon-woman:before { content: "\f25d"; }
|
966
|
+
.icon-wrench:before { content: "\f2ba"; }
|