Version Description
- Tweak: Add 'Open Multiple' option to Accordion shortcode
Download this release
Release Info
Developer | hoosoft |
Plugin | Magee Shortcodes |
Version | 2.0.1 |
Comparing to | |
See all releases |
Code changes from version 2.0.0 to 2.0.1
- Includes/Classes/Config.class.php +27 -7
- Magee.php +2 -2
- assets/css/shortcodes.css +1 -1
- assets/css/shortcodes.min.css +1 -1
- assets/js/shortcodes.js +1 -1
- assets/js/shortcodes.min.js +1 -1
- inc/core.php +0 -1320
- inc/google-fonts.php +0 -12034
- inc/magee-slider.php +0 -202
- inc/options.php +0 -4399
- inc/popup.php +0 -42
- inc/qrcode-image.php +0 -37
- readme.txt +10 -1
- shortcodes/class-accordion.php +3 -2
- shortcodes/class-countdowns.php +16 -36
- shortcodes/class-custom-box.php +7 -1
- shortcodes/class-divider.php +19 -3
Includes/Classes/Config.class.php
CHANGED
@@ -133,6 +133,13 @@ class Config{
|
|
133 |
'spacing' => __( 'Spacing Style', 'magee-shortcodes' ),
|
134 |
)
|
135 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
'icon' => array(
|
137 |
'type' => 'select',
|
138 |
'label' => __( 'Status Icon', 'magee-shortcodes' ),
|
@@ -186,7 +193,7 @@ class Config{
|
|
186 |
,
|
187 |
'shortcode' => "[ms_accordion_item title=\"{{title}}\" status=\"{{status}}\"]{{content}}[/ms_accordion_item]\r\n",
|
188 |
),
|
189 |
-
'shortcode' => "[ms_accordion style=\"{{style}}\" color=\"{{color}}\" background_color=\"{{background_color}}\" icon=\"{{icon}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{child_shortcode}}[/ms_accordion]",
|
190 |
'popup_title' => __( 'Accordion Shortcode', 'magee-shortcodes' ),
|
191 |
'name' => __('accordions-shortcode/','magee-shortcodes'),
|
192 |
|
@@ -253,14 +260,14 @@ class Config{
|
|
253 |
'type' => 'choose',
|
254 |
'label' => __( 'Box Shadow', 'magee-shortcodes' ),
|
255 |
'desc' => __( 'Display a box shadow for alert.', 'magee-shortcodes' ),
|
256 |
-
'options' => $reverse_choices
|
257 |
),
|
258 |
'dismissable' => array(
|
259 |
'std' => 'yes',
|
260 |
'type' => 'choose',
|
261 |
'label' => __( 'Dismissable', 'magee-shortcodes' ),
|
262 |
'desc' => __( 'The alert box is dismissable.', 'magee-shortcodes' ),
|
263 |
-
'options' => $reverse_choices
|
264 |
),
|
265 |
|
266 |
'class' => array(
|
@@ -1262,7 +1269,7 @@ class Config{
|
|
1262 |
)
|
1263 |
),
|
1264 |
'endtime' => array(
|
1265 |
-
'std' => date('Y/m/d H:i',strtotime(' 1 month')),
|
1266 |
'type' => 'datepicker',
|
1267 |
'label' => __( 'Set end time for countdown.', 'magee-shortcodes' ),
|
1268 |
'desc' => '',
|
@@ -1351,7 +1358,7 @@ class Config{
|
|
1351 |
),
|
1352 |
|
1353 |
),
|
1354 |
-
'shortcode' => '[ms_countdowns type="{{type}}" nowtime="'.
|
1355 |
'popup_title' => __( 'Countdowns Shortcode', 'magee-shortcodes' ),
|
1356 |
'name' => __('countdowns-shortcode/','magee-shortcodes'),
|
1357 |
);
|
@@ -1482,6 +1489,19 @@ class Config{
|
|
1482 |
'label' => __( 'Content', 'magee-shortcodes' ),
|
1483 |
'desc' => __( 'Insert content for custom box.', 'magee-shortcodes' ),
|
1484 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1485 |
'backgroundimage' => array(
|
1486 |
'type' => 'uploader',
|
1487 |
'label' => __( 'Background Image', 'magee-shortcodes' ),
|
@@ -1532,7 +1552,7 @@ class Config{
|
|
1532 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1533 |
),
|
1534 |
),
|
1535 |
-
'shortcode' => '[ms_custom_box
|
1536 |
'popup_title' => __( ' Custom Box Shortcode', 'magee-shortcodes'),
|
1537 |
'name' => __('custom-box-shortcode/','magee-shortcodes'),
|
1538 |
);
|
@@ -1550,7 +1570,7 @@ class Config{
|
|
1550 |
'std' => '',
|
1551 |
'type' => 'text',
|
1552 |
'label' => __( 'Dailymotion URL', 'magee-shortcodes' ),
|
1553 |
-
'desc' => __( 'Add the URL the video will link to, ex:
|
1554 |
),
|
1555 |
'width' => array(
|
1556 |
'std' => '100%',
|
133 |
'spacing' => __( 'Spacing Style', 'magee-shortcodes' ),
|
134 |
)
|
135 |
),
|
136 |
+
'open_multiple' => array(
|
137 |
+
'std' => 'no',
|
138 |
+
'type' => 'choose',
|
139 |
+
'label' => __( 'Open Multiple', 'magee-shortcodes' ),
|
140 |
+
'desc' => __( 'Click to expand multiple tabs.', 'magee-shortcodes' ),
|
141 |
+
'options' => $reverse_choices
|
142 |
+
),
|
143 |
'icon' => array(
|
144 |
'type' => 'select',
|
145 |
'label' => __( 'Status Icon', 'magee-shortcodes' ),
|
193 |
,
|
194 |
'shortcode' => "[ms_accordion_item title=\"{{title}}\" status=\"{{status}}\"]{{content}}[/ms_accordion_item]\r\n",
|
195 |
),
|
196 |
+
'shortcode' => "[ms_accordion style=\"{{style}}\" open_multiple=\"{{open_multiple}}\" color=\"{{color}}\" background_color=\"{{background_color}}\" icon=\"{{icon}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{child_shortcode}}[/ms_accordion]",
|
197 |
'popup_title' => __( 'Accordion Shortcode', 'magee-shortcodes' ),
|
198 |
'name' => __('accordions-shortcode/','magee-shortcodes'),
|
199 |
|
260 |
'type' => 'choose',
|
261 |
'label' => __( 'Box Shadow', 'magee-shortcodes' ),
|
262 |
'desc' => __( 'Display a box shadow for alert.', 'magee-shortcodes' ),
|
263 |
+
'options' => $reverse_choices
|
264 |
),
|
265 |
'dismissable' => array(
|
266 |
'std' => 'yes',
|
267 |
'type' => 'choose',
|
268 |
'label' => __( 'Dismissable', 'magee-shortcodes' ),
|
269 |
'desc' => __( 'The alert box is dismissable.', 'magee-shortcodes' ),
|
270 |
+
'options' => $reverse_choices
|
271 |
),
|
272 |
|
273 |
'class' => array(
|
1269 |
)
|
1270 |
),
|
1271 |
'endtime' => array(
|
1272 |
+
'std' => date('Y/m/d H:i:s',strtotime(' 1 month')),
|
1273 |
'type' => 'datepicker',
|
1274 |
'label' => __( 'Set end time for countdown.', 'magee-shortcodes' ),
|
1275 |
'desc' => '',
|
1358 |
),
|
1359 |
|
1360 |
),
|
1361 |
+
'shortcode' => '[ms_countdowns type="{{type}}" nowtime="'.date('Y/m/d H:i:s').'" endtime="{{endtime}}" day_field_text="{{day_field_text}}" hours_field_text="{{hours_field_text}}" minutes_field_text="{{minutes_field_text}}" seconds_field_text="{{seconds_field_text}}" fontcolor="{{fontcolor}}" backgroundcolor="{{backgroundcolor}}" google_fonts="{{google_fonts}}" class="{{class}}" id="{{id}}" circle_type_day_color="{{circle_type_day_color}}" circle_type_hours_color="{{circle_type_hours_color}}" circle_type_minutes_color="{{circle_type_minutes_color}}" circle_type_seconds_color="{{circle_type_seconds_color}}"]',
|
1362 |
'popup_title' => __( 'Countdowns Shortcode', 'magee-shortcodes' ),
|
1363 |
'name' => __('countdowns-shortcode/','magee-shortcodes'),
|
1364 |
);
|
1489 |
'label' => __( 'Content', 'magee-shortcodes' ),
|
1490 |
'desc' => __( 'Insert content for custom box.', 'magee-shortcodes' ),
|
1491 |
),
|
1492 |
+
'font_size' => array(
|
1493 |
+
'std' => '14',
|
1494 |
+
'type' => 'number',
|
1495 |
+
'max' => '50',
|
1496 |
+
'min' => '0',
|
1497 |
+
'label' => __( 'Font Size', 'magee-shortcodes' ),
|
1498 |
+
'desc' => __( 'Set font size for content.', 'magee-shortcodes' ),
|
1499 |
+
),
|
1500 |
+
'font_color' => array(
|
1501 |
+
'type' => 'colorpicker',
|
1502 |
+
'label' => __( 'Font Color', 'magee-shortcodes' ),
|
1503 |
+
'desc' => __( 'Set color for content.', 'magee-shortcodes' ),
|
1504 |
+
),
|
1505 |
'backgroundimage' => array(
|
1506 |
'type' => 'uploader',
|
1507 |
'label' => __( 'Background Image', 'magee-shortcodes' ),
|
1552 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1553 |
),
|
1554 |
),
|
1555 |
+
'shortcode' => '[ms_custom_box backgroundimage="{{backgroundimage}}" font_size="{{font_size}}" font_color="{{font_color}}" fixed_background="{{fixed_background}}" background_position="{{background_position}}" padding="{{padding}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_custom_box]',
|
1556 |
'popup_title' => __( ' Custom Box Shortcode', 'magee-shortcodes'),
|
1557 |
'name' => __('custom-box-shortcode/','magee-shortcodes'),
|
1558 |
);
|
1570 |
'std' => '',
|
1571 |
'type' => 'text',
|
1572 |
'label' => __( 'Dailymotion URL', 'magee-shortcodes' ),
|
1573 |
+
'desc' => __( 'Add the URL the video will link to, ex: https://www.dailymotion.com/xxx', 'magee-shortcodes' ),
|
1574 |
),
|
1575 |
'width' => array(
|
1576 |
'std' => '100%',
|
Magee.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Magee Shortcodes
|
4 |
Plugin URI: https://www.hoosoft.com/plugins/magee-shortcodes/
|
5 |
Description: Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. With Magee Shortcodes, you can easily create accordion, buttons, boxes, columns, social and much more. They allow you to create so many different page layouts. You could quickly and easily built your own custom pages using all the various shortcodes that Magee Shortcodes includes.
|
6 |
-
Version: 2.0.
|
7 |
Author: Hoosoft
|
8 |
Author URI: http://www.hoosoft.com
|
9 |
Text Domain: magee-shortcodes
|
@@ -17,7 +17,7 @@ if ( ! defined( 'ABSPATH' ) ) return;
|
|
17 |
define( 'MAGEE_SHORTCODES_INCLUDE_DIR', MAGEE_SHORTCODES_DIR_PATH.'Includes' );
|
18 |
define( 'MAGEE_SHORTCODES_URL', plugin_dir_url( __FILE__ ));
|
19 |
|
20 |
-
define( 'MAGEE_SHORTCODES_VER', '2.0.
|
21 |
|
22 |
define('MAGEE_PORTFOLIO', 'magee_portfolio' );
|
23 |
define( 'MAGEE_DATE_FORMAT','');
|
3 |
Plugin Name: Magee Shortcodes
|
4 |
Plugin URI: https://www.hoosoft.com/plugins/magee-shortcodes/
|
5 |
Description: Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. With Magee Shortcodes, you can easily create accordion, buttons, boxes, columns, social and much more. They allow you to create so many different page layouts. You could quickly and easily built your own custom pages using all the various shortcodes that Magee Shortcodes includes.
|
6 |
+
Version: 2.0.1
|
7 |
Author: Hoosoft
|
8 |
Author URI: http://www.hoosoft.com
|
9 |
Text Domain: magee-shortcodes
|
17 |
define( 'MAGEE_SHORTCODES_INCLUDE_DIR', MAGEE_SHORTCODES_DIR_PATH.'Includes' );
|
18 |
define( 'MAGEE_SHORTCODES_URL', plugin_dir_url( __FILE__ ));
|
19 |
|
20 |
+
define( 'MAGEE_SHORTCODES_VER', '2.0.1' );
|
21 |
|
22 |
define('MAGEE_PORTFOLIO', 'magee_portfolio' );
|
23 |
define( 'MAGEE_DATE_FORMAT','');
|
assets/css/shortcodes.css
CHANGED
@@ -2486,7 +2486,7 @@ button.close:active {
|
|
2486 |
}
|
2487 |
|
2488 |
.magee-countdown {
|
2489 |
-
list-style-type: none;
|
2490 |
margin: 0 -15px;
|
2491 |
}
|
2492 |
.magee-countdown .counter-num{
|
2486 |
}
|
2487 |
|
2488 |
.magee-countdown {
|
2489 |
+
list-style-type: none !important;
|
2490 |
margin: 0 -15px;
|
2491 |
}
|
2492 |
.magee-countdown .counter-num{
|
assets/css/shortcodes.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-1_7,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-1_5,.col-md-1_7,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px;webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.col-md-1_5{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.col-md-1_7{-ms-flex:0 0 14.2857%;flex:0 0 14.2857%;max-width:14.2857%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.col-lg-1_7{-ms-flex:0 0 14.2857%;flex:0 0 14.2857%;max-width:14.2857%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.border-right{border-right:1px solid #f5f5f5}.text-light{color:#fff}.text-light,.text-light a,.text-light h1,.text-light h2,.text-light h3,.text-light h4,.text-light h5,.text-light h6,a.text-light,h1.text-light,h2.text-light,h3.text-light,h4.text-light,h5.text-light,h6.text-light{color:#fff!important}.text-light a:hover,a.text-light:hover{color:rgba(255,255,255,.7)!important}.text-primary{color:#fdd200}.text-dark{color:#222}.magee-dropcap{position:relative;float:left;top:.05em;margin-right:.15em;padding:0;line-height:.8;font-size:5em;text-transform:uppercase;color:#fdd200}.dropcap-boxed{padding:.05em .1em .1em .1em;background-color:#fdd200;color:#fff}.magee-highlight{background-color:#fdd200;color:#fff;padding:0 .3em}.tooltip-text{color:#fdd200}.tooltip-text:hover{cursor:pointer}.box-shadow{box-shadow:1px 1px 5px 0 rgba(0,0,0,.1)}.magee-btn-wrapper{display:inline}a.btn-normal:hover,a.magee-btn-normal:hover{text-decoration:none}.btn-normal,.magee-btn-normal{position:relative;display:inline-block;text-align:center;vertical-align:middle;white-space:nowrap;cursor:pointer;color:#fff;background-color:#fdd200;line-height:1;padding:.9em 1.6em;border-radius:0;border-width:0;border-style:solid;text-decoration:none}.btn-normal,.magee-btn-normal:active,.magee-btn-normal:focus,.magee-btn-normal:hover{background-color:#f6cc00;color:#fff}.btn-md{font-size:1em}.btn-large,.btn-lg{font-size:1.2em}.btn-sm,.btn-small{font-size:.8em}.btn-xl{font-size:1.5em}.btn-square{border-radius:0}.btn-rounded{border-radius:5px}.btn-full-rounded{border-radius:50px}.btn-text-shadow{text-shadow:0 1px rgba(0,0,0,.4)}.btn-gradient{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.05)),to(rgba(0,0,0,.1)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1))}.btn-2d{text-shadow:0 1px rgba(0,0,0,.4);box-shadow:0 0 0 1px rgba(0,0,0,.2) inset;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.05)),to(rgba(0,0,0,.1)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1))}.btn-3d{text-shadow:0 1px rgba(0,0,0,.4);box-shadow:0 3px 0 0 #c5a300}.magee-btn-normal.btn-light{background-color:#fff;color:#000}.magee-btn-normal.btn-dark{background-color:#000;color:#fff}.magee-btn-normal.btn-line{background-color:transparent;color:#fdd200;border:2px solid #fdd200}.magee-btn-normal.btn-line:active,.magee-btn-normal.btn-line:focus,.magee-btn-normal.btn-line:hover{background-color:rgba(255,255,255,.1)}.magee-btn-normal.btn-line.btn-light{border-color:#fff;color:#fff;background-color:transparent}.magee-btn-normal.btn-line.btn-light:active,.magee-btn-normal.btn-line.btn-light:focus,.magee-btn-normal.btn-line.btn-light:hover{background-color:rgba(255,255,255,.1)}.magee-btn-normal.btn-line.btn-dark{border-color:#000;color:#000;background-color:transparent}.magee-btn-normal.btn-line.btn-dark:active,.magee-btn-normal.btn-line.btn-dark:focus,.magee-btn-normal.btn-line.btn-dark:hover{background-color:#000;color:#fff}.btn-block{display:block}.magee-feature-box h3{font-size:18px}.magee-feature-box .feature-content p{margin-bottom:.8em}.magee-feature-box.style1,.magee-feature-box.style4{text-align:center}.magee-feature-box.style2 h3,.magee-feature-box.style3 h3{text-align:left}.magee-feature-box.style2 .feature-content,.magee-feature-box.style3 .feature-content{text-align:right}.magee-feature-box.style2 .feature-content p,.magee-feature-box.style3 .feature-content p{text-align:left}.magee-feature-box.style2.reverse h3,.magee-feature-box.style3.reverse h3{text-align:right}.magee-feature-box.style2.reverse .feature-content,.magee-feature-box.style3.reverse .feature-content{text-align:left}.magee-feature-box.style2.reverse .feature-content p,.magee-feature-box.style3.reverse .feature-content p{text-align:right}.magee-feature-box img{display:block}.magee-feature-box.style1 .icon-box,.magee-feature-box.style1 img,.magee-feature-box.style4 .icon-box,.magee-feature-box.style4 img{margin:0 auto}.magee-feature-box.style1 .icon-box .fa-fw,.magee-feature-box.style4 .icon-box .fa-fw{margin-left:-.142857em}.magee-feature-box.style2{position:relative;min-height:80px;padding-left:95px}.magee-feature-box.style2 .icon-box,.magee-feature-box.style2 img{position:absolute;top:0;left:0}.magee-feature-box.style2.reverse{padding-left:0;padding-right:95px}.magee-feature-box.style2.reverse .icon-box,.magee-feature-box.style2.reverse img{right:0;left:auto}.magee-feature-box.style3 .icon-box,.magee-feature-box.style3 img{float:left;margin-bottom:10px}.magee-feature-box.style3.reverse .icon-box,.magee-feature-box.style3.reverse img{float:right}.magee-feature-box.style3 h3{clear:none;float:left;margin:0 0 0 15px;line-height:80px}.magee-feature-box.style3.reverse h3{float:right;margin-right:15px;margin-left:0}.magee-feature-box.style3 p{clear:left}.magee-feature-box.style3.reverse p{clear:right}.magee-feature-box.style4{background-color:#f5f5f5;position:relative;padding:50px 10px 10px;margin-top:40px}.magee-feature-box.style4 .icon-box,.magee-feature-box.style4 img{position:absolute;top:-40px;left:50%;margin-left:-40px;background-color:#fff}.icon-box{text-align:center;color:#222;font-size:40px;line-height:1em;width:1em;height:1em}.icon-box.primary{color:#fdd200}.icon-box.light{color:#fff}.icon-box.icon-xl{font-size:80px}.icon-box.icon-lg{font-size:60px}.icon-box.icon-sm{font-size:20px}.icon-circle{border-radius:50%;border-style:solid;border-width:2px;border-color:#222;background-color:rgba(0,0,0,0);line-height:2.5em;width:2.5em;height:2.5em}.collapse{display:none}.collapse.in{display:block}.magee-accordion .panel{border-radius:0}.magee-accordion .panel{border:none;box-shadow:none;border-bottom:1px solid #ddd}.magee-accordion.panel-group .panel-heading+.panel-collapse>.list-group,.magee-accordion.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:none}.magee-accordion .panel-heading{padding:10px}.magee-accordion .panel-heading i{color:#777;margin-right:.5em}.magee-accordion .panel-body{padding:15px 10px}.magee-accordion .panel-default>.panel-heading{background-color:transparent;border:none}.magee-accordion .panel-group .panel+.panel{margin-top:0}.magee-accordion .panel-heading{position:relative;border:none;border-radius:0}.magee-accordion h4.panel-title{margin-top:0;margin-bottom:0;color:inherit;font-size:16px}a.accordion-toggle,a.accordion-toggle:hover{text-decoration:none}.magee-accordion .magee-accordion.style3 .panel-heading .accordion-toggle:after{display:none}.magee-accordion.style3 .panel-heading .accordion-toggle.collapsed:after{display:none}.magee-accordion.style3 .panel-heading .accordion-toggle:after{display:none}.magee-accordion.accordion-spacing .panel-heading{padding:15px}.magee-accordion.accordion-spacing .panel-default>.panel-heading{background-color:#fdfdfd}.magee-accordion.accordion-spacing .panel-heading:hover{background:#f8f8f8}.magee-accordion.accordion-spacing .panel-body{padding:15px}.magee-accordion.accordion-spacing .panel-heading .accordion-toggle:after{top:15px;right:15px}.magee-accordion.accordion-spacing .panel{border:1px solid #ddd;overflow:hidden;margin-bottom:10px}.magee-accordion.accordion-spacing .panel:last-child{border-bottom-width:1px}.magee-accordion.accordion-spacing.panel-group .panel+.panel{margin-top:0}.magee-accordion .panel-heading .accordion-toggle:after{position:absolute;display:block;right:10px;top:10px;width:16px;height:16px;content:"";text-align:center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(180deg);background-repeat:no-repeat;transition:transform .2s ease-in-out}.magee-accordion .panel-heading .accordion-toggle.collapsed:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23777777'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(0)}.magee-accordion.style2 .panel-heading .accordion-toggle:after{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='minus' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' class='svg-inline--fa fa-minus fa-w-12 fa-3x'%3e%3cpath fill='currentColor' d='M376 232H8c-4.42 0-8 3.58-8 8v32c0 4.42 3.58 8 8 8h368c4.42 0 8-3.58 8-8v-32c0-4.42-3.58-8-8-8z' class=''%3e%3c/path%3e%3c/svg%3e")}.magee-accordion.style2 .panel-heading .accordion-toggle.collapsed:after{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='plus' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' class='svg-inline--fa fa-plus fa-w-12 fa-3x'%3e%3cpath fill='currentColor' d='M376 232H216V72c0-4.42-3.58-8-8-8h-32c-4.42 0-8 3.58-8 8v160H8c-4.42 0-8 3.58-8 8v32c0 4.42 3.58 8 8 8h160v160c0 4.42 3.58 8 8 8h32c4.42 0 8-3.58 8-8V280h160c4.42 0 8-3.58 8-8v-32c0-4.42-3.58-8-8-8z' class=''%3e%3c/path%3e%3c/svg%3e")}.magee-accordion.accordion-boxed .panel-heading{padding:15px}.magee-accordion.accordion-boxed .panel-default>.panel-heading{background-color:#fdfdfd}.magee-accordion.accordion-boxed .panel-heading:hover{background:#f8f8f8}.magee-accordion.accordion-boxed .panel-body{padding:15px}.magee-accordion.accordion-boxed .panel-heading .accordion-toggle:after{top:15px;right:15px}.magee-accordion.accordion-boxed .panel{border:1px solid #ddd;border-bottom-width:0;overflow:hidden}.magee-accordion.accordion-boxed .panel:last-child{border-bottom-width:1px}.magee-accordion.accordion-boxed.panel-group .panel+.panel{margin-top:0}.magee-accordion.panel-group .panel-heading+.panel-collapse>.list-group,.magee-accordion.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.magee-accordion.faq .panel-heading{padding:20px 10px}.magee-accordion.faq .panel-heading .accordion-toggle:after{top:20px}.magee-accordion.accordion-boxed.faq .panel-heading{padding:25px 15px}.magee-accordion.accordion-boxed.faq .panel-heading .accordion-toggle:after{top:25px}.faq-list-filter .faq-box-wrap{display:none;overflow:hidden;width:100%}.list-filter li a{display:block;padding:5px 10px;color:#777}.list-filter li a:hover,.list-filter li.active a{background-color:#f8f8f8}.portfolio-list-filter li a:hover,.portfolio-list-filter li.active a{background-color:#fdd200;color:#fff}.portfolio-list-filter .portfolio-box-wrap{display:none}.tab-title{font-size:16px;margin:0}.tab-title i{margin-right:5px;color:#777}.magee-tab-box ul{margin:0;width:100%}.tab-pane{padding:10px 0}.magee-tab-box.tab-line ul.list-inline{border-bottom:2px solid #eee}.magee-tab-box ul.list-inline>li{padding:0;margin-bottom:0}.magee-tab-box.tab-line ul>li>a{padding:15px 20px;display:block;margin-bottom:-2px;border-bottom:2px solid transparent}.magee-tab-box.tab-line ul>li.active>a{border-bottom-color:#fdd200}.magee-tab-box.tab-normal ul>li>a{padding:15px 20px;border-radius:0;margin-right:0}.magee-tab-box.tab-normal ul>li>a{background-color:#fdfdfd;border:1px solid #ddd}.magee-tab-box.tab-normal ul>li>a:hover{background-color:#f8f8f8}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked li{float:left}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked>li+li{margin-top:0;margin-left:0}.magee-tab-box.tab-normal .tab-pane{padding:20px;border:1px solid #ddd;border-top:0}@media screen and (min-width:768px){.magee-tab-box.tab-normal .nav-tabs.nav-justified>.active>a,.magee-tab-box.tab-normal .nav-tabs.nav-justified>.active>a:focus,.magee-tab-box.tab-normal .nav-tabs.nav-justified>.active>a:hover,.magee-tab-box.tab-normal ul>li+li>a,.magee-tab-box.tab-normal ul>li+li>a:hover{border-left:0}.magee-tab-box.tab-normal .nav-tabs.nav-justified>li:first-child>a,.magee-tab-box.tab-normal .nav-tabs.nav-justified>li:first-child>a:focus,.magee-tab-box.tab-normal .nav-tabs.nav-justified>li:first-child>a:hover{border-left:1px solid #ddd}.magee-tab-box.tab-normal ul>li.active>a{background-color:#fff;border-bottom-color:#fff}.magee-tab-box.tab-vertical ul{width:30%}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked li{float:none}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked>li+li{margin-top:0;margin-left:0}.magee-tab-box.tab-vertical .tab-content{width:70%}.magee-tab-box.tab-normal.tab-vertical ul>li+li{margin-top:0}.magee-tab-box.tab-normal.tab-vertical ul>li>a{border:1px solid #ddd;margin:0}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-left ul>li>a{margin-right:-1px}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-right ul>li>a{margin-left:-1px}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-left ul>li+li>a{border-left:1px solid #ddd}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-right ul>li+li>a{border-right:1px solid #ddd}.magee-tab-box.tab-normal.tab-vertical ul>li.active>a{border-bottom-color:#ddd}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-left ul>li.active>a{border-right-color:#fff}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-right ul>li.active>a{border-left-color:#fff}.magee-tab-box.tab-normal.tab-vertical .tab-pane{padding:20px;border:1px solid #ddd}}.magee-tab-box .nav-pills>li{padding-right:10px}.magee-tab-box .nav-pills>li:last-child{padding-right:0}.magee-tab-box .nav-pills>li>a{border-radius:0}.magee-tab-box .nav-pills>li.active>a,.magee-tab-box .nav-pills>li.active>a:focus,.magee-tab-box .nav-pills>li.active>a:hover,.magee-tab-box .nav-pills>li>a:hover{color:#777;background-color:#f8f8f8}.magee-panel{border-radius:0;box-shadow:none;overflow:hidden}.panel-primary{border-color:#fdd200}.panel-primary .panel-heading{background-color:#fdd200;border-color:#fdd200}.magee-panel h3.panel-title{margin-top:0;margin-bottom:0;color:inherit;font-size:16px}.magee-alert{background-color:#f5f5f5;border-radius:0;padding:25px 15px;border-style:solid;clear:both}.magee-alert i{-webkit-transform:scale(2) translateX(.3em);transform:scale(2) translateX(.3em);margin-right:2em;font-size:12px}.alert-dismissable .close,.alert-dismissible .close{top:0;right:0;opacity:1}.magee-alert .close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.7;background:0 0;-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease}.magee-alert .close:hover{color:inherit;-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease}.magee-alert a.close,button.close{background:0 0;border:none;border-bottom:none;border-radius:0;padding:0;color:inherit}.magee-alert a.close:hover,button.close:hover{background:0 0}.magee-alert a.close:active,.magee-alert a.close:link,.magee-alert a.close:visited,button.close:active{padding:0;background:0 0;border:none;text-decoration:none}.magee-pricing-box{box-shadow:1px 1px 5px 0 rgba(0,0,0,.1);overflow:hidden}.magee-pricing-box .panel-heading{background-color:#fff;padding:20px;border-bottom:1px solid #ddd}.pricing-top-icon{font-size:72px;color:#fdd200;line-height:1;margin-bottom:10px}.magee-pricing-box .panel-title{font-size:24px}.magee-pricing-box.featured .panel-heading{background-color:#fdd200}.magee-pricing-box.featured .panel-title,.magee-pricing-box.featured .pricing-top-icon{color:#fff}.magee-pricing-box .panel-body{padding:0}.magee-pricing-box .pricing-tag{background-color:#f5f5f5;padding:20px;border-bottom:1px solid #ddd;font-size:3em}.pricing-tag .currency{color:#fdd200;font-size:.5em;position:relative;top:-1em}.pricing-tag .price{color:#fdd200}.pricing-tag .unit{font-size:.3em;position:relative;bottom:0;left:.5em}.magee-pricing-box .pricing-list{list-style-type:none;margin:0}.magee-pricing-box .pricing-list li{padding:20px 10px}.magee-pricing-box .panel-footer{padding:20px 10px;background-color:#f5f5f5}.pricing-box-flat{border:none;background-color:#f5f5f5;padding:20px;box-shadow:none}.pricing-box-flat.featured{background-color:#fdd200;color:#fff}.pricing-box-flat.featured .panel-title,.pricing-box-flat.featured .pricing-tag .currency,.pricing-box-flat.featured .pricing-tag .price,.pricing-box-flat.featured .pricing-top-icon{color:#fff}.pricing-box-flat .panel-footer,.pricing-box-flat .panel-heading,.pricing-box-flat .pricing-list li,.pricing-box-flat .pricing-tag{background-color:transparent;border:none;padding:5px}.pricing-box-flat.featured .magee-btn-normal{border:2px solid #fff;background-color:transparent!important}@media (min-width:992px){.standout{margin:-20px;position:relative;z-index:2}.magee-pricing-table.no-margin .magee-pricing-box-wrap+.magee-pricing-box-wrap .magee-pricing-box{border-left:none}.magee-pricing-box-wrap.no-padding{padding:0}}.magee-pricing-box-wrap{text-align:center}.magee-pricing-table.no-margin .pricing-list li+li{border-top:1px solid #ddd}.pricing-box-label .panel-footer,.pricing-box-label .panel-heading,.pricing-box-label .pricing-tag{visibility:hidden}.pricing-box-label{border-left-color:transparent;border-top-color:transparent;border-bottom-color:transparent;box-shadow:none;font-weight:700;border-radius:0!important}.pricing-box-label .pricing-list{padding-right:20px}.magee-person-box{text-align:center;margin:0 auto}.person-vcard .person-name{font-size:18px;margin:20px 0 10px}.person-vcard .person-title{font-size:14px;margin:0 0 10px}.person-vcard .person-title:after{display:block;margin:10px auto;width:80px;height:1px;background-color:#fdd200;content:""}.person-vcard .person-desc{margin:0 0 10px}.person-social{text-align:center;margin:0}.person-social li{display:inline-block;margin:0 5px}.person-social li a{font-size:16px;color:#595959;width:30px;height:30px;border-radius:4px;line-height:28px;display:inline-block;border:0}.person-social li a:hover{background:#fff}.person-social li a:hover{color:#fdd200}.person-social.boxed li a{color:#fff;background-color:#595959}.person-social.boxed li a:hover{color:#fff;background-color:#fdd200}.magee-person-box.person-box-horizontal{margin:0 -15px}.person-box-horizontal .person-vcard .person-name{margin-top:0}.person-box-horizontal .person-social{text-align:left}.person-box-horizontal li{margin:0 10px 0 0}.person-box-horizontal .person-vcard .person-title:after{margin-left:0}.magee-popover{cursor:pointer}.magee-testimonial-box{max-width:100%}.magee-testimonial-box .testimonial-content{margin-bottom:1em;position:relative}.magee-testimonial-box .testimonial-quote{position:relative;padding:10px 0 0 35px}.magee-testimonial-box .testimonial-quote:before{content:"\f10d";display:block;font:normal normal normal 30px/1 FontAwesome;line-height:1;position:absolute;left:0;top:0;opacity:.3}.magee-testimonial-box .testimonial-vcard.style1{display:table}.magee-testimonial-box .testimonial-vcard.style1 .testimonial-author,.magee-testimonial-box .testimonial-vcard.style1 .testimonial-avatar{display:table-cell;vertical-align:middle}.magee-testimonial-box .testimonial-avatar{padding-right:10px}.magee-testimonial-box .testimonial-vcard.style1 img{width:60px;height:60px}.magee-testimonial-box .testimonial-vcard:before{content:""!important}.magee-testimonial-box .testimonial-author .name{margin:0;color:inherit}.magee-testimonial-box .testimonial-vcard.style2 .testimonial-avatar{margin-bottom:1em;padding-right:0}.magee-testimonial-box .testimonial-vcard.style2 img{width:80px;height:80px;display:inline-block}.magee-testimonial-box.testimonial-boxed .testimonial-content{border:1px solid #ddd;background-color:#f5f5f5;padding:1.5em;margin-bottom:2em}.magee-testimonial-box.testimonial-boxed .testimonial-content:before{content:"";display:block;width:0;height:0;border:10px solid transparent;border-top-color:#f5f5f5;position:absolute;bottom:-20px;left:50px;z-index:3}.magee-testimonial-box.testimonial-boxed .testimonial-content:after{content:"";display:block;width:0;height:0;border:11px solid transparent;border-top-color:#ddd;position:absolute;bottom:-23px;left:49px;z-index:2}.magee-testimonial-box.testimonial-boxed .testimonial-vcard.style1{margin-left:25px}.magee-testimonial-box.testimonial-boxed .testimonial-vcard.style2{text-align:center}.magee-testimonial-box.testimonial-boxed.text-center .testimonial-content:before{left:50%;margin-left:-10px}.magee-testimonial-box.testimonial-boxed.text-center .testimonial-content:after{left:50%;margin-left:-11px}.magee-promo-box{display:table;width:100%}.promo-action .image-instead{display:inline;margin-right:.5em}.magee-promo-box.boxed{padding:5px 15px;border:1px solid #eee;background-color:#f5f5f5}@media screen and (min-width:768px){.promo-action,.promo-info{display:table-cell;vertical-align:middle}}.promo-info{padding-right:15px}.magee-progress-box{overflow:hidden}.magee-progress-box .progress{background-color:#eee;margin-bottom:10px;height:30px;border-radius:0;box-shadow:none}.magee-progress-box .progress-bar{padding:0 5px;background-color:#fdd200;overflow:hidden;text-align:left;box-shadow:none;font-weight:700}.magee-progress-box .label{font-size:.9em;background-color:rgba(0,0,0,.3);margin:2px 0}.progress-bar-striped.animated{-webkit-animation-name:progress-bar-striped;animation-name:progress-bar-striped;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes progress-bar-striped{from{background-position:40px 0}to{background-position:0 0}}@-webkit-keyframes progress-bar-striped{from{background-position:40px 0}to{background-position:0 0}}.progress.rounded{border-radius:5px}.progress.rounded .progress-bar{border-radius:5px}.progress-box .progress-sm{height:15px}.magee-counter-box{text-align:center}.magee-counter-box.box-border{border:1px solid #ddd;padding:20px}.magee-counter-box.boxed{padding:20px;border:0 solid #ddd}.magee-counter .counter-top-icon{font-size:72px;color:#fdd200;line-height:1}.magee-counter .counter{font-size:50px;line-height:1em;display:inline-block}.magee-counter .counter:after{display:block;margin:10px auto;width:40px;height:1px;background-color:#fdd200;content:""}.magee-counter h3.counter-bottom_title,.magee-counter h3.counter-title{margin:0!important;font-size:14px}.magee-countdown-wrap{width:600px;max-width:100%}.magee-countdown{list-style-type:none;margin:0 -15px}.magee-countdown .counter-num{font-size:40px}.magee-chart-box{position:relative;display:inline-block;width:200px;height:200px;text-align:center}.chart-title{position:absolute;display:block;vertical-align:middle;width:100%;top:0;left:0;line-height:200px;font-size:40px}.chart-title img{height:80px}.magee-process-steps>ul{list-style-type:none;margin-bottom:0}.magee-process-steps>ul>li{position:relative}@media (min-width:992px){.magee-process-steps>ul>li:before{content:"";position:absolute;display:block;width:100%;height:0;border-bottom:1px dashed #e5e5e5;top:50px;left:50%}.magee-process-steps.box-lg>ul>li:before{top:75px}}.magee-process-steps>ul>li:last-child:before{display:none}.magee-step-box .icon-box{position:relative;z-index:2;background-color:#fff;border-width:3px;border-color:#e5e5e5;color:#aaa}.magee-step-box .icon-box i{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.magee-step-box .icon-box:hover{box-shadow:0 0 3px 5px #e5e5e5}.magee-process-steps.process-steps-vertical>ul>li:before{content:"";position:absolute;display:block;width:0;height:100%;border-right:1px dashed #e5e5e5;left:50px;top:50%}.magee-process-steps.process-steps-vertical.box-lg>ul>li:before{left:75px}.magee-process-steps.process-steps-vertical>ul>li{margin-bottom:60px}.magee-process-steps.process-steps-vertical>ul>li:last-child{margin-bottom:0}.magee-process-steps.process-steps-vertical>ul>li:last-child:before{display:none}.magee-timeline{overflow:hidden;position:relative}.magee-timeline>ul{list-style-type:none;margin-bottom:0;margin-top:0;padding-left:0;margin-left:0}.magee-timeline>ul>li{position:relative;margin:0;padding:0}.timeline-year{color:#fff;background-color:#fdd200;width:64px;height:64px;line-height:64px;margin:0 auto;position:relative;text-align:center}.timeline-year p{text-align:center}.timeline-year:after{content:"";display:block;position:absolute;width:0;height:0;border:5px solid transparent;border-top-color:#fdd200;left:50%;margin-left:-5px;top:100%}@media (min-width:992px){.magee-timeline:before{content:"";position:absolute;display:block;width:10px;height:10px;border-radius:50%;background-color:#fdd200;top:28px;left:0}.magee-timeline>ul>li:before{content:"";position:absolute;display:block;width:100%;height:1px;background-color:#fdd200;top:32px;left:0}.magee-timeline>ul>li:last-child:before{background-image:-moz-linear-gradient(left,#fdd200 0,#fdd200 70%,#fff 100%);background-image:-webkit-gradient(linear,left top,right top,from(#fdd200),color-stop(.7,#fdd200),to(#fff));background-image:-webkit-linear-gradient(left,#fdd200 0,#fdd200 70%,#fff 100%);background-image:-o-linear-gradient(left,#fdd200 0,#fdd200 70%,#fff 100%)}}.modal{z-index:10000}.modal-content{border-radius:0}.magee-modal-trigger{cursor:pointer}.magee-modal-wrapper{display:inline-block;position:fixed;z-index:999;margin:0;padding:0}.magee-modal{position:fixed;top:50%;left:50%;height:auto;z-index:2000;visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translate3d(-50%,-50%,0);-moz-transform:translate3d(-50%,-50%,0);-ms-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.magee-modal-show{visibility:visible}.magee-modal-overlay{position:fixed;width:100%;height:100%;visibility:hidden;top:0;left:0;z-index:1000;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show~.magee-modal-overlay{opacity:1;visibility:visible}.magee-modal-content-wrapper{color:#fff;background:#e74c3c;position:relative;border-radius:3px;margin:0 auto;width:750px}.magee-modal-content-wrapper .magee-modal-title-wrapper{position:relative;margin:0;padding:10px 20px;font-size:2.2em;font-weight:300;background:rgba(0,0,0,.05);border-radius:3px 3px 0 0}.magee-modal-content-wrapper .magee-modal-title-wrapper h3{margin:0;height:30px;line-height:30px;font-size:.55em}.magee-modal-title-wrapper a.magee-modal-close{float:right;text-decoration:none;box-shadow:none;color:#fff!important;font-size:16px;text-align:center;-webkit-transition:.4s opacity;-moz-transition:.4s opacity;-ms-transition:.4s opacity;-o-transition:.4s opacity;transition:.4s opacity}.magee-modal-title-wrapper a.magee-modal-close:hover{opacity:.8;text-decoration:none}.magee-modal-content-wrapper>div{padding:15px 20px;margin:0;font-weight:300;font-size:1.15em}.magee-modal-content-wrapper button{display:block;margin:0 auto;font-size:.8em}.magee-modal-effect-1 .magee-modal-content-wrapper{-webkit-transform:translateX(30%);-moz-transform:translateX(30%);-ms-transform:translateX(30%);transform:translateX(30%);opacity:0;-webkit-transition:all .4s cubic-bezier(.25, .5, .5, .9);-moz-transition:all .4s cubic-bezier(.25, .5, .5, .9);transition:all .4s cubic-bezier(.25, .5, .5, .9)}.magee-modal-show.magee-modal-effect-1 .magee-modal-content-wrapper{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);opacity:1}.magee-modal-effect-2 .magee-modal-content-wrapper{-webkit-transform:translateY(30%);-moz-transform:translateY(30%);-ms-transform:translateY(30%);transform:translateY(30%);opacity:0;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.magee-modal-show.magee-modal-effect-2 .magee-modal-content-wrapper{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.magee-modal-effect-3 .magee-modal-content-wrapper{-webkit-transform:translateX(-30%);-moz-transform:translateX(-30%);-ms-transform:translateX(-30%);transform:translateX(-30%);opacity:0;-webkit-transition:all .4s cubic-bezier(.25, .5, .5, .9);-moz-transition:all .4s cubic-bezier(.25, .5, .5, .9);transition:all .4s cubic-bezier(.25, .5, .5, .9)}.magee-modal-show.magee-modal-effect-3 .magee-modal-content-wrapper{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);opacity:1}.magee-modal-effect-4 .magee-modal-content-wrapper{-webkit-transform:translateY(-30%);-moz-transform:translateY(-30%);-ms-transform:translateY(-30%);transform:translateY(-30%);opacity:0;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.magee-modal-show.magee-modal-effect-4 .magee-modal-content-wrapper{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.magee-modal-effect-5 .magee-modal-content-wrapper{-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);transform:scale(.8);opacity:0;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.magee-modal-show.magee-modal-effect-5 .magee-modal-content-wrapper{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.magee-modal-effect-6.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-6 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateY(-80deg);-moz-transform:rotateY(-80deg);-ms-transform:rotateY(-80deg);transform:rotateY(-80deg);-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s;opacity:0}.magee-modal-show.magee-modal-effect-6 .magee-modal-content-wrapper{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);transform:rotateY(0);opacity:1}.magee-modal-effect-7.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-7 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateX(-80deg);-moz-transform:rotateX(-80deg);-ms-transform:rotateX(-80deg);transform:rotateX(-80deg);-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s;opacity:0}.magee-modal-show.magee-modal-effect-7 .magee-modal-content-wrapper{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);transform:rotateX(0);opacity:1}.magee-modal-effect-8.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-8 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateX(-70deg);-moz-transform:rotateX(-70deg);-ms-transform:rotateX(-70deg);transform:rotateX(-70deg);-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;transform-origin:50% 0;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show.magee-modal-effect-8 .magee-modal-content-wrapper{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);transform:rotateX(0);opacity:1}.magee-modal-effect-9.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-9 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(100px) translateX(-40%) rotateY(90deg);-moz-transform:translateZ(100px) translateX(-40%) rotateY(90deg);-ms-transform:translateZ(100px) translateX(-40%) rotateY(90deg);transform:translateZ(100px) translateX(-40%) rotateY(90deg);-webkit-transform-origin:0 100%;-moz-transform-origin:0 100%;transform-origin:0 100%;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show.magee-modal-effect-9 .magee-modal-content-wrapper{-webkit-transform:translateZ(0) translateX(0) rotateY(0);-moz-transform:translateZ(0) translateX(0) rotateY(0);-ms-transform:translateZ(0) translateX(0) rotateY(0);transform:translateZ(0) translateX(0) rotateY(0);opacity:1}.magee-modal-effect-10.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-10 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateY(100%) rotateX(90deg);-moz-transform:translateY(100%) rotateX(90deg);-ms-transform:translateY(100%) rotateX(90deg);transform:translateY(100%) rotateX(90deg);-webkit-transform-origin:0 100%;-moz-transform-origin:0 100%;transform-origin:0 100%;opacity:0;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;transition:all .3s ease-out}.magee-modal-show.magee-modal-effect-10 .magee-modal-content-wrapper{-webkit-transform:translateY(0) rotateX(0);-moz-transform:translateY(0) rotateX(0);-ms-transform:translateY(0) rotateX(0);transform:translateY(0) rotateX(0);opacity:1}.magee-modal-effect-11.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-11 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(-3000px) rotateY(90deg);-moz-transform:translateZ(-3000px) rotateY(90deg);-ms-transform:translateZ(-3000px) rotateY(90deg);transform:translateZ(-3000px) rotateY(90deg);opacity:0}.magee-modal-show.magee-modal-effect-11 .magee-modal-content-wrapper{-webkit-animation:slit .7s forwards ease-out;-moz-animation:slit .7s forwards ease-out;animation:slit .7s forwards ease-out}@-webkit-keyframes slit{50%{-webkit-transform:translateZ(-250px) rotateY(89deg);opacity:.5;-webkit-animation-timing-function:ease-out}100%{-webkit-transform:translateZ(0) rotateY(0);opacity:1}}@-moz-keyframes slit{50%{-moz-transform:translateZ(-250px) rotateY(89deg);opacity:.5;-moz-animation-timing-function:ease-out}100%{-moz-transform:translateZ(0) rotateY(0);opacity:1}}@keyframes slit{50%{transform:translateZ(-250px) rotateY(89deg);opacity:1;animation-timing-function:ease-in}100%{transform:translateZ(0) rotateY(0);opacity:1}}.magee-modal-effect-12 .magee-modal-content-wrapper{-webkit-transform:scale(0) rotate(720deg);-moz-transform:scale(0) rotate(720deg);-ms-transform:scale(0) rotate(720deg);transform:scale(0) rotate(720deg);opacity:0}.magee-modal-effect-12 .magee-modal-content-wrapper,.magee-modal-show.magee-modal-effect-12~.magee-modal-overlay{-webkit-transition:all .5s;-moz-transition:all .5s;transition:all .5s}.magee-modal-show.magee-modal-effect-12 .magee-modal-content-wrapper{-webkit-transform:scale(1) rotate(0);-moz-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.magee-modal-effect-13.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-13 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(600px) rotateX(20deg);-moz-transform:translateZ(600px) rotateX(20deg);-ms-transform:translateZ(600px) rotateX(20deg);transform:translateZ(600px) rotateX(20deg);opacity:0}.magee-modal-show.magee-modal-effect-13 .magee-modal-content-wrapper{-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in;-webkit-transform:translateZ(0) rotateX(0);-moz-transform:translateZ(0) rotateX(0);-ms-transform:translateZ(0) rotateX(0);transform:translateZ(0) rotateX(0);opacity:1}.magee-modal-effect-14.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-14 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translate(30%) translateZ(600px) rotate(10deg);-moz-transform:translate(30%) translateZ(600px) rotate(10deg);-ms-transform:translate(30%) translateZ(600px) rotate(10deg);transform:translate(30%) translateZ(600px) rotate(10deg);opacity:0}.magee-modal-show.magee-modal-effect-14 .magee-modal-content-wrapper{-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in;-webkit-transform:translate(0) translateZ(0) rotate(0);-moz-transform:translate(0) translateZ(0) rotate(0);-ms-transform:translate(0) translateZ(0) rotate(0);transform:translate(0) translateZ(0) rotate(0);opacity:1}.magee-modal-effect-15 .magee-modal-content-wrapper{-webkit-transform:scale(2);-moz-transform:scale(2);-ms-transform:scale(2);transform:scale(2);opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show.magee-modal-effect-15 .magee-modal-content-wrapper{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.popover{border-radius:0}.tooltip-inner{border-radius:0}.magee-expand{cursor:pointer}.magee-icon-list{margin:0}.magee-icon-list li{list-style-type:none;padding-bottom:.8em;position:relative;padding-left:2em}.magee-icon-list.icon-list-border li{padding-top:.8em;border-bottom:1px solid #e5e5e5}.magee-icon-list.icon-list-border li:last-child{padding-top:.8em;border-bottom:0!important}.magee-icon-list li i{text-align:center;width:1.6em;height:1.6em;line-height:1.6em;position:absolute;top:0;left:0}.icon-list-border li i{top:.8em}.icon-list-border li img{top:.8em}.icon-list-primary li i{color:#fdd200}.icon-list-circle li i{background-color:#ccc;color:#fff;border-radius:50%}.icon-list-primary.icon-list-circle li i{background-color:#fdd200;color:#fff}.divider{margin-top:30px;margin-bottom:30px;position:relative}.divider-inner{width:100%;max-width:100%!important;display:table;min-height:1px}.divider-border .divider-inner{border:0 solid #e5e5e5;border-bottom-width:1px;height:1px}.divider-border.dashed .divider-inner{border-style:dashed}.divider-border.dotted .divider-inner{border-style:dotted}.divider-border.double-line .divider-inner{height:8px;border-top-width:1px;border-bottom-width:1px}.divider-shadow .divider-inner{position:relative;background:radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0);background:-webkit-radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0);background:-moz-radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0);background:-o-radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0)}.divider-shadow .divider-inner:after{display:block;height:5px;width:100%;content:'';background:-webkit-radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 65%);background:-moz-radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 80%);background:-o-radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 80%);background:radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 65%)}.divider-border.narrow{width:100px}.divider-image .divider-inner{background-image:url(../images/divider-2.png);background-position:center center;background-repeat:repeat-x;height:9px}.divider-border .divider-inner.primary{border-color:#fdd200}.divider-border .divider-inner.light{border-color:#fff}.divider-border .divider-inner.dark{border-color:#222}.divider.center{margin-left:auto;margin-right:auto;text-align:center}.divider-inner-item{display:table-cell;vertical-align:middle}.divider-inner-icon{width:40px;height:40px}.divider-inner-back-to-top{width:1px;padding-left:10px}@media screen and (min-width:640px){.divider-inner-title{width:50px;white-space:nowrap}.divider-title-left .divider-inner-title{padding-right:10px}.divider-title-center .divider-inner-title{padding:0 10px}.divider-title-right .divider-inner-title{padding-left:10px}}.ss-style-dots::before{bottom:20px;width:14px;height:14px;border-radius:50%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);background:#2072a7;box-shadow:30px 0 #2072a7,-30px 0 #2072a7}.ss-style-doubleline::before{bottom:30px;width:140px;height:2px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);background:#2072a7;box-shadow:0 30px 0 #2072a7}.ss-style-cross{padding-bottom:15em}.ss-style-cross::after,.ss-style-cross::before{background:#2072a7;bottom:70px;width:200px;height:2px;left:50%;-webkit-transform-origin:50% 50%;transform-origin:50% 50%}.ss-style-cross::before{-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg)}.ss-style-cross::after{-webkit-transform:translateX(-50%) rotate(-45deg);transform:translateX(-50%) rotate(-45deg)}.magee-section-separator{position:absolute;width:100%;left:0;background-color:inherit}.magee-section-separator::after,.magee-section-separator::before{position:absolute;content:'';pointer-events:none}.magee-section-separator svg{position:absolute;z-index:2}.ss-triangle-up{bottom:100%}.ss-triangle-down{top:100%}.ss-triangle-down::after,.ss-triangle-up::before{left:50%;width:40px;height:40px;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg);background-color:inherit}.ss-triangle-up::before{top:-20px}.ss-triangle-down::after{bottom:-20px}.ss-doublediagonal{z-index:1;padding-top:6em;margin-bottom:-6em;background-color:inherit;bottom:100%}.ss-doublediagonal::after,.ss-doublediagonal::before{top:0;z-index:-1;width:100%;height:75%;background:inherit;-webkit-transform:rotate(-2deg);transform:rotate(-2deg);-webkit-transform-origin:0 0;transform-origin:0 0}.ss-doublediagonal::before{height:50%;background:rgba(0,0,0,.3);-webkit-transform:rotate(-3deg);transform:rotate(-3deg);-webkit-transform-origin:3% 0;transform-origin:3% 0}.ss-halfcircle-up{bottom:100%}.ss-halfcircle-down{top:100%}.ss-halfcircle-down::after,.ss-halfcircle-up::before{left:50%;z-index:2;width:100px;height:100px;border-radius:50%;background-color:inherit;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.ss-halfcircle-up::before{top:-50px}.ss-halfcircle-down::after{bottom:-50px}.ss-bigtriangle-up{bottom:100%}.ss-bigtriangle-down{top:100%}.ss-bigtriangle-down svg,.ss-bigtriangle-up svg{pointer-events:none;left:0}.ss-bigtriangle-up svg{bottom:0}.ss-bigtriangle-down svg{top:0}.ss-bigtriangle-down svg path,.ss-bigtriangle-up svg path{fill:#3498db;stroke:#3498db;stroke-width:2}.ss-bighalfcircle-up{bottom:100%}.ss-bighalfcircle-down{top:100%}.ss-bighalfcircle-up svg{left:0;bottom:0}.ss-bighalfcircle-down svg{left:0;top:0}.ss-bighalfcircle svg path,.ss-bighalfcircle-up svg path{fill:#3498db;stroke:#3498db}.ss-curl-up{bottom:100%}.ss-curl-down{top:100%}.ss-curl-up svg{left:0;bottom:0}.ss-curl-down svg{left:0;top:0}.ss-curl-down svg path,.ss-curl-up svg path{fill:#3498db;stroke:#3498db}.ss-multitriangles-up{bottom:100%}.ss-multitriangles-down{top:100%}.ss-multitriangles-down::after,.ss-multitriangles-up::before{left:50%;width:50px;height:50px;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg)}.ss-multitriangles-up::before{top:-25px;background:inherit;box-shadow:-50px 50px 0 #3498db,50px -50px 0 #3498db}.ss-multitriangles-down::after{bottom:-25px;z-index:10;background:inherit;box-shadow:-50px 50px 0 #3498db,50px -50px 0 #3498db}.ss-roundedsplit-up{padding-top:2em;bottom:100%}.ss-roundedsplit-up::after,.ss-roundedsplit-up::before{top:-70px;left:0;z-index:10;width:50%;height:70px;background:inherit}.ss-roundedsplit-up::before{border-radius:0 80px 0 0}.ss-roundedsplit-up::after{left:50%;border-radius:80px 0 0 0}.ss-roundedcorners-down{top:100%}.ss-roundedcorners-down::before{top:100%;left:0;z-index:10;width:100%;height:60px;border-radius:0 0 60px 60px;background:inherit}.ss-invertedrounded{height:90px;border-radius:0 0 0 90px;top:100%;z-index:2}.ss-invertedrounded::before{top:90px;width:100%;height:90px;background-color:inherit;z-index:2}.ss-invertedrounded::after{top:90px;width:100%;background-color:#3498db;height:90px;border-radius:0 90px 0 0;z-index:3}.ss-boxes-up{bottom:100%}.ss-boxes-down{top:100%}.ss-boxes-down:after,.ss-boxes-up::before{left:0;width:100%;height:50px;background-image:-webkit-gradient(linear,100% 0,0 100%,color-stop(.5,transparent),color-stop(.5,#2980b9));background-image:linear-gradient(to right,transparent 50%,#2980b9 50%);-webkit-background-size:130px 100%;background-size:130px 100%}.ss-boxes-up::before{bottom:0}.ss-boxes-down::after{z-index:2;top:0}.ss-zigzag-up{bottom:100%}.ss-zigzag-down{top:100%}.ss-zigzag-down::after,.ss-zigzag-up::before{right:0;left:0;z-index:3;display:block;height:90px;background-size:50px 100%}.ss-zigzag-up::before{top:-90px;background-image:-webkit-gradient(linear,0 0,300% 100%,color-stop(.25,transparent),color-stop(.25,#3498db));background-image:linear-gradient(315deg,#3498db 25%,transparent 25%),linear-gradient(45deg,#3498db 25%,transparent 25%);background-position:50%}.ss-zigzag-down::after{top:100%;background-image:-webkit-gradient(linear,0 0,300% 100%,color-stop(.25,#3498db),color-stop(.25,transparent));background-image:linear-gradient(135deg,#3498db 25%,transparent 25%),linear-gradient(225deg,#3498db 25%,transparent 25%);background-position:50%}.ss-foldedcorner{top:100%;height:100px;background-color:inherit;width:calc(100% - 100px);z-index:2}.ss-foldedcorner::after,.ss-foldedcorner::before{bottom:0;width:100px;height:100px}.ss-foldedcorner::before{right:-100px;background-image:-webkit-linear-gradient(top left,#fff 50%,rgba(0,0,0,0) 50%);background-image:linear-gradient(315deg,rgba(0,0,0,0) 46%,rgba(0,0,0,.3) 50%,#fff 50%)}.ss-foldedcorner::after{right:0;background-image:-webkit-linear-gradient(top left,transparent 50%,rgba(0,0,0,.1) 50%);background-image:linear-gradient(315deg,rgba(0,0,0,.1) 50%,transparent 50%)}.ss-stamp-up{bottom:100%}.ss-stamp-down{top:100%}.ss-stamp-up svg{left:0;bottom:0}.ss-stamp-down svg{left:0;top:0}.ss-curl-down svg path,.ss-curl-up svg path{fill:#3498db;stroke:#3498db}.ss-clouds-up{bottom:100%}.ss-clouds-down{top:100%}.ss-clouds-up svg{left:0;bottom:0}.ss-clouds-down svg{left:0;top:0}.ss-clouds-down svg path,.ss-clouds-up svg path{fill:#3498db;stroke:#3498db}.img-box{overflow:hidden;position:relative;display:inline-block;margin-bottom:-8px;max-width:100%}.img-box .img-overlay{position:absolute;top:0;left:0;width:100%;height:100%;transition:all .1s ease;-webkit-transition:all .1s ease}.img-box .img-overlay.primary{background-color:rgba(253,210,0,.7)}.img-box .img-overlay.dark{background-color:rgba(0,0,0,.35)}.img-box .img-overlay.light{background-color:rgba(255,255,255,.35)}.img-box:hover .img-overlay{transition:all .1s ease;-webkit-transition:all .5s ease}.img-overlay-container{display:table;height:100%;width:100%}.img-box .img-overlay-content{display:table-cell;padding:5px;position:relative}.img-overlay-total-link{position:absolute;z-index:2;width:100%;height:100%;left:0;top:0}.img-overlay-content .entry-category{position:relative;z-index:3}.img-box.figcaption-middle .img-overlay-content{vertical-align:middle;text-align:center}.img-box.figcaption-top .img-overlay-content{vertical-align:top}.img-box.figcaption-bottom .img-overlay-content{vertical-align:bottom}.img-box.fade-in .img-overlay{opacity:0}.img-box.fade-in:hover .img-overlay{opacity:1}.img-box.from-left .img-overlay{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.img-box.from-left:hover .img-overlay{-webkit-transform:translateX(0);transform:translateX(0)}.img-box.from-right .img-overlay{-webkit-transform:translateX(100%);transform:translateX(100%)}.img-box.from-right:hover .img-overlay{-webkit-transform:translateX(0);transform:translateX(0)}.img-box.from-top .img-overlay{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.img-box.from-top:hover .img-overlay{-webkit-transform:translateY(0);transform:translateY(0)}.img-box.from-bottom .img-overlay{-webkit-transform:translateY(100%);transform:translateY(100%)}.img-box.from-bottom:hover .img-overlay{-webkit-transform:translateY(0);transform:translateY(0)}.img-box img{transition:all .1s ease;-webkit-transition:all .5s ease}.img-box:hover img{transition:all .1s ease;-webkit-transition:all .5s ease}.img-box.img-zoom-in:hover img{-webkit-transform:scale(1.1);transform:scale(1.1)}.img-box.img-zoom-out img{-webkit-transform:scale(1.1);transform:scale(1.1)}.img-box.img-zoom-out:hover img{-webkit-transform:scale(1);transform:scale(1)}.img-box.img-scroll-left img,.img-box.img-scroll-right img{width:calc(105%);max-width:none}.img-box.img-scroll-left img{-webkit-transform:translateX(0);transform:translateX(0)}.img-box.img-scroll-left:hover img{-webkit-transform:translateX(-5%);transform:translateX(-5%)}.img-box.img-scroll-right img{-webkit-transform:translateX(-5%);transform:translateX(-5%)}.img-box.img-scroll-right:hover img{-webkit-transform:translateX(0);transform:translateX(0)}.img-box .img-overlay-content i{color:#fff;font-size:30px}.img-box .img-overlay-icons i{color:#3c3c3c;margin:0 10px;width:48px;height:48px;font-size:24px;line-height:48px;background-color:#fdd200}.img-box h3.img-overlay-title{color:#fff}.img-frame{overflow:hidden}.img-frame.rounded{border-radius:5px}.img-frame.circle{border-radius:50%}.img-frame.border{border:6px solid #f5f5f5}.img-frame.shadow{box-shadow:2px 2px 5px 0 #aaa}.magee-image-banner .img-box .img-overlay-content{color:#fff}.magee-image-banner .img-box .img-overlay-content{padding:15px}.magee-image-banner .img-box:hover .img-overlay{background-color:rgba(0,0,0,.35)}.multi-carousel{padding:0;position:relative}.multi-carousel-inner{overflow:hidden}ul.multi-carousel-holder{overflow:hidden;margin-bottom:0}.multi-carousel-holder li.multi-carousel-item{list-style-type:none;float:left;margin:0;padding:0 15px}.carousel-caption{top:10%;bottom:auto}.multi-carousel-nav .multi-carousel-nav-next,.multi-carousel-nav .multi-carousel-nav-prev{width:30px;height:30px;font:normal normal normal 30px/30px FontAwesome;display:inline-block;text-align:center;color:#777;opacity:.8;background-color:transparent}.multi-carousel-nav.style1 .multi-carousel-nav-next,.multi-carousel-nav.style1 .multi-carousel-nav-prev{position:absolute;top:50%;margin-top:-15px}.multi-carousel-nav.nav-border .multi-carousel-nav-next,.multi-carousel-nav.nav-border .multi-carousel-nav-prev{border:1px solid #777;font:normal normal normal 14px/30px FontAwesome}.multi-carousel-nav.light .multi-carousel-nav-next,.multi-carousel-nav.light .multi-carousel-nav-prev{border-color:#fff;color:#fff}.multi-carousel-nav.nav-bg .multi-carousel-nav-next,.multi-carousel-nav.nav-bg .multi-carousel-nav-prev{color:#fff;background-color:rgba(0,0,0,.8);font:normal normal normal 14px/30px FontAwesome}.multi-carousel-nav.nav-square .multi-carousel-nav-next,.multi-carousel-nav.nav-square .multi-carousel-nav-prev{border-radius:0}.multi-carousel-nav.nav-rounded .multi-carousel-nav-next,.multi-carousel-nav.nav-rounded .multi-carousel-nav-prev{border-radius:5px}.multi-carousel-nav.nav-circle .multi-carousel-nav-next,.multi-carousel-nav.nav-circle .multi-carousel-nav-prev{border-radius:50%}.multi-carousel-nav.nav-lg .multi-carousel-nav-next,.multi-carousel-nav.nav-lg .multi-carousel-nav-prev{width:50px;height:50px;font:normal normal normal 50px/50px FontAwesome}.multi-carousel-nav.nav-lg.nav-bg .multi-carousel-nav-next,.multi-carousel-nav.nav-lg.nav-bg .multi-carousel-nav-prev,.multi-carousel-nav.nav-lg.nav-border .multi-carousel-nav-next,.multi-carousel-nav.nav-lg.nav-border .multi-carousel-nav-prev{font:normal normal normal 24px/50px FontAwesome}.multi-carousel-nav.nav-xl .multi-carousel-nav-next,.multi-carousel-nav.nav-xl .multi-carousel-nav-prev{width:70px;height:70px;font:normal normal normal 70px/70px FontAwesome}.multi-carousel-nav.nav-xl.nav-bg .multi-carousel-nav-next,.multi-carousel-nav.nav-xl.nav-bg .multi-carousel-nav-prev,.multi-carousel-nav.nav-xl.nav-border .multi-carousel-nav-next,.multi-carousel-nav.nav-xl.nav-border .multi-carousel-nav-prev{font:normal normal normal 34px/70px FontAwesome}.multi-carousel-nav .multi-carousel-nav-next:hover,.multi-carousel-nav .multi-carousel-nav-prev:hover{opacity:1}.multi-carousel-nav .multi-carousel-nav-prev:before{content:"\f104"}.multi-carousel-nav .multi-carousel-nav-next:before{content:"\f105"}.multi-carousel-nav.style1 .multi-carousel-nav-prev{left:0}.multi-carousel-nav.style1 .multi-carousel-nav-next{right:0}.multi-carousel-nav.style2{margin:10px 0 0;text-align:center}.multi-carousel-nav.style2 .multi-carousel-nav-next,.multi-carousel-nav.style2 .multi-carousel-nav-prev{margin:0 2px}.multi-carousel-nav.style3{margin:0 0 10px;border-bottom:1px dotted #ddd;width:100%;overflow:hidden;padding-bottom:10px;text-align:right}.multi-carousel-nav.style3 .multi-carousel-nav-next,.multi-carousel-nav.style3 .multi-carousel-nav-prev{margin:0 2px}ol.multi-carousel-indicators{margin-bottom:0;bottom:0}.multi-carousel-indicators.style1 li{border-color:#ddd}.carousel-indicators .active{background-color:#ddd}.multi-carousel-nav-next,.multi-carousel-nav-prev{z-index:9}.magee-carousel .owl-nav{display:none}.magee-carousel .owl-controls{position:relative;text-align:center;height:auto;margin-top:0;display:none}.magee-carousel .owl-controls.style1,.magee-carousel .owl-controls.style2,.magee-carousel .owl-controls.style3,.magee-carousel .owl-controls.style4{display:block}.magee-carousel .owl-controls .owl-dot{display:inline-block}.magee-carousel .owl-controls .owl-dot span{display:block;width:10px;height:10px;margin:25px 5px 0;opacity:.4;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;background-color:#777;overflow:hidden}.magee-carousel .owl-controls .owl-dot.active span,.magee-carousel .owl-controls.clickable .owl-page:hover span{opacity:1}.magee-carousel .owl-controls.style2 .owl-dot span{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;width:8px;height:8px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.magee-carousel .owl-controls.style3 .owl-dot span{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:transparent;border:1px solid #777;width:8px;height:8px}.magee-carousel .owl-controls.clickable.style3 .owl-page:hover span,.magee-carousel .owl-controls.style3 .owl-dot.active span{opacity:1;background-color:#777}.magee-carousel .owl-controls.style4 .owl-dot span{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:transparent;border:1px solid #777;width:15px;height:5px;margin:25px 3px 0;border-radius:10px}.magee-carousel .owl-controls.clickable.style4 .owl-page:hover span,.magee-carousel .owl-controls.style4 .owl-dot.active span{opacity:1;background-color:#777}.portfolio-box figcaption{margin-bottom:10px}.portfolio-box figcaption h3{margin:0;font-size:18px;padding:20px 0 10px}.portfolio-box figcaption ul{display:inline-block;margin-left:0;margin-bottom:10px}.portfolio-box figcaption li{list-style-type:none;float:left}.portfolio-box figcaption li+li::before{content:"\, "}.portfolio-img-box{position:relative;background-color:#fdd200}.portfolio-info-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;opacity:0}.portfolio-img-box:hover .portfolio-info-box{z-index:9;opacity:1}.portfolio-img-box:hover img{opacity:.15;transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s}.portfolio-img-box .portfolio-icon-box{position:absolute;top:50%;left:0;margin-top:-25px;width:100%;text-align:center;transform:translateY(-80px);-webkit-transform:translateY(-80px);-o-transform:translateY(-80px);transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s}.portfolio-img-box:hover .portfolio-icon-box{transform:translateY(0);-webkit-transform:translateY(0);-o-transform:translateY(0);transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s}.portfolio-icon-box a{display:inline-block;width:50px;height:50px;border-radius:25px;margin:0 20px;background-color:#fff;font-size:20px;line-height:50px}.portfolio-list-wrap{position:relative;margin:0}.portfolio-list-items{overflow:hidden;margin:0 -15px}.portfolio-box-wrap{float:left;padding:0 15px 15px;margin-bottom:30px}.portfolio-carousel .portfolio-box-wrap{padding-bottom:0}.portfolio-list-filter .portfolio-box-wrap{display:none}.portfolio-list-wrap.full-width .portfolio-list-items{margin:0}.portfolio-list-wrap.full-width .portfolio-box-wrap{padding:0;margin-bottom:0}.portfolio-box .feature-img-box{margin-bottom:0}.portfolio-box .entry-header{margin:0;padding-bottom:0;padding-top:10px}.portfolio-box .entry-title{margin:20px 0 0}.portfolio-box .entry-meta{margin:10px 0 0}.portfolio-box .entry-summary{margin:5px 0 0}.magee-blog-list-wrap .entry-box-wrap .entry-header a h4{color:#666;margin:0 0 10px}.magee-blog-list-wrap .entry-box-wrap .entry-header a:hover h4{color:#fdd200}.shortcode-blog-list-wrap .post-pagination-decoration{height:auto;position:static;background-color:transparent}.shortcode-blog-list-wrap .post-pagination-decoration li{display:inline;padding:5px}.blog-timeline-icon{font-size:60px;color:#ccc}.blog-timeline-inner{position:relative}.blog-timeline-line{position:absolute;top:0;left:30px;margin-left:-1px;height:100%;border-left:1px solid #e5e5e5;border-right:1px solid #e5e5e5}.blog-list-wrap.blog-timeline .entry-box-wrap{width:100%;position:relative}.blog-list-wrap.blog-timeline .entry-box-wrap:after{content:"";position:absolute;width:10px;height:10px;border-radius:50%;background-color:#e5e5e5;top:55px;left:25px}.blog-list-wrap.blog-timeline .entry-box{border:1px solid #ccc;padding:1px;background-color:#fff;position:relative;box-shadow:1px 1px 5px 0 rgba(0,0,0,.1);margin-bottom:50px}.blog-list-wrap.blog-timeline .entry-box:before{content:"";position:absolute;width:0;height:0;border:10px solid transparent;top:50px}.blog-list-wrap.blog-timeline .entry-box:before{border-right-color:#ccc;left:0;margin-left:-21px}.blog-list-wrap.blog-timeline .entry-box:after{content:"";position:absolute;width:0;height:0;border:9px solid transparent;top:51px}.blog-list-wrap.blog-timeline .entry-box:after{border-right-color:#fff;left:0;margin-left:-18px}.blog-list-wrap.blog-timeline .entry-main{padding:10px 20px}.blog-timeline-loading{margin:20px 0}.magee-blog .entry-meta li{list-style:none}.magee-blog .entry-box-wrap{padding-bottom:15px}.magee-blog .entry-title{margin:0 0 10px}.magee-blog .entry-header{border-bottom:none;margin-bottom:0;padding-bottom:10px;padding-top:10px;margin-top:0}.magee-blog a{text-decoration:none}.magee-blog .entry-meta{font-size:12px;text-transform:uppercase;margin:0;padding:10px 0}.magee-blog .entry-meta li{list-style-type:none;display:inline-block;margin-right:10px}.magee-blog .feature-img-box{padding-bottom:15px}.magee-blog .feature-img-box img{max-width:100%}.magee-blog .entry-meta li.entry-comments{margin-right:0}.magee-blog .entry-meta i{margin-right:5px}.magee-blog .entry-meta a{color:#888}.magee-blog .entry-meta a:hover{color:#fdd200}.magee-blog .entry-footer{margin:20px 0;overflow:hidden}.magee-blog .entry-tags{margin:10px 0}.magee-blog .entry-share{margin:10px 0}.magee-blog .entry-share li,.magee-blog .entry-tags li{display:inline-block;list-style-type:none}.magee-blog .entry-share li a,.magee-blog .entry-tags li a{display:block;padding:0 10px;border:1px solid #a0a0a0;font-size:.9em;line-height:22px}.magee-blog .entry-tags.no-border li{margin-right:10px}.magee-blog .entry-share.no-border li{margin-left:10px}.magee-blog .entry-share.no-border li a,.magee-blog .entry-tags.no-border li a{border:none;padding:0}.magee-blog .entry-footer li a:hover{border-color:#fdd200}@media screen and (min-width:768px){.blog-timeline-icon{text-align:center}.blog-timeline-line{left:50%}.blog-list-wrap.blog-timeline .entry-box-wrap{width:50%}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-left{float:left;padding-right:10%}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-left:after{right:0;margin-right:-5px;left:auto}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-right{float:right;padding-left:10%}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-right:after{left:0;margin-left:-5px}.blog-list-wrap.blog-timeline .timeline-left .entry-box:before{border-left-color:#ccc;border-right-color:transparent;left:auto;right:0;margin-right:-21px;margin-left:0}.blog-list-wrap.blog-timeline .timeline-left .entry-box:after{border-left-color:#fff;border-right-color:transparent;left:auto;right:0;margin-right:-18px}}.clients img{opacity:.6}.clients img:hover{opacity:1}.magee-contact-form .row{margin:0 -5px}.magee-contact-form label{padding-left:0}.magee-contact-form .checkbox label{padding-left:30px}.magee-contact-form .checkbox input[type=checkbox]{margin-left:-30px}.magee-contact-form [class*=col-]{padding:0 5px}.magee-contact-form .input-group-addon{padding:10px}.magee-contact-form .form-control{padding:20px;margin-bottom:0}.magee-contact-form .form-group,.magee-shortcode .magee-contact-form .checkbox{margin-bottom:15px}.magee-contact-form .input-group .form-control{margin-bottom:0}.magee-contact-form .checkbox,.magee-contact-form .radio{margin:0}.magee-contact-form .input-group-addon:first-child{border-radius:0}.magee-contact-form input:focus,.magee-contact-form textarea:focus{border-color:inherit}.magee-contact-form input::-webkit-input-placeholder,.magee-contact-form textarea::-webkit-input-placeholder{color:inherit;opacity:.8}.magee-contact-form input:-moz-placeholder,.magee-contact-form textarea:-moz-placeholder{color:inherit;opacity:.8}.magee-contact-form.contact-form-custom input:focus,.magee-contact-form.contact-form-custom textarea:focus{box-shadow:0 0 5px 1px rgba(0,0,0,.1)}.magee-contact-form.contact-form-line .form-control{padding:19px;background-color:transparent;border-width:2px}.magee-contact-form.contact-form-bg input[type=submit],.magee-contact-form.contact-form-line input[type=submit]{width:100%}.magee-contact-form.contact-form-line.dark{color:#222}.magee-contact-form.contact-form-line.light{color:#fff}.magee-contact-form.contact-form-line.dark .form-control{border-color:#222;color:#222}.magee-contact-form.contact-form-line.light .form-control{border-color:#fff;color:#fff}.magee-contact-form.contact-form-line input:focus,.magee-contact-form.contact-form-line textarea:focus{border-color:inherit}.magee-contact-form.contact-form-line.dark input:focus,.magee-contact-form.contact-form-line.dark textarea:focus{border-color:inherit;background-color:rgba(0,0,0,.1)}.magee-contact-form.contact-form-line.light input:focus,.magee-contact-form.contact-form-line.light textarea:focus{border-color:inherit;background-color:rgba(255,255,255,.1)}.magee-contact-form.contact-form-bg .form-control{border:none;padding:21px}.magee-contact-form.contact-form-bg.dark .form-control{background-color:#222;color:#fff}.magee-contact-form.contact-form-bg.light .form-control{background-color:#fff;color:#222}.magee-contact-form input.form-control{display:block;padding:0 20px!important;height:42px}.notice-success{color:green}.notice-error{color:red}.back-to-top{position:fixed;right:10px;bottom:10px;width:48px;height:48px;font:normal normal normal 20px/48px FontAwesome;text-align:center;color:#fff;background-color:#aaa;opacity:.5}.back-to-top:hover{color:#fff;opacity:.8}.magee-flipbox-wrap{position:relative;-webkit-perspective:2000px;-moz-perspective:2000px;-ms-perspective:2000px;perspective:2000px;width:100%}.magee-flipbox{position:relative;width:100%;height:100%;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:all .5s cubic-bezier(.645,.045,.355,1);-moz-transition:all .5s cubic-bezier(.645,.045,.355,1);-ms-transition:all .5s cubic-bezier(.645,.045,.355,1);-o-transition:all .5s cubic-bezier(.645,.045,.355,1);transition:all .5s cubic-bezier(.645,.045,.355,1)}.flipbox-back,.flipbox-front{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:all .5s cubic-bezier(.645,.045,.355,1);-moz-transition:all .5s cubic-bezier(.645,.045,.355,1);-ms-transition:all .5s cubic-bezier(.645,.045,.355,1);-o-transition:all .5s cubic-bezier(.645,.045,.355,1);transition:all .5s cubic-bezier(.645,.045,.355,1);-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d;position:absolute;left:0;top:0;height:100%;min-height:100%;width:100%;display:table;table-layout:fixed}.magee-flipbox-wrap.horizontal .flipbox-front{-webkit-transform:rotateY(0);transform:rotateY(0);z-index:2}.magee-flipbox-wrap.horizontal:hover .flipbox-front{-webkit-transform:rotateY(180deg);transform:rotateY(180deg);visibility:hidden}.magee-flipbox-wrap.horizontal .flipbox-back{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.magee-flipbox-wrap.horizontal:hover .flipbox-back{-webkit-transform:rotateY(0);transform:rotateY(0);z-index:3}.magee-flipbox-wrap.horizontal .horizontal-touchstart-front{-webkit-transform:rotateY(180deg);transform:rotateY(180deg);visibility:hidden}.magee-flipbox-wrap.horizontal .horizontal-touchstart-back{-webkit-transform:rotateY(0);transform:rotateY(0);z-index:3}.magee-flipbox-wrap.horizontal .horizontal-touchend-front{-webkit-transform:rotateY(0)!important;transform:rotateY(0)!important;visibility:visible!important}.magee-flipbox-wrap.horizontal .horizontal-touchend-back{-webkit-transform:rotateY(-180deg)!important;transform:rotateY(-180deg)!important}.magee-flipbox-wrap.vertical .flipbox-front{-webkit-transform:rotateX(0);transform:rotateX(0);z-index:2}.magee-flipbox-wrap.vertical:hover .flipbox-front{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg);visibility:hidden}.magee-flipbox-wrap.vertical .flipbox-back{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.magee-flipbox-wrap.vertical:hover .flipbox-back{-webkit-transform:rotateX(0);transform:rotateX(0);z-index:3}.magee-flipbox-wrap.vertical .vertical-touchstart-front{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg);visibility:hidden}.magee-flipbox-wrap.vertical .vertical-touchstart-back{-webkit-transform:rotateX(0);transform:rotateX(0);z-index:3}.magee-flipbox-wrap.vertical .vertical-touchend-front{-webkit-transform:rotateX(0)!important;transform:rotateX(0)!important;visibility:visible!important}.magee-flipbox-wrap.vertical .vertical-touchend-back{-webkit-transform:rotateX(180deg)!important;transform:rotateX(180deg)!important}.flipbox-content{text-align:center;vertical-align:middle;display:table-cell;width:100%;padding:15px}.magee-flipbox-wrap.slide-left:hover .flipbox-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-left .flipbox-back{-webkit-transform:translateX(-50%);transform:translateX(-50%);opacity:0}.magee-flipbox-wrap.slide-left:hover .flipbox-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-left .slide-left-touchstart-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-left .slide-left-touchstart-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-left .slide-left-touchend-front{-webkit-transform:translateX(0)!important;transform:translateX(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-left .slide-left-touchend-back{-webkit-transform:translateX(-50%)!important;transform:translateX(-50%)!important;opacity:0!important}.magee-flipbox-wrap.slide-right:hover .flipbox-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-right .flipbox-back{-webkit-transform:translateX(50%);transform:translateX(50%);opacity:0}.magee-flipbox-wrap.slide-right:hover .flipbox-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-right .slide-right-touchstart-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-right .slide-right-touchstart-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-right .slide-right-touchend-front{-webkit-transform:translateX(0)!important;transform:translateX(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-right .slide-right-touchend-back{-webkit-transform:translateX(10%)!important;transform:translateX(10%)!important;opacity:0!important}.magee-flipbox-wrap.slide-top:hover .flipbox-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-top .flipbox-back{-webkit-transform:translateY(-50%);transform:translateY(-50%);opacity:0}.magee-flipbox-wrap.slide-top:hover .flipbox-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-top .slide-top-touchstart-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-top .slide-top-touchstart-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-top .slide-top-touchend-front{-webkit-transform:translateY(0)!important;transform:translateY(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-top .slide-top-touchend-back{-webkit-transform:translateY(-50%)!important;transform:translateY(-50%)!important;opacity:0!important}.magee-flipbox-wrap.slide-bottom:hover .flipbox-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-bottom .flipbox-back{-webkit-transform:translateY(50%);transform:translateY(50%);opacity:0}.magee-flipbox-wrap.slide-bottom:hover .flipbox-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchstart-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchstart-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchend-front{-webkit-transform:translateY(0)!important;transform:translateY(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchend-back{-webkit-transform:translateY(50%)!important;transform:translateY(50%)!important;opacity:0!important}.magee-flipbox-wrap.flip-bottom .flipbox-back{-webkit-transform-origin:0% 100%;-moz-transform-origin:0% 100%;-ms-transform-origin:0% 100%;-o-transform-origin:0% 100%;transform-origin:0% 100%;-webkit-transform:rotateX(-270deg);-moz-transform:rotateX(-270deg);-ms-transform:rotateX(-270deg);-o-transform:rotateX(-270deg);transform:rotateX(-270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-bottom:hover .flipbox-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-bottom .flip-bottom-touchstart-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-bottom .flip-bottom-touchend-back{-webkit-transform-origin:0% 100%!important;-moz-transform-origin:0% 100%!important;-ms-transform-origin:0% 100%!important;-o-transform-origin:0% 100%!important;transform-origin:0% 100%!important;-webkit-transform:rotateX(-270deg)!important;-moz-transform:rotateX(-270deg)!important;-ms-transform:rotateX(-270deg)!important;-o-transform:rotateX(-270deg)!important;transform:rotateX(-270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-flipbox-wrap.flip-top .flipbox-back{-webkit-transform-origin:0% 0%;-moz-transform-origin:0% 0%;-ms-transform-origin:0% 0%;-o-transform-origin:0% 0%;transform-origin:0% 0%;-webkit-transform:rotateX(270deg);-moz-transform:rotateX(270deg);-ms-transform:rotateX(270deg);-o-transform:rotateX(270deg);transform:rotateX(270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-top:hover .flipbox-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-top .flip-top-touchstart-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-top .flip-top-touchend-back{-webkit-transform-origin:0% 0%!important;-moz-transform-origin:0% 0%!important;-ms-transform-origin:0% 0%!important;-o-transform-origin:0% 0%!important;transform-origin:0% 0%!important;-webkit-transform:rotateX(270deg)!important;-moz-transform:rotateX(270deg)!important;-ms-transform:rotateX(270deg)!important;-o-transform:rotateX(270deg)!important;transform:rotateX(270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-flipbox-wrap.flip-left .flipbox-back{-moz-transform-origin:0%;-ms-transform-origin:0%;-o-transform-origin:0%;-webkit-transform-origin:0%;transform-origin:0%;-webkit-transform:rotateY(-270deg);-moz-transform:rotateY(-270deg);-ms-transform:rotateY(-270deg);-o-transform:rotateY(-270deg);transform:rotateY(-270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-left:hover .flipbox-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-left .flip-left-touchstart-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-left .flip-left-touchend-back{-webkit-transform-origin:0%!important;-moz-transform-origin:0%!important;-ms-transform-origin:0%!important;-o-transform-origin:0%!important;transform-origin:0%!important;-webkit-transform:rotateY(-270deg)!important;-moz-transform:rotateY(-270deg)!important;-ms-transform:rotateY(-270deg)!important;-o-transform:rotateY(-270deg)!important;transform:rotateY(-270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-flipbox-wrap.flip-right .flipbox-back{-moz-transform-origin:100%;-ms-transform-origin:100%;-o-transform-origin:100%;-webkit-transform-origin:100%;transform-origin:100%;-webkit-transform:rotateY(270deg);-moz-transform:rotateY(270deg);-ms-transform:rotateY(270deg);-o-transform:rotateY(270deg);transform:rotateY(270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-right:hover .flipbox-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-right .flip-right-touchstart-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-right .flip-right-touchend-back{-webkit-transform-origin:100%!important;-moz-transform-origin:100%!important;-ms-transform-origin:100%!important;-o-transform-origin:100%!important;transform-origin:100%!important;-webkit-transform:rotateY(270deg)!important;-moz-transform:rotateY(270deg)!important;-ms-transform:rotateY(270deg)!important;-o-transform:rotateY(270deg)!important;transform:rotateY(270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-icon{margin-right:10px;margin-bottom:10px}.magee-icon:last-child{margin-right:0}.magee-icon.square{border-radius:0}.magee-icon.rounded{border-radius:5px}.magee-icon.circle{border-radius:50%}.magee-icon.icon-boxed{width:2em;height:2em;line-height:2;text-align:center;color:#fff;background-color:#f5f5f5;border:1px solid transparent}.magee-icon.icon-3d{box-shadow:0 2px 0 0 #e5e5e5}.magee-fa-icon{font-size:inherit}.magee-fa-icon.icon-boxed{font-size:inherit;width:2em;height:2em;line-height:2em;text-align:center;color:#fff;background-color:#777;border:0;border-radius:5px}.magee-section{position:relative;-webkit-background-size:cover;-ms-background-size:cover;-o-background-size:cover;background-size:cover}.fullheight{min-height:100vh;display:table;width:100%}.magee-section.fullheight .section-content{display:table-cell;width:100%;position:relative;overflow:hidden}.magee-section.verticalmiddle .section-content{vertical-align:middle}.magee-section .background-media,.magee-section .background-overlay{position:absolute;width:100%;left:0;top:0;bottom:0;overflow:hidden}.gmnoprint img{max-width:none}.magee-slider .item img{width:100%}.magee-slider .carousel-control span{position:absolute;top:40%}.magee-slider .carousel-indicators{display:none}.magee-slider .carousel-control span::before{color:#fff;font-size:50px}.magee-heading{border-color:#555}.magee-heading .heading-inner{display:inline-block;border-style:solid;border-color:inherit}.magee-heading.heading-border .heading-inner{padding:5px 0;border-top-width:2px;border-bottom-width:2px;border-left-width:0!important;border-right-width:0!important}.magee-heading.heading-boxed .heading-inner{padding:10px;border-width:2px}.magee-heading.heading-boxed-reverse{color:#fff}.magee-heading.heading-boxed-reverse .heading-inner{padding:10px;box-shadow:0 0 0 2px #fff inset;border-width:2px;background-color:#555}.magee-heading.heading-doubleline{overflow:hidden}.magee-heading.heading-doubleline .heading-inner{position:relative;z-index:9}.magee-heading.heading-doubleline .heading-inner:after,.magee-heading.heading-doubleline .heading-inner:before{content:"";position:absolute;width:2000px;height:12px;border-top-width:1px;border-bottom-width:1px;border-left-width:0!important;border-right-width:0!important;border-style:solid;border-color:inherit;top:50%;margin-top:-6px;z-index:-1}.magee-heading.heading-doubleline .heading-inner:before{right:100%;margin-right:10px}.magee-heading.heading-doubleline .heading-inner:after{left:100%;margin-left:10px}.magee-heading.heading-charactershadow .heading-inner{position:relative;z-index:9;padding:2em 0 1em}.magee-heading.heading-charactershadow .heading-inner:before{content:"T";position:absolute;top:0;z-index:-1;color:inherit;opacity:.2;font-size:4em;width:100%}.table,.table td,.table th{border-width:0}.table.table-bordered{border-width:1px}.magee-table .table thead th{background-color:#fdd200;color:#fff;border-bottom-width:0}.img-side{padding:0;position:absolute;top:0;height:100%;overflow:hidden;z-index:100}.img-side.img-right{right:0}.img-side.img-left{left:0}.magee-twitter-feed{list-style-type:none;margin:0}.magee-twitter-feed li{list-style-type:none;font-style:italic;margin:0 0 12px 0;padding:0 0 0 25px;position:relative}.magee-twitter-feed li:before{position:absolute;font:normal normal normal 20px/25px FontAwesome;content:"\f099";left:0;top:0}.magee-twitter-feed li span{display:block;font-size:.8em;font-style:normal}.magee-label{background-color:#fdd200;padding:0 3px}.video-wrap{width:100%}.video-wrap iframe{width:100%;height:100%}.magee-wheather-box{background-color:#fdd200;color:#fff;padding:10px}.magee-wheather-box h2{color:#fff;margin-top:0;margin-bottom:5px}.magee-wheather .w-today{width:100%;overflow:hidden}.magee-wheather .w-icon-wrap{float:right;width:50%;text-align:center}.magee-wheather .w-icon-wrap i{font-size:3.4em;line-height:1.5}.magee-wheather .w-icon-wrap .w-text{margin-bottom:0;margin-top:5px}.magee-wheather .w-temp{float:left;width:50%;text-align:center;font-size:4em;line-height:1.5;margin-bottom:0}.magee-wheather .w-temp sup{opacity:.8;font-size:60%}.magee-wheather-box{background-color:#fdd200;color:#fff;padding:10px;font-size:inherit}.magee-wheather-box h2{color:#fff;margin-top:0;margin-bottom:5px}.magee-wheather .w-today{width:100%;overflow:hidden}.magee-wheather .w-icon-wrap{float:right;width:50%;text-align:center}.magee-wheather .w-icon-wrap i{font-size:3.4em;line-height:1.5}.magee-wheather .w-icon-wrap .w-text{margin-bottom:0;margin-top:5px;font-size:inherit}.magee-wheather .w-temp{float:left;width:50%;text-align:center;font-size:4em;line-height:1.5;margin-bottom:0}.magee-wheather .w-temp sup{opacity:.8;font-size:60%}.magee-wheather .w-detail{overflow:hidden;width:100%}.magee-wheather p.w-day{font-weight:700;font-size:inherit}.magee-wheather .w-detail ul{width:33%;float:left;list-style-type:none;margin:0}.magee-wheather .w-detail li{display:block;line-height:24px}.magee-wheather .w-forecasts{width:100%;margin-top:15px;border:0;table-layout:auto;border-collapse:collapse}.magee-wheather .w-forecasts tr{border-top:1px solid rgba(255,255,255,.15)}.magee-wheather .w-forecasts td{border:0;padding:5px 0;font-weight:700;color:#fff}.magee-wheather .w-forecasts td+td{min-width:40px;text-align:center;font-weight:400}.magee-blockquote blockquote{padding:10px 20px 10px 45px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee;position:relative}.magee-blockquote blockquote ol:last-child,.magee-blockquote blockquote p:last-child,.magee-blockquote blockquote ul:last-child{margin-bottom:0}.magee-blockquote blockquote .small,.magee-blockquote blockquote footer,.magee-blockquote blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}.magee-blockquote blockquote .small:before,.magee-blockquote blockquote footer:before,.magee-blockquote blockquote small:before{content:'\2014 \00A0'}.magee-blockquote .blockquote-reverse,.magee-blockquote blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse small:before,.magee-blockquote .blockquote-reverse .small:before,.magee-blockquote .blockquote-reverse footer:before,.magee-blockquote blockquote.pull-right .small:before,.magee-blockquote blockquote.pull-right footer:before,.magee-blockquote blockquote.pull-right small:before{content:''}.magee-blockquote .blockquote-reverse .small:after,.magee-blockquote .blockquote-reverse footer:after,.magee-blockquote .blockquote-reverse small:after,.magee-blockquote blockquote.pull-right .small:after,.magee-blockquote blockquote.pull-right footer:after,.magee-blockquote blockquote.pull-right small:after{content:'\00A0 \2014'}.magee-blockquote blockquote::before{font-family:Arial;content:"\201C";color:#78c0a8;font-size:4em;position:absolute;left:10px;top:0;line-height:1}.magee-blockquote blockquote footer a{color:#78c0a8}.magee-shortcode .tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;opacity:0;line-break:auto}.magee-shortcode .tooltip.in{opacity:.9}.magee-shortcode .tooltip.top{padding:5px 0;margin-top:-3px}.magee-shortcode .tooltip.right{padding:0 5px;margin-left:3px}.magee-shortcode .tooltip.bottom{padding:5px 0;margin-top:3px}.magee-shortcode .tooltip.left{padding:0 5px;margin-left:-3px}.magee-shortcode .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.magee-shortcode .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.magee-shortcode .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.magee-shortcode .tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.magee-shortcode .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.magee-shortcode .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.magee-shortcode .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.magee-shortcode .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.magee-shortcode .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.magee-shortcode .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.magee-popover .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.magee-popover .popover.top{margin-top:-10px}.magee-popover .popover.right{margin-left:10px}.magee-popover .popover.bottom{margin-top:10px}.magee-popover .popover.left{margin-left:-10px}.magee-popover .popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.magee-popover .popover-content{padding:9px 14px}.magee-popover .popover>.arrow,.magee-popover .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.magee-popover .popover>.arrow{border-width:11px}.magee-popover .popover>.arrow:after{content:"";border-width:10px}.magee-popover .popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.magee-popover .popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.magee-popover .popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.magee-popover .popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.magee-popover .popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.magee-popover .popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.magee-popover .popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.magee-popover .popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.magee-table table{background-color:transparent}.magee-table caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}.magee-table th{text-align:left}.magee-table table{width:100%;max-width:100%;margin-bottom:20px}.magee-table table>tbody>tr>td,.magee-table table>tbody>tr>th,.magee-table table>tfoot>tr>td,.magee-table table>tfoot>tr>th,.magee-table table>thead>tr>td,.magee-table table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.magee-table table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.magee-table table>caption+thead>tr:first-child>td,.magee-table table>caption+thead>tr:first-child>th,.magee-table table>colgroup+thead>tr:first-child>td,.magee-table table>colgroup+thead>tr:first-child>th,.magee-table table>thead:first-child>tr:first-child>td,.magee-table table>thead:first-child>tr:first-child>th{border-top:0}.magee-table table>tbody+tbody{border-top:2px solid #ddd}.magee-table table .magee-table table{background-color:#fff}.magee-table .table-condensed>tbody>tr>td,.magee-table .table-condensed>tbody>tr>th,.magee-table .table-condensed>tfoot>tr>td,.magee-table .table-condensed>tfoot>tr>th,.magee-table .table-condensed>thead>tr>td,.magee-table .table-condensed>thead>tr>th{padding:5px}.magee-table .table-bordered{border:1px solid #ddd}.magee-table .table-bordered>tbody>tr>td,.magee-table .table-bordered>tbody>tr>th,.magee-table .table-bordered>tfoot>tr>td,.magee-table .table-bordered>tfoot>tr>th,.magee-table .table-bordered>thead>tr>td,.magee-table .table-bordered>thead>tr>th{border:1px solid #ddd}.magee-table .table-bordered>thead>tr>td,.magee-table .table-bordered>thead>tr>th{border-bottom-width:2px}.magee-table .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.magee-table .magee-table .table-hover>tbody>tr:hover{background-color:#f5f5f5}.magee-table table col[class*=col-]{position:static;display:table-column;float:none}.magee-table table td[class*=col-],.magee-table table th[class*=col-]{position:static;display:table-cell;float:none}.magee-table table>tbody>tr.active>td,.magee-table table>tbody>tr.active>th,.magee-table table>tbody>tr>td.active,.magee-table table>tbody>tr>th.active,.magee-table table>tfoot>tr.active>td,.magee-table table>tfoot>tr.active>th,.magee-table table>tfoot>tr>td.active,.magee-table table>tfoot>tr>th.active,.magee-table table>thead>tr.active>td,.magee-table table>thead>tr.active>th,.magee-table table>thead>tr>td.active,.magee-table table>thead>tr>th.active{background-color:#f5f5f5}.magee-table .table-hover>tbody>tr.active:hover>td,.magee-table .table-hover>tbody>tr.active:hover>th,.magee-table .table-hover>tbody>tr:hover>.active,.magee-table .table-hover>tbody>tr>td.active:hover,.magee-table .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.magee-table table>tbody>tr.success>td,.magee-table table>tbody>tr.success>th,.magee-table table>tbody>tr>td.success,.magee-table table>tbody>tr>th.success,.magee-table table>tfoot>tr.success>td,.magee-table table>tfoot>tr.success>th,.magee-table table>tfoot>tr>td.success,.magee-table table>tfoot>tr>th.success,.magee-table table>thead>tr.success>td,.magee-table table>thead>tr.success>th,.magee-table table>thead>tr>td.success,.magee-table table>thead>tr>th.success{background-color:#dff0d8}.magee-table .table-hover>tbody>tr.success:hover>td,.magee-table .table-hover>tbody>tr.success:hover>th,.magee-table .table-hover>tbody>tr:hover>.success,.magee-table .table-hover>tbody>tr>td.success:hover,.magee-table .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.magee-table table>tbody>tr.info>td,.magee-table table>tbody>tr.info>th,.magee-table table>tbody>tr>td.info,.magee-table table>tbody>tr>th.info,.magee-table table>tfoot>tr.info>td,.magee-table table>tfoot>tr.info>th,.magee-table table>tfoot>tr>td.info,.magee-table table>tfoot>tr>th.info,.magee-table table>thead>tr.info>td,.magee-table table>thead>tr.info>th,.magee-table table>thead>tr>td.info,.magee-table table>thead>tr>th.info{background-color:#d9edf7}.magee-table .table-hover>tbody>tr.info:hover>td,.magee-table .table-hover>tbody>tr.info:hover>th,.magee-table .table-hover>tbody>tr:hover>.info,.magee-table .table-hover>tbody>tr>td.info:hover,.magee-table .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.magee-table table>tbody>tr.warning>td,.magee-table table>tbody>tr.warning>th,.magee-table table>tbody>tr>td.warning,.magee-table table>tbody>tr>th.warning,.magee-table table>tfoot>tr.warning>td,.magee-table table>tfoot>tr.warning>th,.magee-table table>tfoot>tr>td.warning,.magee-table table>tfoot>tr>th.warning,.magee-table table>thead>tr.warning>td,.magee-table table>thead>tr.warning>th,.magee-table table>thead>tr>td.warning,.magee-table table>thead>tr>th.warning{background-color:#fcf8e3}.magee-table .table-hover>tbody>tr.warning:hover>td,.magee-table .table-hover>tbody>tr.warning:hover>th,.magee-table .table-hover>tbody>tr:hover>.warning,.magee-table .table-hover>tbody>tr>td.warning:hover,.magee-table .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.magee-table table>tbody>tr.danger>td,.magee-table table>tbody>tr.danger>th,.magee-table table>tbody>tr>td.danger,.magee-table table>tbody>tr>th.danger,.magee-table table>tfoot>tr.danger>td,.magee-table table>tfoot>tr.danger>th,.magee-table table>tfoot>tr>td.danger,.magee-table table>tfoot>tr>th.danger,.magee-table table>thead>tr.danger>td,.magee-table table>thead>tr.danger>th,.magee-table table>thead>tr>td.danger,.magee-table table>thead>tr>th.danger{background-color:#f2dede}.magee-table .table-hover>tbody>tr.danger:hover>td,.magee-table .table-hover>tbody>tr.danger:hover>th,.magee-table .table-hover>tbody>tr:hover>.danger,.magee-table .table-hover>tbody>tr>td.danger:hover,.magee-table .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.magee-table .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.magee-table .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.magee-table .table-responsive .table{margin-bottom:0}.magee-table .table-responsive .table>tbody>tr>td,.magee-table .table-responsive .table>tbody>tr>th,.magee-table .table-responsive .table>tfoot>tr>td,.magee-table .table-responsive .table>tfoot>tr>th,.magee-table .table-responsive .table>thead>tr>td,.magee-table .table-responsive .table>thead>tr>th{white-space:nowrap}.magee-table .table-responsive>.table-bordered{border:0}.magee-table .table-responsive>.table-bordered>tbody>tr>td:first-child,.magee-table .table-responsive>.table-bordered>tbody>tr>th:first-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>td:first-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>th:first-child,.magee-table .table-responsive>.table-bordered>thead>tr>td:first-child,.magee-table .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.magee-table .table-responsive>.table-bordered>tbody>tr>td:last-child,.magee-table .table-responsive>.table-bordered>tbody>tr>th:last-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>td:last-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>th:last-child,.magee-table .table-responsive>.table-bordered>thead>tr>td:last-child,.magee-table .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.magee-table .table-responsive>.table-bordered>tbody>tr:last-child>td,.magee-table .table-responsive>.table-bordered>tbody>tr:last-child>th,.magee-table .table-responsive>.table-bordered>tfoot>tr:last-child>td,.magee-table .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}
|
1 |
+
.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-1_7,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-1_5,.col-md-1_7,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px;webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.col-md-1_5{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.col-md-1_7{-ms-flex:0 0 14.2857%;flex:0 0 14.2857%;max-width:14.2857%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.col-lg-1_7{-ms-flex:0 0 14.2857%;flex:0 0 14.2857%;max-width:14.2857%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.border-right{border-right:1px solid #f5f5f5}.text-light{color:#fff}.text-light,.text-light a,.text-light h1,.text-light h2,.text-light h3,.text-light h4,.text-light h5,.text-light h6,a.text-light,h1.text-light,h2.text-light,h3.text-light,h4.text-light,h5.text-light,h6.text-light{color:#fff!important}.text-light a:hover,a.text-light:hover{color:rgba(255,255,255,.7)!important}.text-primary{color:#fdd200}.text-dark{color:#222}.magee-dropcap{position:relative;float:left;top:.05em;margin-right:.15em;padding:0;line-height:.8;font-size:5em;text-transform:uppercase;color:#fdd200}.dropcap-boxed{padding:.05em .1em .1em .1em;background-color:#fdd200;color:#fff}.magee-highlight{background-color:#fdd200;color:#fff;padding:0 .3em}.tooltip-text{color:#fdd200}.tooltip-text:hover{cursor:pointer}.box-shadow{box-shadow:1px 1px 5px 0 rgba(0,0,0,.1)}.magee-btn-wrapper{display:inline}a.btn-normal:hover,a.magee-btn-normal:hover{text-decoration:none}.btn-normal,.magee-btn-normal{position:relative;display:inline-block;text-align:center;vertical-align:middle;white-space:nowrap;cursor:pointer;color:#fff;background-color:#fdd200;line-height:1;padding:.9em 1.6em;border-radius:0;border-width:0;border-style:solid;text-decoration:none}.btn-normal,.magee-btn-normal:active,.magee-btn-normal:focus,.magee-btn-normal:hover{background-color:#f6cc00;color:#fff}.btn-md{font-size:1em}.btn-large,.btn-lg{font-size:1.2em}.btn-sm,.btn-small{font-size:.8em}.btn-xl{font-size:1.5em}.btn-square{border-radius:0}.btn-rounded{border-radius:5px}.btn-full-rounded{border-radius:50px}.btn-text-shadow{text-shadow:0 1px rgba(0,0,0,.4)}.btn-gradient{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.05)),to(rgba(0,0,0,.1)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1))}.btn-2d{text-shadow:0 1px rgba(0,0,0,.4);box-shadow:0 0 0 1px rgba(0,0,0,.2) inset;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.05)),to(rgba(0,0,0,.1)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1));background-image:linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.1))}.btn-3d{text-shadow:0 1px rgba(0,0,0,.4);box-shadow:0 3px 0 0 #c5a300}.magee-btn-normal.btn-light{background-color:#fff;color:#000}.magee-btn-normal.btn-dark{background-color:#000;color:#fff}.magee-btn-normal.btn-line{background-color:transparent;color:#fdd200;border:2px solid #fdd200}.magee-btn-normal.btn-line:active,.magee-btn-normal.btn-line:focus,.magee-btn-normal.btn-line:hover{background-color:rgba(255,255,255,.1)}.magee-btn-normal.btn-line.btn-light{border-color:#fff;color:#fff;background-color:transparent}.magee-btn-normal.btn-line.btn-light:active,.magee-btn-normal.btn-line.btn-light:focus,.magee-btn-normal.btn-line.btn-light:hover{background-color:rgba(255,255,255,.1)}.magee-btn-normal.btn-line.btn-dark{border-color:#000;color:#000;background-color:transparent}.magee-btn-normal.btn-line.btn-dark:active,.magee-btn-normal.btn-line.btn-dark:focus,.magee-btn-normal.btn-line.btn-dark:hover{background-color:#000;color:#fff}.btn-block{display:block}.magee-feature-box h3{font-size:18px}.magee-feature-box .feature-content p{margin-bottom:.8em}.magee-feature-box.style1,.magee-feature-box.style4{text-align:center}.magee-feature-box.style2 h3,.magee-feature-box.style3 h3{text-align:left}.magee-feature-box.style2 .feature-content,.magee-feature-box.style3 .feature-content{text-align:right}.magee-feature-box.style2 .feature-content p,.magee-feature-box.style3 .feature-content p{text-align:left}.magee-feature-box.style2.reverse h3,.magee-feature-box.style3.reverse h3{text-align:right}.magee-feature-box.style2.reverse .feature-content,.magee-feature-box.style3.reverse .feature-content{text-align:left}.magee-feature-box.style2.reverse .feature-content p,.magee-feature-box.style3.reverse .feature-content p{text-align:right}.magee-feature-box img{display:block}.magee-feature-box.style1 .icon-box,.magee-feature-box.style1 img,.magee-feature-box.style4 .icon-box,.magee-feature-box.style4 img{margin:0 auto}.magee-feature-box.style1 .icon-box .fa-fw,.magee-feature-box.style4 .icon-box .fa-fw{margin-left:-.142857em}.magee-feature-box.style2{position:relative;min-height:80px;padding-left:95px}.magee-feature-box.style2 .icon-box,.magee-feature-box.style2 img{position:absolute;top:0;left:0}.magee-feature-box.style2.reverse{padding-left:0;padding-right:95px}.magee-feature-box.style2.reverse .icon-box,.magee-feature-box.style2.reverse img{right:0;left:auto}.magee-feature-box.style3 .icon-box,.magee-feature-box.style3 img{float:left;margin-bottom:10px}.magee-feature-box.style3.reverse .icon-box,.magee-feature-box.style3.reverse img{float:right}.magee-feature-box.style3 h3{clear:none;float:left;margin:0 0 0 15px;line-height:80px}.magee-feature-box.style3.reverse h3{float:right;margin-right:15px;margin-left:0}.magee-feature-box.style3 p{clear:left}.magee-feature-box.style3.reverse p{clear:right}.magee-feature-box.style4{background-color:#f5f5f5;position:relative;padding:50px 10px 10px;margin-top:40px}.magee-feature-box.style4 .icon-box,.magee-feature-box.style4 img{position:absolute;top:-40px;left:50%;margin-left:-40px;background-color:#fff}.icon-box{text-align:center;color:#222;font-size:40px;line-height:1em;width:1em;height:1em}.icon-box.primary{color:#fdd200}.icon-box.light{color:#fff}.icon-box.icon-xl{font-size:80px}.icon-box.icon-lg{font-size:60px}.icon-box.icon-sm{font-size:20px}.icon-circle{border-radius:50%;border-style:solid;border-width:2px;border-color:#222;background-color:rgba(0,0,0,0);line-height:2.5em;width:2.5em;height:2.5em}.collapse{display:none}.collapse.in{display:block}.magee-accordion .panel{border-radius:0}.magee-accordion .panel{border:none;box-shadow:none;border-bottom:1px solid #ddd}.magee-accordion.panel-group .panel-heading+.panel-collapse>.list-group,.magee-accordion.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:none}.magee-accordion .panel-heading{padding:10px}.magee-accordion .panel-heading i{color:#777;margin-right:.5em}.magee-accordion .panel-body{padding:15px 10px}.magee-accordion .panel-default>.panel-heading{background-color:transparent;border:none}.magee-accordion .panel-group .panel+.panel{margin-top:0}.magee-accordion .panel-heading{position:relative;border:none;border-radius:0}.magee-accordion h4.panel-title{margin-top:0;margin-bottom:0;color:inherit;font-size:16px}a.accordion-toggle,a.accordion-toggle:hover{text-decoration:none}.magee-accordion .magee-accordion.style3 .panel-heading .accordion-toggle:after{display:none}.magee-accordion.style3 .panel-heading .accordion-toggle.collapsed:after{display:none}.magee-accordion.style3 .panel-heading .accordion-toggle:after{display:none}.magee-accordion.accordion-spacing .panel-heading{padding:15px}.magee-accordion.accordion-spacing .panel-default>.panel-heading{background-color:#fdfdfd}.magee-accordion.accordion-spacing .panel-heading:hover{background:#f8f8f8}.magee-accordion.accordion-spacing .panel-body{padding:15px}.magee-accordion.accordion-spacing .panel-heading .accordion-toggle:after{top:15px;right:15px}.magee-accordion.accordion-spacing .panel{border:1px solid #ddd;overflow:hidden;margin-bottom:10px}.magee-accordion.accordion-spacing .panel:last-child{border-bottom-width:1px}.magee-accordion.accordion-spacing.panel-group .panel+.panel{margin-top:0}.magee-accordion .panel-heading .accordion-toggle:after{position:absolute;display:block;right:10px;top:10px;width:16px;height:16px;content:"";text-align:center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(180deg);background-repeat:no-repeat;transition:transform .2s ease-in-out}.magee-accordion .panel-heading .accordion-toggle.collapsed:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23777777'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(0)}.magee-accordion.style2 .panel-heading .accordion-toggle:after{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='minus' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' class='svg-inline--fa fa-minus fa-w-12 fa-3x'%3e%3cpath fill='currentColor' d='M376 232H8c-4.42 0-8 3.58-8 8v32c0 4.42 3.58 8 8 8h368c4.42 0 8-3.58 8-8v-32c0-4.42-3.58-8-8-8z' class=''%3e%3c/path%3e%3c/svg%3e")}.magee-accordion.style2 .panel-heading .accordion-toggle.collapsed:after{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='plus' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' class='svg-inline--fa fa-plus fa-w-12 fa-3x'%3e%3cpath fill='currentColor' d='M376 232H216V72c0-4.42-3.58-8-8-8h-32c-4.42 0-8 3.58-8 8v160H8c-4.42 0-8 3.58-8 8v32c0 4.42 3.58 8 8 8h160v160c0 4.42 3.58 8 8 8h32c4.42 0 8-3.58 8-8V280h160c4.42 0 8-3.58 8-8v-32c0-4.42-3.58-8-8-8z' class=''%3e%3c/path%3e%3c/svg%3e")}.magee-accordion.accordion-boxed .panel-heading{padding:15px}.magee-accordion.accordion-boxed .panel-default>.panel-heading{background-color:#fdfdfd}.magee-accordion.accordion-boxed .panel-heading:hover{background:#f8f8f8}.magee-accordion.accordion-boxed .panel-body{padding:15px}.magee-accordion.accordion-boxed .panel-heading .accordion-toggle:after{top:15px;right:15px}.magee-accordion.accordion-boxed .panel{border:1px solid #ddd;border-bottom-width:0;overflow:hidden}.magee-accordion.accordion-boxed .panel:last-child{border-bottom-width:1px}.magee-accordion.accordion-boxed.panel-group .panel+.panel{margin-top:0}.magee-accordion.panel-group .panel-heading+.panel-collapse>.list-group,.magee-accordion.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.magee-accordion.faq .panel-heading{padding:20px 10px}.magee-accordion.faq .panel-heading .accordion-toggle:after{top:20px}.magee-accordion.accordion-boxed.faq .panel-heading{padding:25px 15px}.magee-accordion.accordion-boxed.faq .panel-heading .accordion-toggle:after{top:25px}.faq-list-filter .faq-box-wrap{display:none;overflow:hidden;width:100%}.list-filter li a{display:block;padding:5px 10px;color:#777}.list-filter li a:hover,.list-filter li.active a{background-color:#f8f8f8}.portfolio-list-filter li a:hover,.portfolio-list-filter li.active a{background-color:#fdd200;color:#fff}.portfolio-list-filter .portfolio-box-wrap{display:none}.tab-title{font-size:16px;margin:0}.tab-title i{margin-right:5px;color:#777}.magee-tab-box ul{margin:0;width:100%}.tab-pane{padding:10px 0}.magee-tab-box.tab-line ul.list-inline{border-bottom:2px solid #eee}.magee-tab-box ul.list-inline>li{padding:0;margin-bottom:0}.magee-tab-box.tab-line ul>li>a{padding:15px 20px;display:block;margin-bottom:-2px;border-bottom:2px solid transparent}.magee-tab-box.tab-line ul>li.active>a{border-bottom-color:#fdd200}.magee-tab-box.tab-normal ul>li>a{padding:15px 20px;border-radius:0;margin-right:0}.magee-tab-box.tab-normal ul>li>a{background-color:#fdfdfd;border:1px solid #ddd}.magee-tab-box.tab-normal ul>li>a:hover{background-color:#f8f8f8}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked li{float:left}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked>li+li{margin-top:0;margin-left:0}.magee-tab-box.tab-normal .tab-pane{padding:20px;border:1px solid #ddd;border-top:0}@media screen and (min-width:768px){.magee-tab-box.tab-normal .nav-tabs.nav-justified>.active>a,.magee-tab-box.tab-normal .nav-tabs.nav-justified>.active>a:focus,.magee-tab-box.tab-normal .nav-tabs.nav-justified>.active>a:hover,.magee-tab-box.tab-normal ul>li+li>a,.magee-tab-box.tab-normal ul>li+li>a:hover{border-left:0}.magee-tab-box.tab-normal .nav-tabs.nav-justified>li:first-child>a,.magee-tab-box.tab-normal .nav-tabs.nav-justified>li:first-child>a:focus,.magee-tab-box.tab-normal .nav-tabs.nav-justified>li:first-child>a:hover{border-left:1px solid #ddd}.magee-tab-box.tab-normal ul>li.active>a{background-color:#fff;border-bottom-color:#fff}.magee-tab-box.tab-vertical ul{width:30%}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked li{float:none}.magee-tab-box.tab-normal.tab-vertical ul.nav-stacked>li+li{margin-top:0;margin-left:0}.magee-tab-box.tab-vertical .tab-content{width:70%}.magee-tab-box.tab-normal.tab-vertical ul>li+li{margin-top:0}.magee-tab-box.tab-normal.tab-vertical ul>li>a{border:1px solid #ddd;margin:0}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-left ul>li>a{margin-right:-1px}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-right ul>li>a{margin-left:-1px}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-left ul>li+li>a{border-left:1px solid #ddd}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-right ul>li+li>a{border-right:1px solid #ddd}.magee-tab-box.tab-normal.tab-vertical ul>li.active>a{border-bottom-color:#ddd}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-left ul>li.active>a{border-right-color:#fff}.magee-tab-box.tab-normal.tab-vertical.tab-vertical-right ul>li.active>a{border-left-color:#fff}.magee-tab-box.tab-normal.tab-vertical .tab-pane{padding:20px;border:1px solid #ddd}}.magee-tab-box .nav-pills>li{padding-right:10px}.magee-tab-box .nav-pills>li:last-child{padding-right:0}.magee-tab-box .nav-pills>li>a{border-radius:0}.magee-tab-box .nav-pills>li.active>a,.magee-tab-box .nav-pills>li.active>a:focus,.magee-tab-box .nav-pills>li.active>a:hover,.magee-tab-box .nav-pills>li>a:hover{color:#777;background-color:#f8f8f8}.magee-panel{border-radius:0;box-shadow:none;overflow:hidden}.panel-primary{border-color:#fdd200}.panel-primary .panel-heading{background-color:#fdd200;border-color:#fdd200}.magee-panel h3.panel-title{margin-top:0;margin-bottom:0;color:inherit;font-size:16px}.magee-alert{background-color:#f5f5f5;border-radius:0;padding:25px 15px;border-style:solid;clear:both}.magee-alert i{-webkit-transform:scale(2) translateX(.3em);transform:scale(2) translateX(.3em);margin-right:2em;font-size:12px}.alert-dismissable .close,.alert-dismissible .close{top:0;right:0;opacity:1}.magee-alert .close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.7;background:0 0;-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease}.magee-alert .close:hover{color:inherit;-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease}.magee-alert a.close,button.close{background:0 0;border:none;border-bottom:none;border-radius:0;padding:0;color:inherit}.magee-alert a.close:hover,button.close:hover{background:0 0}.magee-alert a.close:active,.magee-alert a.close:link,.magee-alert a.close:visited,button.close:active{padding:0;background:0 0;border:none;text-decoration:none}.magee-pricing-box{box-shadow:1px 1px 5px 0 rgba(0,0,0,.1);overflow:hidden}.magee-pricing-box .panel-heading{background-color:#fff;padding:20px;border-bottom:1px solid #ddd}.pricing-top-icon{font-size:72px;color:#fdd200;line-height:1;margin-bottom:10px}.magee-pricing-box .panel-title{font-size:24px}.magee-pricing-box.featured .panel-heading{background-color:#fdd200}.magee-pricing-box.featured .panel-title,.magee-pricing-box.featured .pricing-top-icon{color:#fff}.magee-pricing-box .panel-body{padding:0}.magee-pricing-box .pricing-tag{background-color:#f5f5f5;padding:20px;border-bottom:1px solid #ddd;font-size:3em}.pricing-tag .currency{color:#fdd200;font-size:.5em;position:relative;top:-1em}.pricing-tag .price{color:#fdd200}.pricing-tag .unit{font-size:.3em;position:relative;bottom:0;left:.5em}.magee-pricing-box .pricing-list{list-style-type:none;margin:0}.magee-pricing-box .pricing-list li{padding:20px 10px}.magee-pricing-box .panel-footer{padding:20px 10px;background-color:#f5f5f5}.pricing-box-flat{border:none;background-color:#f5f5f5;padding:20px;box-shadow:none}.pricing-box-flat.featured{background-color:#fdd200;color:#fff}.pricing-box-flat.featured .panel-title,.pricing-box-flat.featured .pricing-tag .currency,.pricing-box-flat.featured .pricing-tag .price,.pricing-box-flat.featured .pricing-top-icon{color:#fff}.pricing-box-flat .panel-footer,.pricing-box-flat .panel-heading,.pricing-box-flat .pricing-list li,.pricing-box-flat .pricing-tag{background-color:transparent;border:none;padding:5px}.pricing-box-flat.featured .magee-btn-normal{border:2px solid #fff;background-color:transparent!important}@media (min-width:992px){.standout{margin:-20px;position:relative;z-index:2}.magee-pricing-table.no-margin .magee-pricing-box-wrap+.magee-pricing-box-wrap .magee-pricing-box{border-left:none}.magee-pricing-box-wrap.no-padding{padding:0}}.magee-pricing-box-wrap{text-align:center}.magee-pricing-table.no-margin .pricing-list li+li{border-top:1px solid #ddd}.pricing-box-label .panel-footer,.pricing-box-label .panel-heading,.pricing-box-label .pricing-tag{visibility:hidden}.pricing-box-label{border-left-color:transparent;border-top-color:transparent;border-bottom-color:transparent;box-shadow:none;font-weight:700;border-radius:0!important}.pricing-box-label .pricing-list{padding-right:20px}.magee-person-box{text-align:center;margin:0 auto}.person-vcard .person-name{font-size:18px;margin:20px 0 10px}.person-vcard .person-title{font-size:14px;margin:0 0 10px}.person-vcard .person-title:after{display:block;margin:10px auto;width:80px;height:1px;background-color:#fdd200;content:""}.person-vcard .person-desc{margin:0 0 10px}.person-social{text-align:center;margin:0}.person-social li{display:inline-block;margin:0 5px}.person-social li a{font-size:16px;color:#595959;width:30px;height:30px;border-radius:4px;line-height:28px;display:inline-block;border:0}.person-social li a:hover{background:#fff}.person-social li a:hover{color:#fdd200}.person-social.boxed li a{color:#fff;background-color:#595959}.person-social.boxed li a:hover{color:#fff;background-color:#fdd200}.magee-person-box.person-box-horizontal{margin:0 -15px}.person-box-horizontal .person-vcard .person-name{margin-top:0}.person-box-horizontal .person-social{text-align:left}.person-box-horizontal li{margin:0 10px 0 0}.person-box-horizontal .person-vcard .person-title:after{margin-left:0}.magee-popover{cursor:pointer}.magee-testimonial-box{max-width:100%}.magee-testimonial-box .testimonial-content{margin-bottom:1em;position:relative}.magee-testimonial-box .testimonial-quote{position:relative;padding:10px 0 0 35px}.magee-testimonial-box .testimonial-quote:before{content:"\f10d";display:block;font:normal normal normal 30px/1 FontAwesome;line-height:1;position:absolute;left:0;top:0;opacity:.3}.magee-testimonial-box .testimonial-vcard.style1{display:table}.magee-testimonial-box .testimonial-vcard.style1 .testimonial-author,.magee-testimonial-box .testimonial-vcard.style1 .testimonial-avatar{display:table-cell;vertical-align:middle}.magee-testimonial-box .testimonial-avatar{padding-right:10px}.magee-testimonial-box .testimonial-vcard.style1 img{width:60px;height:60px}.magee-testimonial-box .testimonial-vcard:before{content:""!important}.magee-testimonial-box .testimonial-author .name{margin:0;color:inherit}.magee-testimonial-box .testimonial-vcard.style2 .testimonial-avatar{margin-bottom:1em;padding-right:0}.magee-testimonial-box .testimonial-vcard.style2 img{width:80px;height:80px;display:inline-block}.magee-testimonial-box.testimonial-boxed .testimonial-content{border:1px solid #ddd;background-color:#f5f5f5;padding:1.5em;margin-bottom:2em}.magee-testimonial-box.testimonial-boxed .testimonial-content:before{content:"";display:block;width:0;height:0;border:10px solid transparent;border-top-color:#f5f5f5;position:absolute;bottom:-20px;left:50px;z-index:3}.magee-testimonial-box.testimonial-boxed .testimonial-content:after{content:"";display:block;width:0;height:0;border:11px solid transparent;border-top-color:#ddd;position:absolute;bottom:-23px;left:49px;z-index:2}.magee-testimonial-box.testimonial-boxed .testimonial-vcard.style1{margin-left:25px}.magee-testimonial-box.testimonial-boxed .testimonial-vcard.style2{text-align:center}.magee-testimonial-box.testimonial-boxed.text-center .testimonial-content:before{left:50%;margin-left:-10px}.magee-testimonial-box.testimonial-boxed.text-center .testimonial-content:after{left:50%;margin-left:-11px}.magee-promo-box{display:table;width:100%}.promo-action .image-instead{display:inline;margin-right:.5em}.magee-promo-box.boxed{padding:5px 15px;border:1px solid #eee;background-color:#f5f5f5}@media screen and (min-width:768px){.promo-action,.promo-info{display:table-cell;vertical-align:middle}}.promo-info{padding-right:15px}.magee-progress-box{overflow:hidden}.magee-progress-box .progress{background-color:#eee;margin-bottom:10px;height:30px;border-radius:0;box-shadow:none}.magee-progress-box .progress-bar{padding:0 5px;background-color:#fdd200;overflow:hidden;text-align:left;box-shadow:none;font-weight:700}.magee-progress-box .label{font-size:.9em;background-color:rgba(0,0,0,.3);margin:2px 0}.progress-bar-striped.animated{-webkit-animation-name:progress-bar-striped;animation-name:progress-bar-striped;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes progress-bar-striped{from{background-position:40px 0}to{background-position:0 0}}@-webkit-keyframes progress-bar-striped{from{background-position:40px 0}to{background-position:0 0}}.progress.rounded{border-radius:5px}.progress.rounded .progress-bar{border-radius:5px}.progress-box .progress-sm{height:15px}.magee-counter-box{text-align:center}.magee-counter-box.box-border{border:1px solid #ddd;padding:20px}.magee-counter-box.boxed{padding:20px;border:0 solid #ddd}.magee-counter .counter-top-icon{font-size:72px;color:#fdd200;line-height:1}.magee-counter .counter{font-size:50px;line-height:1em;display:inline-block}.magee-counter .counter:after{display:block;margin:10px auto;width:40px;height:1px;background-color:#fdd200;content:""}.magee-counter h3.counter-bottom_title,.magee-counter h3.counter-title{margin:0!important;font-size:14px}.magee-countdown-wrap{width:600px;max-width:100%}.magee-countdown{list-style-type:none!important;margin:0 -15px}.magee-countdown .counter-num{font-size:40px}.magee-chart-box{position:relative;display:inline-block;width:200px;height:200px;text-align:center}.chart-title{position:absolute;display:block;vertical-align:middle;width:100%;top:0;left:0;line-height:200px;font-size:40px}.chart-title img{height:80px}.magee-process-steps>ul{list-style-type:none;margin-bottom:0}.magee-process-steps>ul>li{position:relative}@media (min-width:992px){.magee-process-steps>ul>li:before{content:"";position:absolute;display:block;width:100%;height:0;border-bottom:1px dashed #e5e5e5;top:50px;left:50%}.magee-process-steps.box-lg>ul>li:before{top:75px}}.magee-process-steps>ul>li:last-child:before{display:none}.magee-step-box .icon-box{position:relative;z-index:2;background-color:#fff;border-width:3px;border-color:#e5e5e5;color:#aaa}.magee-step-box .icon-box i{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.magee-step-box .icon-box:hover{box-shadow:0 0 3px 5px #e5e5e5}.magee-process-steps.process-steps-vertical>ul>li:before{content:"";position:absolute;display:block;width:0;height:100%;border-right:1px dashed #e5e5e5;left:50px;top:50%}.magee-process-steps.process-steps-vertical.box-lg>ul>li:before{left:75px}.magee-process-steps.process-steps-vertical>ul>li{margin-bottom:60px}.magee-process-steps.process-steps-vertical>ul>li:last-child{margin-bottom:0}.magee-process-steps.process-steps-vertical>ul>li:last-child:before{display:none}.magee-timeline{overflow:hidden;position:relative}.magee-timeline>ul{list-style-type:none;margin-bottom:0;margin-top:0;padding-left:0;margin-left:0}.magee-timeline>ul>li{position:relative;margin:0;padding:0}.timeline-year{color:#fff;background-color:#fdd200;width:64px;height:64px;line-height:64px;margin:0 auto;position:relative;text-align:center}.timeline-year p{text-align:center}.timeline-year:after{content:"";display:block;position:absolute;width:0;height:0;border:5px solid transparent;border-top-color:#fdd200;left:50%;margin-left:-5px;top:100%}@media (min-width:992px){.magee-timeline:before{content:"";position:absolute;display:block;width:10px;height:10px;border-radius:50%;background-color:#fdd200;top:28px;left:0}.magee-timeline>ul>li:before{content:"";position:absolute;display:block;width:100%;height:1px;background-color:#fdd200;top:32px;left:0}.magee-timeline>ul>li:last-child:before{background-image:-moz-linear-gradient(left,#fdd200 0,#fdd200 70%,#fff 100%);background-image:-webkit-gradient(linear,left top,right top,from(#fdd200),color-stop(.7,#fdd200),to(#fff));background-image:-webkit-linear-gradient(left,#fdd200 0,#fdd200 70%,#fff 100%);background-image:-o-linear-gradient(left,#fdd200 0,#fdd200 70%,#fff 100%)}}.modal{z-index:10000}.modal-content{border-radius:0}.magee-modal-trigger{cursor:pointer}.magee-modal-wrapper{display:inline-block;position:fixed;z-index:999;margin:0;padding:0}.magee-modal{position:fixed;top:50%;left:50%;height:auto;z-index:2000;visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translate3d(-50%,-50%,0);-moz-transform:translate3d(-50%,-50%,0);-ms-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.magee-modal-show{visibility:visible}.magee-modal-overlay{position:fixed;width:100%;height:100%;visibility:hidden;top:0;left:0;z-index:1000;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show~.magee-modal-overlay{opacity:1;visibility:visible}.magee-modal-content-wrapper{color:#fff;background:#e74c3c;position:relative;border-radius:3px;margin:0 auto;width:750px}.magee-modal-content-wrapper .magee-modal-title-wrapper{position:relative;margin:0;padding:10px 20px;font-size:2.2em;font-weight:300;background:rgba(0,0,0,.05);border-radius:3px 3px 0 0}.magee-modal-content-wrapper .magee-modal-title-wrapper h3{margin:0;height:30px;line-height:30px;font-size:.55em}.magee-modal-title-wrapper a.magee-modal-close{float:right;text-decoration:none;box-shadow:none;color:#fff!important;font-size:16px;text-align:center;-webkit-transition:.4s opacity;-moz-transition:.4s opacity;-ms-transition:.4s opacity;-o-transition:.4s opacity;transition:.4s opacity}.magee-modal-title-wrapper a.magee-modal-close:hover{opacity:.8;text-decoration:none}.magee-modal-content-wrapper>div{padding:15px 20px;margin:0;font-weight:300;font-size:1.15em}.magee-modal-content-wrapper button{display:block;margin:0 auto;font-size:.8em}.magee-modal-effect-1 .magee-modal-content-wrapper{-webkit-transform:translateX(30%);-moz-transform:translateX(30%);-ms-transform:translateX(30%);transform:translateX(30%);opacity:0;-webkit-transition:all .4s cubic-bezier(.25, .5, .5, .9);-moz-transition:all .4s cubic-bezier(.25, .5, .5, .9);transition:all .4s cubic-bezier(.25, .5, .5, .9)}.magee-modal-show.magee-modal-effect-1 .magee-modal-content-wrapper{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);opacity:1}.magee-modal-effect-2 .magee-modal-content-wrapper{-webkit-transform:translateY(30%);-moz-transform:translateY(30%);-ms-transform:translateY(30%);transform:translateY(30%);opacity:0;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.magee-modal-show.magee-modal-effect-2 .magee-modal-content-wrapper{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.magee-modal-effect-3 .magee-modal-content-wrapper{-webkit-transform:translateX(-30%);-moz-transform:translateX(-30%);-ms-transform:translateX(-30%);transform:translateX(-30%);opacity:0;-webkit-transition:all .4s cubic-bezier(.25, .5, .5, .9);-moz-transition:all .4s cubic-bezier(.25, .5, .5, .9);transition:all .4s cubic-bezier(.25, .5, .5, .9)}.magee-modal-show.magee-modal-effect-3 .magee-modal-content-wrapper{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);opacity:1}.magee-modal-effect-4 .magee-modal-content-wrapper{-webkit-transform:translateY(-30%);-moz-transform:translateY(-30%);-ms-transform:translateY(-30%);transform:translateY(-30%);opacity:0;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.magee-modal-show.magee-modal-effect-4 .magee-modal-content-wrapper{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.magee-modal-effect-5 .magee-modal-content-wrapper{-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);transform:scale(.8);opacity:0;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.magee-modal-show.magee-modal-effect-5 .magee-modal-content-wrapper{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.magee-modal-effect-6.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-6 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateY(-80deg);-moz-transform:rotateY(-80deg);-ms-transform:rotateY(-80deg);transform:rotateY(-80deg);-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s;opacity:0}.magee-modal-show.magee-modal-effect-6 .magee-modal-content-wrapper{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);transform:rotateY(0);opacity:1}.magee-modal-effect-7.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-7 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateX(-80deg);-moz-transform:rotateX(-80deg);-ms-transform:rotateX(-80deg);transform:rotateX(-80deg);-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s;opacity:0}.magee-modal-show.magee-modal-effect-7 .magee-modal-content-wrapper{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);transform:rotateX(0);opacity:1}.magee-modal-effect-8.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-8 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateX(-70deg);-moz-transform:rotateX(-70deg);-ms-transform:rotateX(-70deg);transform:rotateX(-70deg);-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;transform-origin:50% 0;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show.magee-modal-effect-8 .magee-modal-content-wrapper{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);transform:rotateX(0);opacity:1}.magee-modal-effect-9.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-9 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(100px) translateX(-40%) rotateY(90deg);-moz-transform:translateZ(100px) translateX(-40%) rotateY(90deg);-ms-transform:translateZ(100px) translateX(-40%) rotateY(90deg);transform:translateZ(100px) translateX(-40%) rotateY(90deg);-webkit-transform-origin:0 100%;-moz-transform-origin:0 100%;transform-origin:0 100%;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show.magee-modal-effect-9 .magee-modal-content-wrapper{-webkit-transform:translateZ(0) translateX(0) rotateY(0);-moz-transform:translateZ(0) translateX(0) rotateY(0);-ms-transform:translateZ(0) translateX(0) rotateY(0);transform:translateZ(0) translateX(0) rotateY(0);opacity:1}.magee-modal-effect-10.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-10 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateY(100%) rotateX(90deg);-moz-transform:translateY(100%) rotateX(90deg);-ms-transform:translateY(100%) rotateX(90deg);transform:translateY(100%) rotateX(90deg);-webkit-transform-origin:0 100%;-moz-transform-origin:0 100%;transform-origin:0 100%;opacity:0;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;transition:all .3s ease-out}.magee-modal-show.magee-modal-effect-10 .magee-modal-content-wrapper{-webkit-transform:translateY(0) rotateX(0);-moz-transform:translateY(0) rotateX(0);-ms-transform:translateY(0) rotateX(0);transform:translateY(0) rotateX(0);opacity:1}.magee-modal-effect-11.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-11 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(-3000px) rotateY(90deg);-moz-transform:translateZ(-3000px) rotateY(90deg);-ms-transform:translateZ(-3000px) rotateY(90deg);transform:translateZ(-3000px) rotateY(90deg);opacity:0}.magee-modal-show.magee-modal-effect-11 .magee-modal-content-wrapper{-webkit-animation:slit .7s forwards ease-out;-moz-animation:slit .7s forwards ease-out;animation:slit .7s forwards ease-out}@-webkit-keyframes slit{50%{-webkit-transform:translateZ(-250px) rotateY(89deg);opacity:.5;-webkit-animation-timing-function:ease-out}100%{-webkit-transform:translateZ(0) rotateY(0);opacity:1}}@-moz-keyframes slit{50%{-moz-transform:translateZ(-250px) rotateY(89deg);opacity:.5;-moz-animation-timing-function:ease-out}100%{-moz-transform:translateZ(0) rotateY(0);opacity:1}}@keyframes slit{50%{transform:translateZ(-250px) rotateY(89deg);opacity:1;animation-timing-function:ease-in}100%{transform:translateZ(0) rotateY(0);opacity:1}}.magee-modal-effect-12 .magee-modal-content-wrapper{-webkit-transform:scale(0) rotate(720deg);-moz-transform:scale(0) rotate(720deg);-ms-transform:scale(0) rotate(720deg);transform:scale(0) rotate(720deg);opacity:0}.magee-modal-effect-12 .magee-modal-content-wrapper,.magee-modal-show.magee-modal-effect-12~.magee-modal-overlay{-webkit-transition:all .5s;-moz-transition:all .5s;transition:all .5s}.magee-modal-show.magee-modal-effect-12 .magee-modal-content-wrapper{-webkit-transform:scale(1) rotate(0);-moz-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.magee-modal-effect-13.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-13 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(600px) rotateX(20deg);-moz-transform:translateZ(600px) rotateX(20deg);-ms-transform:translateZ(600px) rotateX(20deg);transform:translateZ(600px) rotateX(20deg);opacity:0}.magee-modal-show.magee-modal-effect-13 .magee-modal-content-wrapper{-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in;-webkit-transform:translateZ(0) rotateX(0);-moz-transform:translateZ(0) rotateX(0);-ms-transform:translateZ(0) rotateX(0);transform:translateZ(0) rotateX(0);opacity:1}.magee-modal-effect-14.magee-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.magee-modal-effect-14 .magee-modal-content-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translate(30%) translateZ(600px) rotate(10deg);-moz-transform:translate(30%) translateZ(600px) rotate(10deg);-ms-transform:translate(30%) translateZ(600px) rotate(10deg);transform:translate(30%) translateZ(600px) rotate(10deg);opacity:0}.magee-modal-show.magee-modal-effect-14 .magee-modal-content-wrapper{-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in;-webkit-transform:translate(0) translateZ(0) rotate(0);-moz-transform:translate(0) translateZ(0) rotate(0);-ms-transform:translate(0) translateZ(0) rotate(0);transform:translate(0) translateZ(0) rotate(0);opacity:1}.magee-modal-effect-15 .magee-modal-content-wrapper{-webkit-transform:scale(2);-moz-transform:scale(2);-ms-transform:scale(2);transform:scale(2);opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.magee-modal-show.magee-modal-effect-15 .magee-modal-content-wrapper{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.popover{border-radius:0}.tooltip-inner{border-radius:0}.magee-expand{cursor:pointer}.magee-icon-list{margin:0}.magee-icon-list li{list-style-type:none;padding-bottom:.8em;position:relative;padding-left:2em}.magee-icon-list.icon-list-border li{padding-top:.8em;border-bottom:1px solid #e5e5e5}.magee-icon-list.icon-list-border li:last-child{padding-top:.8em;border-bottom:0!important}.magee-icon-list li i{text-align:center;width:1.6em;height:1.6em;line-height:1.6em;position:absolute;top:0;left:0}.icon-list-border li i{top:.8em}.icon-list-border li img{top:.8em}.icon-list-primary li i{color:#fdd200}.icon-list-circle li i{background-color:#ccc;color:#fff;border-radius:50%}.icon-list-primary.icon-list-circle li i{background-color:#fdd200;color:#fff}.divider{margin-top:30px;margin-bottom:30px;position:relative}.divider-inner{width:100%;max-width:100%!important;display:table;min-height:1px}.divider-border .divider-inner{border:0 solid #e5e5e5;border-bottom-width:1px;height:1px}.divider-border.dashed .divider-inner{border-style:dashed}.divider-border.dotted .divider-inner{border-style:dotted}.divider-border.double-line .divider-inner{height:8px;border-top-width:1px;border-bottom-width:1px}.divider-shadow .divider-inner{position:relative;background:radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0);background:-webkit-radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0);background:-moz-radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0);background:-o-radial-gradient(ellipse at 50% -50% ,rgba(0,0,0,.1) 0,rgba(255,255,255,0) 80%) repeat scroll 0 0 rgba(0,0,0,0)}.divider-shadow .divider-inner:after{display:block;height:5px;width:100%;content:'';background:-webkit-radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 65%);background:-moz-radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 80%);background:-o-radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 80%);background:radial-gradient(ellipse at 50% -50%,rgba(0,0,0,.3) 0,rgba(255,255,255,0) 65%)}.divider-border.narrow{width:100px}.divider-image .divider-inner{background-image:url(../images/divider-2.png);background-position:center center;background-repeat:repeat-x;height:9px}.divider-border .divider-inner.primary{border-color:#fdd200}.divider-border .divider-inner.light{border-color:#fff}.divider-border .divider-inner.dark{border-color:#222}.divider.center{margin-left:auto;margin-right:auto;text-align:center}.divider-inner-item{display:table-cell;vertical-align:middle}.divider-inner-icon{width:40px;height:40px}.divider-inner-back-to-top{width:1px;padding-left:10px}@media screen and (min-width:640px){.divider-inner-title{width:50px;white-space:nowrap}.divider-title-left .divider-inner-title{padding-right:10px}.divider-title-center .divider-inner-title{padding:0 10px}.divider-title-right .divider-inner-title{padding-left:10px}}.ss-style-dots::before{bottom:20px;width:14px;height:14px;border-radius:50%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);background:#2072a7;box-shadow:30px 0 #2072a7,-30px 0 #2072a7}.ss-style-doubleline::before{bottom:30px;width:140px;height:2px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);background:#2072a7;box-shadow:0 30px 0 #2072a7}.ss-style-cross{padding-bottom:15em}.ss-style-cross::after,.ss-style-cross::before{background:#2072a7;bottom:70px;width:200px;height:2px;left:50%;-webkit-transform-origin:50% 50%;transform-origin:50% 50%}.ss-style-cross::before{-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg)}.ss-style-cross::after{-webkit-transform:translateX(-50%) rotate(-45deg);transform:translateX(-50%) rotate(-45deg)}.magee-section-separator{position:absolute;width:100%;left:0;background-color:inherit}.magee-section-separator::after,.magee-section-separator::before{position:absolute;content:'';pointer-events:none}.magee-section-separator svg{position:absolute;z-index:2}.ss-triangle-up{bottom:100%}.ss-triangle-down{top:100%}.ss-triangle-down::after,.ss-triangle-up::before{left:50%;width:40px;height:40px;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg);background-color:inherit}.ss-triangle-up::before{top:-20px}.ss-triangle-down::after{bottom:-20px}.ss-doublediagonal{z-index:1;padding-top:6em;margin-bottom:-6em;background-color:inherit;bottom:100%}.ss-doublediagonal::after,.ss-doublediagonal::before{top:0;z-index:-1;width:100%;height:75%;background:inherit;-webkit-transform:rotate(-2deg);transform:rotate(-2deg);-webkit-transform-origin:0 0;transform-origin:0 0}.ss-doublediagonal::before{height:50%;background:rgba(0,0,0,.3);-webkit-transform:rotate(-3deg);transform:rotate(-3deg);-webkit-transform-origin:3% 0;transform-origin:3% 0}.ss-halfcircle-up{bottom:100%}.ss-halfcircle-down{top:100%}.ss-halfcircle-down::after,.ss-halfcircle-up::before{left:50%;z-index:2;width:100px;height:100px;border-radius:50%;background-color:inherit;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.ss-halfcircle-up::before{top:-50px}.ss-halfcircle-down::after{bottom:-50px}.ss-bigtriangle-up{bottom:100%}.ss-bigtriangle-down{top:100%}.ss-bigtriangle-down svg,.ss-bigtriangle-up svg{pointer-events:none;left:0}.ss-bigtriangle-up svg{bottom:0}.ss-bigtriangle-down svg{top:0}.ss-bigtriangle-down svg path,.ss-bigtriangle-up svg path{fill:#3498db;stroke:#3498db;stroke-width:2}.ss-bighalfcircle-up{bottom:100%}.ss-bighalfcircle-down{top:100%}.ss-bighalfcircle-up svg{left:0;bottom:0}.ss-bighalfcircle-down svg{left:0;top:0}.ss-bighalfcircle svg path,.ss-bighalfcircle-up svg path{fill:#3498db;stroke:#3498db}.ss-curl-up{bottom:100%}.ss-curl-down{top:100%}.ss-curl-up svg{left:0;bottom:0}.ss-curl-down svg{left:0;top:0}.ss-curl-down svg path,.ss-curl-up svg path{fill:#3498db;stroke:#3498db}.ss-multitriangles-up{bottom:100%}.ss-multitriangles-down{top:100%}.ss-multitriangles-down::after,.ss-multitriangles-up::before{left:50%;width:50px;height:50px;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg)}.ss-multitriangles-up::before{top:-25px;background:inherit;box-shadow:-50px 50px 0 #3498db,50px -50px 0 #3498db}.ss-multitriangles-down::after{bottom:-25px;z-index:10;background:inherit;box-shadow:-50px 50px 0 #3498db,50px -50px 0 #3498db}.ss-roundedsplit-up{padding-top:2em;bottom:100%}.ss-roundedsplit-up::after,.ss-roundedsplit-up::before{top:-70px;left:0;z-index:10;width:50%;height:70px;background:inherit}.ss-roundedsplit-up::before{border-radius:0 80px 0 0}.ss-roundedsplit-up::after{left:50%;border-radius:80px 0 0 0}.ss-roundedcorners-down{top:100%}.ss-roundedcorners-down::before{top:100%;left:0;z-index:10;width:100%;height:60px;border-radius:0 0 60px 60px;background:inherit}.ss-invertedrounded{height:90px;border-radius:0 0 0 90px;top:100%;z-index:2}.ss-invertedrounded::before{top:90px;width:100%;height:90px;background-color:inherit;z-index:2}.ss-invertedrounded::after{top:90px;width:100%;background-color:#3498db;height:90px;border-radius:0 90px 0 0;z-index:3}.ss-boxes-up{bottom:100%}.ss-boxes-down{top:100%}.ss-boxes-down:after,.ss-boxes-up::before{left:0;width:100%;height:50px;background-image:-webkit-gradient(linear,100% 0,0 100%,color-stop(.5,transparent),color-stop(.5,#2980b9));background-image:linear-gradient(to right,transparent 50%,#2980b9 50%);-webkit-background-size:130px 100%;background-size:130px 100%}.ss-boxes-up::before{bottom:0}.ss-boxes-down::after{z-index:2;top:0}.ss-zigzag-up{bottom:100%}.ss-zigzag-down{top:100%}.ss-zigzag-down::after,.ss-zigzag-up::before{right:0;left:0;z-index:3;display:block;height:90px;background-size:50px 100%}.ss-zigzag-up::before{top:-90px;background-image:-webkit-gradient(linear,0 0,300% 100%,color-stop(.25,transparent),color-stop(.25,#3498db));background-image:linear-gradient(315deg,#3498db 25%,transparent 25%),linear-gradient(45deg,#3498db 25%,transparent 25%);background-position:50%}.ss-zigzag-down::after{top:100%;background-image:-webkit-gradient(linear,0 0,300% 100%,color-stop(.25,#3498db),color-stop(.25,transparent));background-image:linear-gradient(135deg,#3498db 25%,transparent 25%),linear-gradient(225deg,#3498db 25%,transparent 25%);background-position:50%}.ss-foldedcorner{top:100%;height:100px;background-color:inherit;width:calc(100% - 100px);z-index:2}.ss-foldedcorner::after,.ss-foldedcorner::before{bottom:0;width:100px;height:100px}.ss-foldedcorner::before{right:-100px;background-image:-webkit-linear-gradient(top left,#fff 50%,rgba(0,0,0,0) 50%);background-image:linear-gradient(315deg,rgba(0,0,0,0) 46%,rgba(0,0,0,.3) 50%,#fff 50%)}.ss-foldedcorner::after{right:0;background-image:-webkit-linear-gradient(top left,transparent 50%,rgba(0,0,0,.1) 50%);background-image:linear-gradient(315deg,rgba(0,0,0,.1) 50%,transparent 50%)}.ss-stamp-up{bottom:100%}.ss-stamp-down{top:100%}.ss-stamp-up svg{left:0;bottom:0}.ss-stamp-down svg{left:0;top:0}.ss-curl-down svg path,.ss-curl-up svg path{fill:#3498db;stroke:#3498db}.ss-clouds-up{bottom:100%}.ss-clouds-down{top:100%}.ss-clouds-up svg{left:0;bottom:0}.ss-clouds-down svg{left:0;top:0}.ss-clouds-down svg path,.ss-clouds-up svg path{fill:#3498db;stroke:#3498db}.img-box{overflow:hidden;position:relative;display:inline-block;margin-bottom:-8px;max-width:100%}.img-box .img-overlay{position:absolute;top:0;left:0;width:100%;height:100%;transition:all .1s ease;-webkit-transition:all .1s ease}.img-box .img-overlay.primary{background-color:rgba(253,210,0,.7)}.img-box .img-overlay.dark{background-color:rgba(0,0,0,.35)}.img-box .img-overlay.light{background-color:rgba(255,255,255,.35)}.img-box:hover .img-overlay{transition:all .1s ease;-webkit-transition:all .5s ease}.img-overlay-container{display:table;height:100%;width:100%}.img-box .img-overlay-content{display:table-cell;padding:5px;position:relative}.img-overlay-total-link{position:absolute;z-index:2;width:100%;height:100%;left:0;top:0}.img-overlay-content .entry-category{position:relative;z-index:3}.img-box.figcaption-middle .img-overlay-content{vertical-align:middle;text-align:center}.img-box.figcaption-top .img-overlay-content{vertical-align:top}.img-box.figcaption-bottom .img-overlay-content{vertical-align:bottom}.img-box.fade-in .img-overlay{opacity:0}.img-box.fade-in:hover .img-overlay{opacity:1}.img-box.from-left .img-overlay{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.img-box.from-left:hover .img-overlay{-webkit-transform:translateX(0);transform:translateX(0)}.img-box.from-right .img-overlay{-webkit-transform:translateX(100%);transform:translateX(100%)}.img-box.from-right:hover .img-overlay{-webkit-transform:translateX(0);transform:translateX(0)}.img-box.from-top .img-overlay{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.img-box.from-top:hover .img-overlay{-webkit-transform:translateY(0);transform:translateY(0)}.img-box.from-bottom .img-overlay{-webkit-transform:translateY(100%);transform:translateY(100%)}.img-box.from-bottom:hover .img-overlay{-webkit-transform:translateY(0);transform:translateY(0)}.img-box img{transition:all .1s ease;-webkit-transition:all .5s ease}.img-box:hover img{transition:all .1s ease;-webkit-transition:all .5s ease}.img-box.img-zoom-in:hover img{-webkit-transform:scale(1.1);transform:scale(1.1)}.img-box.img-zoom-out img{-webkit-transform:scale(1.1);transform:scale(1.1)}.img-box.img-zoom-out:hover img{-webkit-transform:scale(1);transform:scale(1)}.img-box.img-scroll-left img,.img-box.img-scroll-right img{width:calc(105%);max-width:none}.img-box.img-scroll-left img{-webkit-transform:translateX(0);transform:translateX(0)}.img-box.img-scroll-left:hover img{-webkit-transform:translateX(-5%);transform:translateX(-5%)}.img-box.img-scroll-right img{-webkit-transform:translateX(-5%);transform:translateX(-5%)}.img-box.img-scroll-right:hover img{-webkit-transform:translateX(0);transform:translateX(0)}.img-box .img-overlay-content i{color:#fff;font-size:30px}.img-box .img-overlay-icons i{color:#3c3c3c;margin:0 10px;width:48px;height:48px;font-size:24px;line-height:48px;background-color:#fdd200}.img-box h3.img-overlay-title{color:#fff}.img-frame{overflow:hidden}.img-frame.rounded{border-radius:5px}.img-frame.circle{border-radius:50%}.img-frame.border{border:6px solid #f5f5f5}.img-frame.shadow{box-shadow:2px 2px 5px 0 #aaa}.magee-image-banner .img-box .img-overlay-content{color:#fff}.magee-image-banner .img-box .img-overlay-content{padding:15px}.magee-image-banner .img-box:hover .img-overlay{background-color:rgba(0,0,0,.35)}.multi-carousel{padding:0;position:relative}.multi-carousel-inner{overflow:hidden}ul.multi-carousel-holder{overflow:hidden;margin-bottom:0}.multi-carousel-holder li.multi-carousel-item{list-style-type:none;float:left;margin:0;padding:0 15px}.carousel-caption{top:10%;bottom:auto}.multi-carousel-nav .multi-carousel-nav-next,.multi-carousel-nav .multi-carousel-nav-prev{width:30px;height:30px;font:normal normal normal 30px/30px FontAwesome;display:inline-block;text-align:center;color:#777;opacity:.8;background-color:transparent}.multi-carousel-nav.style1 .multi-carousel-nav-next,.multi-carousel-nav.style1 .multi-carousel-nav-prev{position:absolute;top:50%;margin-top:-15px}.multi-carousel-nav.nav-border .multi-carousel-nav-next,.multi-carousel-nav.nav-border .multi-carousel-nav-prev{border:1px solid #777;font:normal normal normal 14px/30px FontAwesome}.multi-carousel-nav.light .multi-carousel-nav-next,.multi-carousel-nav.light .multi-carousel-nav-prev{border-color:#fff;color:#fff}.multi-carousel-nav.nav-bg .multi-carousel-nav-next,.multi-carousel-nav.nav-bg .multi-carousel-nav-prev{color:#fff;background-color:rgba(0,0,0,.8);font:normal normal normal 14px/30px FontAwesome}.multi-carousel-nav.nav-square .multi-carousel-nav-next,.multi-carousel-nav.nav-square .multi-carousel-nav-prev{border-radius:0}.multi-carousel-nav.nav-rounded .multi-carousel-nav-next,.multi-carousel-nav.nav-rounded .multi-carousel-nav-prev{border-radius:5px}.multi-carousel-nav.nav-circle .multi-carousel-nav-next,.multi-carousel-nav.nav-circle .multi-carousel-nav-prev{border-radius:50%}.multi-carousel-nav.nav-lg .multi-carousel-nav-next,.multi-carousel-nav.nav-lg .multi-carousel-nav-prev{width:50px;height:50px;font:normal normal normal 50px/50px FontAwesome}.multi-carousel-nav.nav-lg.nav-bg .multi-carousel-nav-next,.multi-carousel-nav.nav-lg.nav-bg .multi-carousel-nav-prev,.multi-carousel-nav.nav-lg.nav-border .multi-carousel-nav-next,.multi-carousel-nav.nav-lg.nav-border .multi-carousel-nav-prev{font:normal normal normal 24px/50px FontAwesome}.multi-carousel-nav.nav-xl .multi-carousel-nav-next,.multi-carousel-nav.nav-xl .multi-carousel-nav-prev{width:70px;height:70px;font:normal normal normal 70px/70px FontAwesome}.multi-carousel-nav.nav-xl.nav-bg .multi-carousel-nav-next,.multi-carousel-nav.nav-xl.nav-bg .multi-carousel-nav-prev,.multi-carousel-nav.nav-xl.nav-border .multi-carousel-nav-next,.multi-carousel-nav.nav-xl.nav-border .multi-carousel-nav-prev{font:normal normal normal 34px/70px FontAwesome}.multi-carousel-nav .multi-carousel-nav-next:hover,.multi-carousel-nav .multi-carousel-nav-prev:hover{opacity:1}.multi-carousel-nav .multi-carousel-nav-prev:before{content:"\f104"}.multi-carousel-nav .multi-carousel-nav-next:before{content:"\f105"}.multi-carousel-nav.style1 .multi-carousel-nav-prev{left:0}.multi-carousel-nav.style1 .multi-carousel-nav-next{right:0}.multi-carousel-nav.style2{margin:10px 0 0;text-align:center}.multi-carousel-nav.style2 .multi-carousel-nav-next,.multi-carousel-nav.style2 .multi-carousel-nav-prev{margin:0 2px}.multi-carousel-nav.style3{margin:0 0 10px;border-bottom:1px dotted #ddd;width:100%;overflow:hidden;padding-bottom:10px;text-align:right}.multi-carousel-nav.style3 .multi-carousel-nav-next,.multi-carousel-nav.style3 .multi-carousel-nav-prev{margin:0 2px}ol.multi-carousel-indicators{margin-bottom:0;bottom:0}.multi-carousel-indicators.style1 li{border-color:#ddd}.carousel-indicators .active{background-color:#ddd}.multi-carousel-nav-next,.multi-carousel-nav-prev{z-index:9}.magee-carousel .owl-nav{display:none}.magee-carousel .owl-controls{position:relative;text-align:center;height:auto;margin-top:0;display:none}.magee-carousel .owl-controls.style1,.magee-carousel .owl-controls.style2,.magee-carousel .owl-controls.style3,.magee-carousel .owl-controls.style4{display:block}.magee-carousel .owl-controls .owl-dot{display:inline-block}.magee-carousel .owl-controls .owl-dot span{display:block;width:10px;height:10px;margin:25px 5px 0;opacity:.4;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;background-color:#777;overflow:hidden}.magee-carousel .owl-controls .owl-dot.active span,.magee-carousel .owl-controls.clickable .owl-page:hover span{opacity:1}.magee-carousel .owl-controls.style2 .owl-dot span{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;width:8px;height:8px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.magee-carousel .owl-controls.style3 .owl-dot span{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:transparent;border:1px solid #777;width:8px;height:8px}.magee-carousel .owl-controls.clickable.style3 .owl-page:hover span,.magee-carousel .owl-controls.style3 .owl-dot.active span{opacity:1;background-color:#777}.magee-carousel .owl-controls.style4 .owl-dot span{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:transparent;border:1px solid #777;width:15px;height:5px;margin:25px 3px 0;border-radius:10px}.magee-carousel .owl-controls.clickable.style4 .owl-page:hover span,.magee-carousel .owl-controls.style4 .owl-dot.active span{opacity:1;background-color:#777}.portfolio-box figcaption{margin-bottom:10px}.portfolio-box figcaption h3{margin:0;font-size:18px;padding:20px 0 10px}.portfolio-box figcaption ul{display:inline-block;margin-left:0;margin-bottom:10px}.portfolio-box figcaption li{list-style-type:none;float:left}.portfolio-box figcaption li+li::before{content:"\, "}.portfolio-img-box{position:relative;background-color:#fdd200}.portfolio-info-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;opacity:0}.portfolio-img-box:hover .portfolio-info-box{z-index:9;opacity:1}.portfolio-img-box:hover img{opacity:.15;transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s}.portfolio-img-box .portfolio-icon-box{position:absolute;top:50%;left:0;margin-top:-25px;width:100%;text-align:center;transform:translateY(-80px);-webkit-transform:translateY(-80px);-o-transform:translateY(-80px);transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s}.portfolio-img-box:hover .portfolio-icon-box{transform:translateY(0);-webkit-transform:translateY(0);-o-transform:translateY(0);transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s}.portfolio-icon-box a{display:inline-block;width:50px;height:50px;border-radius:25px;margin:0 20px;background-color:#fff;font-size:20px;line-height:50px}.portfolio-list-wrap{position:relative;margin:0}.portfolio-list-items{overflow:hidden;margin:0 -15px}.portfolio-box-wrap{float:left;padding:0 15px 15px;margin-bottom:30px}.portfolio-carousel .portfolio-box-wrap{padding-bottom:0}.portfolio-list-filter .portfolio-box-wrap{display:none}.portfolio-list-wrap.full-width .portfolio-list-items{margin:0}.portfolio-list-wrap.full-width .portfolio-box-wrap{padding:0;margin-bottom:0}.portfolio-box .feature-img-box{margin-bottom:0}.portfolio-box .entry-header{margin:0;padding-bottom:0;padding-top:10px}.portfolio-box .entry-title{margin:20px 0 0}.portfolio-box .entry-meta{margin:10px 0 0}.portfolio-box .entry-summary{margin:5px 0 0}.magee-blog-list-wrap .entry-box-wrap .entry-header a h4{color:#666;margin:0 0 10px}.magee-blog-list-wrap .entry-box-wrap .entry-header a:hover h4{color:#fdd200}.shortcode-blog-list-wrap .post-pagination-decoration{height:auto;position:static;background-color:transparent}.shortcode-blog-list-wrap .post-pagination-decoration li{display:inline;padding:5px}.blog-timeline-icon{font-size:60px;color:#ccc}.blog-timeline-inner{position:relative}.blog-timeline-line{position:absolute;top:0;left:30px;margin-left:-1px;height:100%;border-left:1px solid #e5e5e5;border-right:1px solid #e5e5e5}.blog-list-wrap.blog-timeline .entry-box-wrap{width:100%;position:relative}.blog-list-wrap.blog-timeline .entry-box-wrap:after{content:"";position:absolute;width:10px;height:10px;border-radius:50%;background-color:#e5e5e5;top:55px;left:25px}.blog-list-wrap.blog-timeline .entry-box{border:1px solid #ccc;padding:1px;background-color:#fff;position:relative;box-shadow:1px 1px 5px 0 rgba(0,0,0,.1);margin-bottom:50px}.blog-list-wrap.blog-timeline .entry-box:before{content:"";position:absolute;width:0;height:0;border:10px solid transparent;top:50px}.blog-list-wrap.blog-timeline .entry-box:before{border-right-color:#ccc;left:0;margin-left:-21px}.blog-list-wrap.blog-timeline .entry-box:after{content:"";position:absolute;width:0;height:0;border:9px solid transparent;top:51px}.blog-list-wrap.blog-timeline .entry-box:after{border-right-color:#fff;left:0;margin-left:-18px}.blog-list-wrap.blog-timeline .entry-main{padding:10px 20px}.blog-timeline-loading{margin:20px 0}.magee-blog .entry-meta li{list-style:none}.magee-blog .entry-box-wrap{padding-bottom:15px}.magee-blog .entry-title{margin:0 0 10px}.magee-blog .entry-header{border-bottom:none;margin-bottom:0;padding-bottom:10px;padding-top:10px;margin-top:0}.magee-blog a{text-decoration:none}.magee-blog .entry-meta{font-size:12px;text-transform:uppercase;margin:0;padding:10px 0}.magee-blog .entry-meta li{list-style-type:none;display:inline-block;margin-right:10px}.magee-blog .feature-img-box{padding-bottom:15px}.magee-blog .feature-img-box img{max-width:100%}.magee-blog .entry-meta li.entry-comments{margin-right:0}.magee-blog .entry-meta i{margin-right:5px}.magee-blog .entry-meta a{color:#888}.magee-blog .entry-meta a:hover{color:#fdd200}.magee-blog .entry-footer{margin:20px 0;overflow:hidden}.magee-blog .entry-tags{margin:10px 0}.magee-blog .entry-share{margin:10px 0}.magee-blog .entry-share li,.magee-blog .entry-tags li{display:inline-block;list-style-type:none}.magee-blog .entry-share li a,.magee-blog .entry-tags li a{display:block;padding:0 10px;border:1px solid #a0a0a0;font-size:.9em;line-height:22px}.magee-blog .entry-tags.no-border li{margin-right:10px}.magee-blog .entry-share.no-border li{margin-left:10px}.magee-blog .entry-share.no-border li a,.magee-blog .entry-tags.no-border li a{border:none;padding:0}.magee-blog .entry-footer li a:hover{border-color:#fdd200}@media screen and (min-width:768px){.blog-timeline-icon{text-align:center}.blog-timeline-line{left:50%}.blog-list-wrap.blog-timeline .entry-box-wrap{width:50%}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-left{float:left;padding-right:10%}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-left:after{right:0;margin-right:-5px;left:auto}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-right{float:right;padding-left:10%}.blog-list-wrap.blog-timeline .entry-box-wrap.timeline-right:after{left:0;margin-left:-5px}.blog-list-wrap.blog-timeline .timeline-left .entry-box:before{border-left-color:#ccc;border-right-color:transparent;left:auto;right:0;margin-right:-21px;margin-left:0}.blog-list-wrap.blog-timeline .timeline-left .entry-box:after{border-left-color:#fff;border-right-color:transparent;left:auto;right:0;margin-right:-18px}}.clients img{opacity:.6}.clients img:hover{opacity:1}.magee-contact-form .row{margin:0 -5px}.magee-contact-form label{padding-left:0}.magee-contact-form .checkbox label{padding-left:30px}.magee-contact-form .checkbox input[type=checkbox]{margin-left:-30px}.magee-contact-form [class*=col-]{padding:0 5px}.magee-contact-form .input-group-addon{padding:10px}.magee-contact-form .form-control{padding:20px;margin-bottom:0}.magee-contact-form .form-group,.magee-shortcode .magee-contact-form .checkbox{margin-bottom:15px}.magee-contact-form .input-group .form-control{margin-bottom:0}.magee-contact-form .checkbox,.magee-contact-form .radio{margin:0}.magee-contact-form .input-group-addon:first-child{border-radius:0}.magee-contact-form input:focus,.magee-contact-form textarea:focus{border-color:inherit}.magee-contact-form input::-webkit-input-placeholder,.magee-contact-form textarea::-webkit-input-placeholder{color:inherit;opacity:.8}.magee-contact-form input:-moz-placeholder,.magee-contact-form textarea:-moz-placeholder{color:inherit;opacity:.8}.magee-contact-form.contact-form-custom input:focus,.magee-contact-form.contact-form-custom textarea:focus{box-shadow:0 0 5px 1px rgba(0,0,0,.1)}.magee-contact-form.contact-form-line .form-control{padding:19px;background-color:transparent;border-width:2px}.magee-contact-form.contact-form-bg input[type=submit],.magee-contact-form.contact-form-line input[type=submit]{width:100%}.magee-contact-form.contact-form-line.dark{color:#222}.magee-contact-form.contact-form-line.light{color:#fff}.magee-contact-form.contact-form-line.dark .form-control{border-color:#222;color:#222}.magee-contact-form.contact-form-line.light .form-control{border-color:#fff;color:#fff}.magee-contact-form.contact-form-line input:focus,.magee-contact-form.contact-form-line textarea:focus{border-color:inherit}.magee-contact-form.contact-form-line.dark input:focus,.magee-contact-form.contact-form-line.dark textarea:focus{border-color:inherit;background-color:rgba(0,0,0,.1)}.magee-contact-form.contact-form-line.light input:focus,.magee-contact-form.contact-form-line.light textarea:focus{border-color:inherit;background-color:rgba(255,255,255,.1)}.magee-contact-form.contact-form-bg .form-control{border:none;padding:21px}.magee-contact-form.contact-form-bg.dark .form-control{background-color:#222;color:#fff}.magee-contact-form.contact-form-bg.light .form-control{background-color:#fff;color:#222}.magee-contact-form input.form-control{display:block;padding:0 20px!important;height:42px}.notice-success{color:green}.notice-error{color:red}.back-to-top{position:fixed;right:10px;bottom:10px;width:48px;height:48px;font:normal normal normal 20px/48px FontAwesome;text-align:center;color:#fff;background-color:#aaa;opacity:.5}.back-to-top:hover{color:#fff;opacity:.8}.magee-flipbox-wrap{position:relative;-webkit-perspective:2000px;-moz-perspective:2000px;-ms-perspective:2000px;perspective:2000px;width:100%}.magee-flipbox{position:relative;width:100%;height:100%;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:all .5s cubic-bezier(.645,.045,.355,1);-moz-transition:all .5s cubic-bezier(.645,.045,.355,1);-ms-transition:all .5s cubic-bezier(.645,.045,.355,1);-o-transition:all .5s cubic-bezier(.645,.045,.355,1);transition:all .5s cubic-bezier(.645,.045,.355,1)}.flipbox-back,.flipbox-front{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:all .5s cubic-bezier(.645,.045,.355,1);-moz-transition:all .5s cubic-bezier(.645,.045,.355,1);-ms-transition:all .5s cubic-bezier(.645,.045,.355,1);-o-transition:all .5s cubic-bezier(.645,.045,.355,1);transition:all .5s cubic-bezier(.645,.045,.355,1);-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d;position:absolute;left:0;top:0;height:100%;min-height:100%;width:100%;display:table;table-layout:fixed}.magee-flipbox-wrap.horizontal .flipbox-front{-webkit-transform:rotateY(0);transform:rotateY(0);z-index:2}.magee-flipbox-wrap.horizontal:hover .flipbox-front{-webkit-transform:rotateY(180deg);transform:rotateY(180deg);visibility:hidden}.magee-flipbox-wrap.horizontal .flipbox-back{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.magee-flipbox-wrap.horizontal:hover .flipbox-back{-webkit-transform:rotateY(0);transform:rotateY(0);z-index:3}.magee-flipbox-wrap.horizontal .horizontal-touchstart-front{-webkit-transform:rotateY(180deg);transform:rotateY(180deg);visibility:hidden}.magee-flipbox-wrap.horizontal .horizontal-touchstart-back{-webkit-transform:rotateY(0);transform:rotateY(0);z-index:3}.magee-flipbox-wrap.horizontal .horizontal-touchend-front{-webkit-transform:rotateY(0)!important;transform:rotateY(0)!important;visibility:visible!important}.magee-flipbox-wrap.horizontal .horizontal-touchend-back{-webkit-transform:rotateY(-180deg)!important;transform:rotateY(-180deg)!important}.magee-flipbox-wrap.vertical .flipbox-front{-webkit-transform:rotateX(0);transform:rotateX(0);z-index:2}.magee-flipbox-wrap.vertical:hover .flipbox-front{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg);visibility:hidden}.magee-flipbox-wrap.vertical .flipbox-back{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.magee-flipbox-wrap.vertical:hover .flipbox-back{-webkit-transform:rotateX(0);transform:rotateX(0);z-index:3}.magee-flipbox-wrap.vertical .vertical-touchstart-front{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg);visibility:hidden}.magee-flipbox-wrap.vertical .vertical-touchstart-back{-webkit-transform:rotateX(0);transform:rotateX(0);z-index:3}.magee-flipbox-wrap.vertical .vertical-touchend-front{-webkit-transform:rotateX(0)!important;transform:rotateX(0)!important;visibility:visible!important}.magee-flipbox-wrap.vertical .vertical-touchend-back{-webkit-transform:rotateX(180deg)!important;transform:rotateX(180deg)!important}.flipbox-content{text-align:center;vertical-align:middle;display:table-cell;width:100%;padding:15px}.magee-flipbox-wrap.slide-left:hover .flipbox-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-left .flipbox-back{-webkit-transform:translateX(-50%);transform:translateX(-50%);opacity:0}.magee-flipbox-wrap.slide-left:hover .flipbox-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-left .slide-left-touchstart-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-left .slide-left-touchstart-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-left .slide-left-touchend-front{-webkit-transform:translateX(0)!important;transform:translateX(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-left .slide-left-touchend-back{-webkit-transform:translateX(-50%)!important;transform:translateX(-50%)!important;opacity:0!important}.magee-flipbox-wrap.slide-right:hover .flipbox-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-right .flipbox-back{-webkit-transform:translateX(50%);transform:translateX(50%);opacity:0}.magee-flipbox-wrap.slide-right:hover .flipbox-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-right .slide-right-touchstart-front{-webkit-transform:translateX(0);transform:translateX(0);opacity:0}.magee-flipbox-wrap.slide-right .slide-right-touchstart-back{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.magee-flipbox-wrap.slide-right .slide-right-touchend-front{-webkit-transform:translateX(0)!important;transform:translateX(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-right .slide-right-touchend-back{-webkit-transform:translateX(10%)!important;transform:translateX(10%)!important;opacity:0!important}.magee-flipbox-wrap.slide-top:hover .flipbox-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-top .flipbox-back{-webkit-transform:translateY(-50%);transform:translateY(-50%);opacity:0}.magee-flipbox-wrap.slide-top:hover .flipbox-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-top .slide-top-touchstart-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-top .slide-top-touchstart-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-top .slide-top-touchend-front{-webkit-transform:translateY(0)!important;transform:translateY(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-top .slide-top-touchend-back{-webkit-transform:translateY(-50%)!important;transform:translateY(-50%)!important;opacity:0!important}.magee-flipbox-wrap.slide-bottom:hover .flipbox-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-bottom .flipbox-back{-webkit-transform:translateY(50%);transform:translateY(50%);opacity:0}.magee-flipbox-wrap.slide-bottom:hover .flipbox-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchstart-front{-webkit-transform:translateY(0);transform:translateY(0);opacity:0}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchstart-back{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchend-front{-webkit-transform:translateY(0)!important;transform:translateY(0)!important;opacity:1!important}.magee-flipbox-wrap.slide-bottom .slide-bottom-touchend-back{-webkit-transform:translateY(50%)!important;transform:translateY(50%)!important;opacity:0!important}.magee-flipbox-wrap.flip-bottom .flipbox-back{-webkit-transform-origin:0% 100%;-moz-transform-origin:0% 100%;-ms-transform-origin:0% 100%;-o-transform-origin:0% 100%;transform-origin:0% 100%;-webkit-transform:rotateX(-270deg);-moz-transform:rotateX(-270deg);-ms-transform:rotateX(-270deg);-o-transform:rotateX(-270deg);transform:rotateX(-270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-bottom:hover .flipbox-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-bottom .flip-bottom-touchstart-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-bottom .flip-bottom-touchend-back{-webkit-transform-origin:0% 100%!important;-moz-transform-origin:0% 100%!important;-ms-transform-origin:0% 100%!important;-o-transform-origin:0% 100%!important;transform-origin:0% 100%!important;-webkit-transform:rotateX(-270deg)!important;-moz-transform:rotateX(-270deg)!important;-ms-transform:rotateX(-270deg)!important;-o-transform:rotateX(-270deg)!important;transform:rotateX(-270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-flipbox-wrap.flip-top .flipbox-back{-webkit-transform-origin:0% 0%;-moz-transform-origin:0% 0%;-ms-transform-origin:0% 0%;-o-transform-origin:0% 0%;transform-origin:0% 0%;-webkit-transform:rotateX(270deg);-moz-transform:rotateX(270deg);-ms-transform:rotateX(270deg);-o-transform:rotateX(270deg);transform:rotateX(270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-top:hover .flipbox-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-top .flip-top-touchstart-back{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.magee-flipbox-wrap.flip-top .flip-top-touchend-back{-webkit-transform-origin:0% 0%!important;-moz-transform-origin:0% 0%!important;-ms-transform-origin:0% 0%!important;-o-transform-origin:0% 0%!important;transform-origin:0% 0%!important;-webkit-transform:rotateX(270deg)!important;-moz-transform:rotateX(270deg)!important;-ms-transform:rotateX(270deg)!important;-o-transform:rotateX(270deg)!important;transform:rotateX(270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-flipbox-wrap.flip-left .flipbox-back{-moz-transform-origin:0%;-ms-transform-origin:0%;-o-transform-origin:0%;-webkit-transform-origin:0%;transform-origin:0%;-webkit-transform:rotateY(-270deg);-moz-transform:rotateY(-270deg);-ms-transform:rotateY(-270deg);-o-transform:rotateY(-270deg);transform:rotateY(-270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-left:hover .flipbox-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-left .flip-left-touchstart-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-left .flip-left-touchend-back{-webkit-transform-origin:0%!important;-moz-transform-origin:0%!important;-ms-transform-origin:0%!important;-o-transform-origin:0%!important;transform-origin:0%!important;-webkit-transform:rotateY(-270deg)!important;-moz-transform:rotateY(-270deg)!important;-ms-transform:rotateY(-270deg)!important;-o-transform:rotateY(-270deg)!important;transform:rotateY(-270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-flipbox-wrap.flip-right .flipbox-back{-moz-transform-origin:100%;-ms-transform-origin:100%;-o-transform-origin:100%;-webkit-transform-origin:100%;transform-origin:100%;-webkit-transform:rotateY(270deg);-moz-transform:rotateY(270deg);-ms-transform:rotateY(270deg);-o-transform:rotateY(270deg);transform:rotateY(270deg);-webkit-backface-visibility:visible;-moz-backface-visibility:visible;-o-backface-visibility:visible;backface-visibility:visible}.magee-flipbox-wrap.flip-right:hover .flipbox-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-right .flip-right-touchstart-back{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.magee-flipbox-wrap.flip-right .flip-right-touchend-back{-webkit-transform-origin:100%!important;-moz-transform-origin:100%!important;-ms-transform-origin:100%!important;-o-transform-origin:100%!important;transform-origin:100%!important;-webkit-transform:rotateY(270deg)!important;-moz-transform:rotateY(270deg)!important;-ms-transform:rotateY(270deg)!important;-o-transform:rotateY(270deg)!important;transform:rotateY(270deg)!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important}.magee-icon{margin-right:10px;margin-bottom:10px}.magee-icon:last-child{margin-right:0}.magee-icon.square{border-radius:0}.magee-icon.rounded{border-radius:5px}.magee-icon.circle{border-radius:50%}.magee-icon.icon-boxed{width:2em;height:2em;line-height:2;text-align:center;color:#fff;background-color:#f5f5f5;border:1px solid transparent}.magee-icon.icon-3d{box-shadow:0 2px 0 0 #e5e5e5}.magee-fa-icon{font-size:inherit}.magee-fa-icon.icon-boxed{font-size:inherit;width:2em;height:2em;line-height:2em;text-align:center;color:#fff;background-color:#777;border:0;border-radius:5px}.magee-section{position:relative;-webkit-background-size:cover;-ms-background-size:cover;-o-background-size:cover;background-size:cover}.fullheight{min-height:100vh;display:table;width:100%}.magee-section.fullheight .section-content{display:table-cell;width:100%;position:relative;overflow:hidden}.magee-section.verticalmiddle .section-content{vertical-align:middle}.magee-section .background-media,.magee-section .background-overlay{position:absolute;width:100%;left:0;top:0;bottom:0;overflow:hidden}.gmnoprint img{max-width:none}.magee-slider .item img{width:100%}.magee-slider .carousel-control span{position:absolute;top:40%}.magee-slider .carousel-indicators{display:none}.magee-slider .carousel-control span::before{color:#fff;font-size:50px}.magee-heading{border-color:#555}.magee-heading .heading-inner{display:inline-block;border-style:solid;border-color:inherit}.magee-heading.heading-border .heading-inner{padding:5px 0;border-top-width:2px;border-bottom-width:2px;border-left-width:0!important;border-right-width:0!important}.magee-heading.heading-boxed .heading-inner{padding:10px;border-width:2px}.magee-heading.heading-boxed-reverse{color:#fff}.magee-heading.heading-boxed-reverse .heading-inner{padding:10px;box-shadow:0 0 0 2px #fff inset;border-width:2px;background-color:#555}.magee-heading.heading-doubleline{overflow:hidden}.magee-heading.heading-doubleline .heading-inner{position:relative;z-index:9}.magee-heading.heading-doubleline .heading-inner:after,.magee-heading.heading-doubleline .heading-inner:before{content:"";position:absolute;width:2000px;height:12px;border-top-width:1px;border-bottom-width:1px;border-left-width:0!important;border-right-width:0!important;border-style:solid;border-color:inherit;top:50%;margin-top:-6px;z-index:-1}.magee-heading.heading-doubleline .heading-inner:before{right:100%;margin-right:10px}.magee-heading.heading-doubleline .heading-inner:after{left:100%;margin-left:10px}.magee-heading.heading-charactershadow .heading-inner{position:relative;z-index:9;padding:2em 0 1em}.magee-heading.heading-charactershadow .heading-inner:before{content:"T";position:absolute;top:0;z-index:-1;color:inherit;opacity:.2;font-size:4em;width:100%}.table,.table td,.table th{border-width:0}.table.table-bordered{border-width:1px}.magee-table .table thead th{background-color:#fdd200;color:#fff;border-bottom-width:0}.img-side{padding:0;position:absolute;top:0;height:100%;overflow:hidden;z-index:100}.img-side.img-right{right:0}.img-side.img-left{left:0}.magee-twitter-feed{list-style-type:none;margin:0}.magee-twitter-feed li{list-style-type:none;font-style:italic;margin:0 0 12px 0;padding:0 0 0 25px;position:relative}.magee-twitter-feed li:before{position:absolute;font:normal normal normal 20px/25px FontAwesome;content:"\f099";left:0;top:0}.magee-twitter-feed li span{display:block;font-size:.8em;font-style:normal}.magee-label{background-color:#fdd200;padding:0 3px}.video-wrap{width:100%}.video-wrap iframe{width:100%;height:100%}.magee-wheather-box{background-color:#fdd200;color:#fff;padding:10px}.magee-wheather-box h2{color:#fff;margin-top:0;margin-bottom:5px}.magee-wheather .w-today{width:100%;overflow:hidden}.magee-wheather .w-icon-wrap{float:right;width:50%;text-align:center}.magee-wheather .w-icon-wrap i{font-size:3.4em;line-height:1.5}.magee-wheather .w-icon-wrap .w-text{margin-bottom:0;margin-top:5px}.magee-wheather .w-temp{float:left;width:50%;text-align:center;font-size:4em;line-height:1.5;margin-bottom:0}.magee-wheather .w-temp sup{opacity:.8;font-size:60%}.magee-wheather-box{background-color:#fdd200;color:#fff;padding:10px;font-size:inherit}.magee-wheather-box h2{color:#fff;margin-top:0;margin-bottom:5px}.magee-wheather .w-today{width:100%;overflow:hidden}.magee-wheather .w-icon-wrap{float:right;width:50%;text-align:center}.magee-wheather .w-icon-wrap i{font-size:3.4em;line-height:1.5}.magee-wheather .w-icon-wrap .w-text{margin-bottom:0;margin-top:5px;font-size:inherit}.magee-wheather .w-temp{float:left;width:50%;text-align:center;font-size:4em;line-height:1.5;margin-bottom:0}.magee-wheather .w-temp sup{opacity:.8;font-size:60%}.magee-wheather .w-detail{overflow:hidden;width:100%}.magee-wheather p.w-day{font-weight:700;font-size:inherit}.magee-wheather .w-detail ul{width:33%;float:left;list-style-type:none;margin:0}.magee-wheather .w-detail li{display:block;line-height:24px}.magee-wheather .w-forecasts{width:100%;margin-top:15px;border:0;table-layout:auto;border-collapse:collapse}.magee-wheather .w-forecasts tr{border-top:1px solid rgba(255,255,255,.15)}.magee-wheather .w-forecasts td{border:0;padding:5px 0;font-weight:700;color:#fff}.magee-wheather .w-forecasts td+td{min-width:40px;text-align:center;font-weight:400}.magee-blockquote blockquote{padding:10px 20px 10px 45px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee;position:relative}.magee-blockquote blockquote ol:last-child,.magee-blockquote blockquote p:last-child,.magee-blockquote blockquote ul:last-child{margin-bottom:0}.magee-blockquote blockquote .small,.magee-blockquote blockquote footer,.magee-blockquote blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}.magee-blockquote blockquote .small:before,.magee-blockquote blockquote footer:before,.magee-blockquote blockquote small:before{content:'\2014 \00A0'}.magee-blockquote .blockquote-reverse,.magee-blockquote blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse small:before,.magee-blockquote .blockquote-reverse .small:before,.magee-blockquote .blockquote-reverse footer:before,.magee-blockquote blockquote.pull-right .small:before,.magee-blockquote blockquote.pull-right footer:before,.magee-blockquote blockquote.pull-right small:before{content:''}.magee-blockquote .blockquote-reverse .small:after,.magee-blockquote .blockquote-reverse footer:after,.magee-blockquote .blockquote-reverse small:after,.magee-blockquote blockquote.pull-right .small:after,.magee-blockquote blockquote.pull-right footer:after,.magee-blockquote blockquote.pull-right small:after{content:'\00A0 \2014'}.magee-blockquote blockquote::before{font-family:Arial;content:"\201C";color:#78c0a8;font-size:4em;position:absolute;left:10px;top:0;line-height:1}.magee-blockquote blockquote footer a{color:#78c0a8}.magee-shortcode .tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;opacity:0;line-break:auto}.magee-shortcode .tooltip.in{opacity:.9}.magee-shortcode .tooltip.top{padding:5px 0;margin-top:-3px}.magee-shortcode .tooltip.right{padding:0 5px;margin-left:3px}.magee-shortcode .tooltip.bottom{padding:5px 0;margin-top:3px}.magee-shortcode .tooltip.left{padding:0 5px;margin-left:-3px}.magee-shortcode .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.magee-shortcode .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.magee-shortcode .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.magee-shortcode .tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.magee-shortcode .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.magee-shortcode .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.magee-shortcode .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.magee-shortcode .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.magee-shortcode .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.magee-shortcode .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.magee-popover .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.magee-popover .popover.top{margin-top:-10px}.magee-popover .popover.right{margin-left:10px}.magee-popover .popover.bottom{margin-top:10px}.magee-popover .popover.left{margin-left:-10px}.magee-popover .popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.magee-popover .popover-content{padding:9px 14px}.magee-popover .popover>.arrow,.magee-popover .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.magee-popover .popover>.arrow{border-width:11px}.magee-popover .popover>.arrow:after{content:"";border-width:10px}.magee-popover .popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.magee-popover .popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.magee-popover .popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.magee-popover .popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.magee-popover .popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.magee-popover .popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.magee-popover .popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.magee-popover .popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.magee-table table{background-color:transparent}.magee-table caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}.magee-table th{text-align:left}.magee-table table{width:100%;max-width:100%;margin-bottom:20px}.magee-table table>tbody>tr>td,.magee-table table>tbody>tr>th,.magee-table table>tfoot>tr>td,.magee-table table>tfoot>tr>th,.magee-table table>thead>tr>td,.magee-table table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.magee-table table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.magee-table table>caption+thead>tr:first-child>td,.magee-table table>caption+thead>tr:first-child>th,.magee-table table>colgroup+thead>tr:first-child>td,.magee-table table>colgroup+thead>tr:first-child>th,.magee-table table>thead:first-child>tr:first-child>td,.magee-table table>thead:first-child>tr:first-child>th{border-top:0}.magee-table table>tbody+tbody{border-top:2px solid #ddd}.magee-table table .magee-table table{background-color:#fff}.magee-table .table-condensed>tbody>tr>td,.magee-table .table-condensed>tbody>tr>th,.magee-table .table-condensed>tfoot>tr>td,.magee-table .table-condensed>tfoot>tr>th,.magee-table .table-condensed>thead>tr>td,.magee-table .table-condensed>thead>tr>th{padding:5px}.magee-table .table-bordered{border:1px solid #ddd}.magee-table .table-bordered>tbody>tr>td,.magee-table .table-bordered>tbody>tr>th,.magee-table .table-bordered>tfoot>tr>td,.magee-table .table-bordered>tfoot>tr>th,.magee-table .table-bordered>thead>tr>td,.magee-table .table-bordered>thead>tr>th{border:1px solid #ddd}.magee-table .table-bordered>thead>tr>td,.magee-table .table-bordered>thead>tr>th{border-bottom-width:2px}.magee-table .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.magee-table .magee-table .table-hover>tbody>tr:hover{background-color:#f5f5f5}.magee-table table col[class*=col-]{position:static;display:table-column;float:none}.magee-table table td[class*=col-],.magee-table table th[class*=col-]{position:static;display:table-cell;float:none}.magee-table table>tbody>tr.active>td,.magee-table table>tbody>tr.active>th,.magee-table table>tbody>tr>td.active,.magee-table table>tbody>tr>th.active,.magee-table table>tfoot>tr.active>td,.magee-table table>tfoot>tr.active>th,.magee-table table>tfoot>tr>td.active,.magee-table table>tfoot>tr>th.active,.magee-table table>thead>tr.active>td,.magee-table table>thead>tr.active>th,.magee-table table>thead>tr>td.active,.magee-table table>thead>tr>th.active{background-color:#f5f5f5}.magee-table .table-hover>tbody>tr.active:hover>td,.magee-table .table-hover>tbody>tr.active:hover>th,.magee-table .table-hover>tbody>tr:hover>.active,.magee-table .table-hover>tbody>tr>td.active:hover,.magee-table .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.magee-table table>tbody>tr.success>td,.magee-table table>tbody>tr.success>th,.magee-table table>tbody>tr>td.success,.magee-table table>tbody>tr>th.success,.magee-table table>tfoot>tr.success>td,.magee-table table>tfoot>tr.success>th,.magee-table table>tfoot>tr>td.success,.magee-table table>tfoot>tr>th.success,.magee-table table>thead>tr.success>td,.magee-table table>thead>tr.success>th,.magee-table table>thead>tr>td.success,.magee-table table>thead>tr>th.success{background-color:#dff0d8}.magee-table .table-hover>tbody>tr.success:hover>td,.magee-table .table-hover>tbody>tr.success:hover>th,.magee-table .table-hover>tbody>tr:hover>.success,.magee-table .table-hover>tbody>tr>td.success:hover,.magee-table .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.magee-table table>tbody>tr.info>td,.magee-table table>tbody>tr.info>th,.magee-table table>tbody>tr>td.info,.magee-table table>tbody>tr>th.info,.magee-table table>tfoot>tr.info>td,.magee-table table>tfoot>tr.info>th,.magee-table table>tfoot>tr>td.info,.magee-table table>tfoot>tr>th.info,.magee-table table>thead>tr.info>td,.magee-table table>thead>tr.info>th,.magee-table table>thead>tr>td.info,.magee-table table>thead>tr>th.info{background-color:#d9edf7}.magee-table .table-hover>tbody>tr.info:hover>td,.magee-table .table-hover>tbody>tr.info:hover>th,.magee-table .table-hover>tbody>tr:hover>.info,.magee-table .table-hover>tbody>tr>td.info:hover,.magee-table .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.magee-table table>tbody>tr.warning>td,.magee-table table>tbody>tr.warning>th,.magee-table table>tbody>tr>td.warning,.magee-table table>tbody>tr>th.warning,.magee-table table>tfoot>tr.warning>td,.magee-table table>tfoot>tr.warning>th,.magee-table table>tfoot>tr>td.warning,.magee-table table>tfoot>tr>th.warning,.magee-table table>thead>tr.warning>td,.magee-table table>thead>tr.warning>th,.magee-table table>thead>tr>td.warning,.magee-table table>thead>tr>th.warning{background-color:#fcf8e3}.magee-table .table-hover>tbody>tr.warning:hover>td,.magee-table .table-hover>tbody>tr.warning:hover>th,.magee-table .table-hover>tbody>tr:hover>.warning,.magee-table .table-hover>tbody>tr>td.warning:hover,.magee-table .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.magee-table table>tbody>tr.danger>td,.magee-table table>tbody>tr.danger>th,.magee-table table>tbody>tr>td.danger,.magee-table table>tbody>tr>th.danger,.magee-table table>tfoot>tr.danger>td,.magee-table table>tfoot>tr.danger>th,.magee-table table>tfoot>tr>td.danger,.magee-table table>tfoot>tr>th.danger,.magee-table table>thead>tr.danger>td,.magee-table table>thead>tr.danger>th,.magee-table table>thead>tr>td.danger,.magee-table table>thead>tr>th.danger{background-color:#f2dede}.magee-table .table-hover>tbody>tr.danger:hover>td,.magee-table .table-hover>tbody>tr.danger:hover>th,.magee-table .table-hover>tbody>tr:hover>.danger,.magee-table .table-hover>tbody>tr>td.danger:hover,.magee-table .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.magee-table .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.magee-table .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.magee-table .table-responsive .table{margin-bottom:0}.magee-table .table-responsive .table>tbody>tr>td,.magee-table .table-responsive .table>tbody>tr>th,.magee-table .table-responsive .table>tfoot>tr>td,.magee-table .table-responsive .table>tfoot>tr>th,.magee-table .table-responsive .table>thead>tr>td,.magee-table .table-responsive .table>thead>tr>th{white-space:nowrap}.magee-table .table-responsive>.table-bordered{border:0}.magee-table .table-responsive>.table-bordered>tbody>tr>td:first-child,.magee-table .table-responsive>.table-bordered>tbody>tr>th:first-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>td:first-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>th:first-child,.magee-table .table-responsive>.table-bordered>thead>tr>td:first-child,.magee-table .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.magee-table .table-responsive>.table-bordered>tbody>tr>td:last-child,.magee-table .table-responsive>.table-bordered>tbody>tr>th:last-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>td:last-child,.magee-table .table-responsive>.table-bordered>tfoot>tr>th:last-child,.magee-table .table-responsive>.table-bordered>thead>tr>td:last-child,.magee-table .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.magee-table .table-responsive>.table-bordered>tbody>tr:last-child>td,.magee-table .table-responsive>.table-bordered>tbody>tr:last-child>th,.magee-table .table-responsive>.table-bordered>tfoot>tr:last-child>td,.magee-table .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}
|
assets/js/shortcodes.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(y,t){function e(){}y.extend(e.prototype,{init:function(){this.initShortcodes(),this.general(),this.animation(),this.heading(),this.resize()},initShortcodes:function(){this.shortcodeAccordion(),this.shortcodeAudioplayer(),this.shortcodeAlert(),this.shortcodeCarousel(),this.shortcodeContact(),this.shortcodeCountdown(),this.shortcodeCounter(),this.shortcodeDailymotion(),this.shortcodeDocumentviewer(),this.shortcodeExpand(),this.shortcodeFeature(),this.shortcodeFlipbox(),this.shortcodeImagecompare(),this.shortcodeVimeo(),this.shortcodePiechart(),this.shortcodeModaltrigger()},resize:function(){var e=this;y(t).on("resize",function(){e.heading()})},DY_scroll:function(e,t,a,i,o,n){var e=y(e),t=y(t),a=y(a),s=(i=y(i).find("ul")).find("li").outerWidth(!0),d=o;a.click(function(){i.animate({"margin-left":-s},function(){i.find("li").eq(0).appendTo(i),i.css({"margin-left":0})})}),t.click(function(){i.find("li:last").prependTo(i),i.css({"margin-left":-s}),i.animate({"margin-left":0})}),1==n&&(ad=setInterval(function(){a.click()},1e3*d),e.hover(function(){clearInterval(ad)},function(){ad=setInterval(function(){a.click()},1e3*d)}))},counterUp:function(e,t){var a=y.extend({time:400,delay:10},t);return e.each(function(){var c=y(this),r=a;c.waypoint(function(){for(var e=[],t=r.time/r.delay,a=c.text(),i=/[0-9]+,[0-9]+/.test(a),a=a.replace(/,/g,""),o=(/^[0-9]+$/.test(a),/^[0-9]+\.[0-9]+$/.test(a)),n=o?(a.split(".")[1]||[]).length:0,s=t;1<=s;s--){var d=parseInt(a/t*s);if(o&&(d=parseFloat(a/t*s).toFixed(n)),i)for(;/(\d+)(\d{3})/.test(d.toString());)d=d.toString().replace(/(\d+)(\d{3})/,"$1,$2");e.unshift(d)}c.data("counterup-nums",e),c.text("0");c.data("counterup-func",function(){c.text(c.data("counterup-nums").shift()),c.data("counterup-nums").length?setTimeout(c.data("counterup-func"),r.delay):(c.data("counterup-nums"),c.data("counterup-nums",null),c.data("counterup-func",null))}),setTimeout(c.data("counterup-func"),r.delay)},{offset:"100%",triggerOnce:!0})})},IsEmail:function(e){return!!/^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(e)},general:function(){y(".wow").each(function(){var e=y(this).data("animationduration");void 0!==e&&y(this).css({"-webkit-animation-duration":e+"s","animation-duration":e+"s"})});var e=y('.magee-shortcode[data-toggle="tooltip"]');e.length&&e.tooltip();e=y(".magee-popover");e.length&&e.popover();e=y("a[rel^='prettyPhoto']");e.length&&e.prettyPhoto()},heading:function(){y(".magee-heading").each(function(){magee_heading=y(this),"yes"==magee_heading.data("responsive")&&y(t).width()<1200&&(newPercentage=y(t).width()/1200*100+"%",y(this).find(".heading-inner").css({"font-size":newPercentage}))})},mgmodal:function(e,t){var a=e;""===(t=y.extend({title:"",message:"",close_icon:"",type:"effect-1",id:""},t)).type&&(t.type="effect-1"),""===t.close_icon&&(t.close_icon="yes"),a.wrap('<div class="ms-modal-wrapper"></div>'),a.after('<div class="magee-modal-wrapper" id="'+t.id+'"></div>');var i=a.parent(".ms-modal-wrapper").find(".magee-modal-wrapper");i.append('<div class="magee-modal magee-modal-'+t.type+'"></div><div class="magee-modal-overlay"></div>');var o=i.find(".magee-modal");o.append('<div class="magee-modal-content-wrapper"><div class="magee-modal-title-wrapper"></div><div class="magee-modal-content"></div></div>');e=i.find(".magee-modal-title-wrapper");"yes"===t.close_icon?e.append("<h3>"+t.title+'<a href="javascript:void(0);" class="magee-modal-close"><i class="fa fa-remove"></i></a></h3>'):e.append("<h3>"+t.title+"</h3>"),i.find(".magee-modal-content").append(t.message),i.find("a.magee-modal-close").on("click",function(e){e.preventDefault(),o.removeClass("magee-modal-show")}),i.find(".magee-modal-overlay").on("click",function(){o.removeClass("magee-modal-show")}),a.on("click",function(){o.addClass("magee-modal-show")})},animation:function(){y(".magee-shortcode[data-animation]").mouseover(function(){var e=y(this).attr("data-animation");y(this).addClass("animated").addClass(e)}),y(".magee-shortcode[data-animation]").mouseout(function(){var e=y(this).attr("data-animation");y(this).removeClass("animated").removeClass(e)}),y(".magee-animated").length&&y(".magee-animated").each(function(){("yes"===y(this).data("imageanimation")?y(this).find("img,i.fa"):y(this)).css("visibility","hidden"),$this=y(this),y().waypoint&&$this.waypoint(function(e,t){$this.css("visibility","visible"),$this.find("img,i.fa").css("visibility","visible");var a=$this.data("animationtype"),i=$this.data("animationduration");"yes"===$this.data("imageanimation")?($this.find("img,i.fa").addClass("animated "+a),i&&($this.find("img,i.fa").css("-moz-animation-duration",i+"s"),$this.find("img,i.fa").css("-webkit-animation-duration",i+"s"),$this.find("img,i.fa").css("-ms-animation-duration",i+"s"),$this.find("img,i.fa").css("-o-animation-duration",i+"s"),$this.find("img,i.fa").css("animation-duration",i+"s"))):($this.addClass("animated "+a),i&&($this.css("-moz-animation-duration",i+"s"),$this.css("-webkit-animation-duration",i+"s"),$this.css("-ms-animation-duration",i+"s"),$this.css("-o-animation-duration",i+"s"),$this.css("animation-duration",i+"s")))},{triggerOnce:!0,offset:"90%"})})},shortcodeAccordion:function(){var e=y(".magee-accordion");e.length&&e.find(".panel-heading").on("click",function(e){e.stopPropagation();var t=y(this).parents(".magee-accordion"),a=y(this).find("a.accordion-toggle"),e=a.attr("aria-controls"),e=y("#"+e);return e.slideToggle("fade"),a.hasClass("collapsed")?a.removeClass("collapsed"):a.addClass("collapsed"),t.find(".panel-collapse").not(e).slideUp("fast"),t.find(".accordion-toggle").not(a).addClass("collapsed"),!1})},shortcodeAlert:function(e){var t=y(".magee-alert");t.length&&t.find(".close").each(function(){y(this).click(function(e){e.preventDefault(),y(this).parent(".magee-alert").remove()})})},shortcodeAudioplayer:function(){var e=y(".ms-audio");e.length&&e.each(function(){y(this).audioPlayer({classPrefix:"audioplayer",strPlay:"Play",strPause:"Pause",strVolume:"Volume",strControls:y(this).data("controls"),strStyle:y(this).data("style")})})},shortcodeContact:function(){y("form.magee-contact-form #submit").click(function(e){e.preventDefault();var t=y(this).parents(".magee-contact-form");t.find(".contact-failed").text("");var a=t.find("input#receiver").val(),o=t.find("input#email").val(),n=t.find("input#name").val(),s=t.find("input#subject").val(),d=t.find("textarea#message").val(),c=t.find("input#country").val()?t.find("input#country").val():"0",r=t.find("input#city").val()?t.find("input#city").val():"0",l=t.find("input#telephone").val()?t.find("input#telephone").val():"0",h=t.find("input#company").val()?t.find("input#company").val():"0",f=t.find("input#website").val()?t.find("input#website").val():"0",m="checked"==t.find("input#checkboxWarning").attr("checked")?"yes":"no",u=t.find("input#terms").val(),e=t.find("input#required_fields").val(),g=e.split(","),p="",v="";for(i=0;i<g.length;i++)if((v=y.trim(g[i]))&&0<t.find("#"+v).length){if(""===t.find("#"+v).val())return p+=v,t.find(".contact-failed").addClass("notice-error"),t.find(".contact-failed").html(v.substring(0,1).toUpperCase()+v.substring(1)+magee_params.required),!1;p+=""}return""==p&&(t.find(".contact-failed").removeClass("notice-error"),t.find(".contact-failed").append("<img alt='loading' class='loading' src='"+magee_params.themeurl+"/images/AjaxLoader.gif' />"),y.ajax({type:"POST",dataType:"json",url:magee_params.ajaxurl,data:{name:n,email:o,subject:s,receiver:a,message:d,terms:u,checkboxWarning:m,required_fields:e,country:c,city:r,telephone:l,company:h,website:f,action:"magee_contact"},success:function(e){return 0==e.error?(t.find(".contact-failed").addClass("notice-success"),t.find(".contact-failed").html(e.msg),y(".loading").remove(),t[0].reset()):(t.find(".contact-failed").removeClass("notice-success"),t.find(".contact-failed").html(e.msg)),!1},error:function(){return t.find(".contact-failed").html("Error."),t.find(".loading").remove(),!1}})),!1})},shortcodeCountdown:function(){var e=y(".magee-countdown-circle-type");e.length&&e.each(function(){el=y(this),el.ClassyCountdown({end:el.data("endtime"),now:el.data("nowtime"),labels:!0,labelsOptions:{lang:{days:el.data("day_field_text"),hours:el.data("hours_field_text"),minutes:el.data("minutes_field_text"),seconds:el.data("seconds_field_text")}},style:{element:"",textResponsive:.5,days:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_day_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},hours:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_hours_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},minutes:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_minutes_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},seconds:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_seconds_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"}},onEndCallback:function(){el.remove()}})})},shortcodeCounter:function(){y(".magee-counter-box").length&&y(".magee-counter-box").waypoint(function(e){var t=y(this.element).attr("class");"down"!==e||y(this.element).hasClass("animated")||(setTimeout(function(){y("."+t.replace(" ",".")).find(".js-counter").countTo({formatter:function(e,t){return e.toFixed(t.decimals)}})},200),y(this.element).addClass("animated"))},{offset:"75%"})},shortcodeCarousel:function(){y(".magee-carousel").length&&y(".magee-carousel").each(function(){var e=y(this),t=e.data("columns"),a=0<t-2?t-2:t,i=1<t?10:0;e.find(".owl-carousel").owlCarousel({loop:!0,margin:i,autoplay:"yes"==e.data("autoplay"),autoplayTimeout:e.data("autoplaytimeout"),autoplayHoverPause:!0,items:t,responsiveClass:!0,responsive:{0:{items:1,nav:!1},600:{items:a,nav:"yes"==e.data("display-nav")?"true":"false"},1e3:{items:t,nav:"yes"==e.data("display-nav")?"true":"false"}}}),e.find(".carousel-next").click(function(){e.find(".owl-carousel").trigger("next.owl.carousel")}),e.find(".carousel-prev").click(function(){e.find(".owl-carousel").trigger("prev.owl.carousel")}),e.find(".owl-controls").addClass(e.data("pag-style"))}),y(".multi-carousel").length&&this.DY_scroll(".multi-carousel",".multi-carousel-nav-prev",".multi-carousel-nav-next",".multi-carousel-inner",3,!1)},shortcodeDailymotion:function(){var e=y(".magee-dailymotion");e.length&&e.each(function(){dail=y(this),("100%"==dail.data("width")||""==dail.data("width")&&"100%"==dail.data("height")||""==dail.data("height"))&&(width=dail.width(),iframewidth=dail.find("iframe").eq(0).width(),iframeheight=dail.find("iframe").eq(0).height(),op=iframeheight/iframewidth,dail.find("iframe").eq(0).width(width-100),dail.find("iframe").eq(0).height(op*(width-100)))})},shortcodeDocumentviewer:function(){y(".magee-document").length&&y(".magee-document").each(function(){doc=y(this),"yes"==doc.data("responsive")&&(width=doc.width(),width<doc.data("width")&&(op=doc.data("height")/doc.data("width"),doc.find("iframe").eq(0).width(width),doc.find("iframe").eq(0).height(op*width)))})},shortcodeExpand:function(){var e=y(".magee-expand");e.length&&e.each(function(){var t,a;expand=y(this),less_icon=expand.data("less-icon"),less_icon_color=expand.data("less-icon-color"),more_icon=expand.data("more-icon"),more_icon_color=expand.data("more-icon-color"),t=0<=less_icon.indexOf("fa-")?'<i class="fa '+less_icon+'" style="color:'+less_icon_color+';"></i> '+expand.data("less-text"):'<img src="'+less_icon+'" class="image-instead"/>'+expand.data("less-text"),a=0<=more_icon.indexOf("fa-")?'<i class="fa '+more_icon+'" style="color:'+more_icon_color+';"></i> '+expand.data("more-text"):'<img src="'+more_icon+'" class="image-instead"/>'+expand.data("more-text"),expand.find(".expand-control").click(function(){var e=y(this);e.parent(".magee-expand").find(".expand-content").slideToggle(500,function(){e.siblings(".expand-content").is(":visible")?e.html(t):e.html(a)})})})},shortcodeFeature:function(){var e=y(".magee-feature-box");if(e.length)for(i=0;i<e.length;i++){var t=y(e[i]).find(".icon-box").outerWidth();y(e[i]).find("img.feature-box-icon").length&&(t=y(e[i]).find("img.feature-box-icon").outerWidth()),t+=15,y(e[i]).hasClass("style2")&&y(e[i]).hasClass("reverse")?y(e[i]).css({"padding-left":0,"padding-right":t+"px"}):y(e[i]).hasClass("style2")?y(e[i]).css({"padding-left":t+"px"}):y(this).hasClass("style3")?(t-=15,y(e[i]).find("h3").css({"line-height":t+"px"})):y(e[i]).hasClass("style4")&&(t1=-(t/=2),t+="px",t1+="px",y(e[i]).css({"padding-top":t,"margin-top":t}),y(e[i]).find(".icon-box").css({top:t1,"margin-left":t1}),y(e[i]).find("img.feature-box-icon").css({top:t1,"margin-left":t1}))}},shortcodeFlipbox:function(){var e=y(".magee-flipbox-wrap");e.length&&e.each(function(){var e=y(this).find(".flipbox-front").outerHeight(),t=y(this).find(".flipbox-back").outerHeight(),t=t<e?e:t;y(this).css({height:t});t=y(this);t.bind("touchstart",function(){var e=y(this).data("direction");switch(e){case"horizontal":case"vertical":case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":y(this).find(".flipbox-front").addClass(e+"-touchstart-front").removeClass(e+"-touchend-front"),y(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":y(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back")}}),t.bind("touchend",function(){var e=y(this).data("direction");switch(e){case"horizontal":case"vertical":y(this).find(".flipbox-front").addClass(e+"-touchend-front").removeClass(e+"-touchstart-front"),y(this).find(".flipbox-back").addClass(e+"-touchend-back").removeClass(e+"-touchstart-back");break;case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":y(this).find(".flipbox-front").removeClass(e+"-touchstart-front").addClass(e+"-touchend-front"),y(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":y(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back")}})})},shortcodeImagecompare:function(){y(".magee-image-compare").length&&y(".magee-image-compare").each(function(){y(this).twentytwenty({default_offset_pct:y(this).data("pct"),orientation:y(this).data("orientation")})})},shortcodeModaltrigger:function(){var e=y(".magee-modal-trigger"),t=this;e.length&&e.each(function(){var e=y(this);t.mgmodal(e,{title:e.data("title"),message:e.data("content"),close_icon:e.data("close_icon"),type:e.data("effect"),id:e.data("id")})})},shortcodePiechart:function(){y(".magee-chart-box").length&&y(".magee-chart-box").each(function(){piechart=y(this),piechart.easyPieChart({barColor:piechart.data("barcolor"),trackColor:piechart.data("trackcolor"),scaleColor:!1,lineWidth:10,trackWidth:10,size:piechart.data("size"),lineCap:piechart.data("linecap")})})},shortcodeVimeo:function(){var e=y(".magee-vimeo-video");e.length&&e.each(function(){magee_vimeo=y(this),("100%"==magee_vimeo.data("width")||"100%"==magee_vimeo.data("height")&&""==magee_vimeo.data("width")||""==magee_vimeo.data("height"))&&(divwidth=magee_vimeo.width(),width=magee_vimeo.find("iframe.magee-vimeo").width(),height=magee_vimeo.find("iframe.magee-vimeo").height(),op=height/width,magee_vimeo.find("iframe.magee-vimeo").width(divwidth-100),magee_vimeo.find("iframe.magee-vimeo").height(op*divwidth-100))})}}),y.fn.MageeShortcodes=function(){return new e},y(function(){(new e).init()})}(window.jQuery,window,document);
|
1 |
+
!function(y,t){function e(){}y.extend(e.prototype,{init:function(){this.initShortcodes(),this.general(),this.animation(),this.heading(),this.resize()},initShortcodes:function(){this.shortcodeAccordion(),this.shortcodeAudioplayer(),this.shortcodeAlert(),this.shortcodeCarousel(),this.shortcodeContact(),this.shortcodeCountdown(),this.shortcodeCounter(),this.shortcodeDailymotion(),this.shortcodeDocumentviewer(),this.shortcodeExpand(),this.shortcodeFeature(),this.shortcodeFlipbox(),this.shortcodeImagecompare(),this.shortcodeVimeo(),this.shortcodePiechart(),this.shortcodeModaltrigger()},resize:function(){var e=this;y(t).on("resize",function(){e.heading()})},DY_scroll:function(e,t,a,i,o,n){var e=y(e),t=y(t),a=y(a),s=(i=y(i).find("ul")).find("li").outerWidth(!0),d=o;a.click(function(){i.animate({"margin-left":-s},function(){i.find("li").eq(0).appendTo(i),i.css({"margin-left":0})})}),t.click(function(){i.find("li:last").prependTo(i),i.css({"margin-left":-s}),i.animate({"margin-left":0})}),1==n&&(ad=setInterval(function(){a.click()},1e3*d),e.hover(function(){clearInterval(ad)},function(){ad=setInterval(function(){a.click()},1e3*d)}))},counterUp:function(e,t){var a=y.extend({time:400,delay:10},t);return e.each(function(){var c=y(this),r=a;c.waypoint(function(){for(var e=[],t=r.time/r.delay,a=c.text(),i=/[0-9]+,[0-9]+/.test(a),a=a.replace(/,/g,""),o=(/^[0-9]+$/.test(a),/^[0-9]+\.[0-9]+$/.test(a)),n=o?(a.split(".")[1]||[]).length:0,s=t;1<=s;s--){var d=parseInt(a/t*s);if(o&&(d=parseFloat(a/t*s).toFixed(n)),i)for(;/(\d+)(\d{3})/.test(d.toString());)d=d.toString().replace(/(\d+)(\d{3})/,"$1,$2");e.unshift(d)}c.data("counterup-nums",e),c.text("0");c.data("counterup-func",function(){c.text(c.data("counterup-nums").shift()),c.data("counterup-nums").length?setTimeout(c.data("counterup-func"),r.delay):(c.data("counterup-nums"),c.data("counterup-nums",null),c.data("counterup-func",null))}),setTimeout(c.data("counterup-func"),r.delay)},{offset:"100%",triggerOnce:!0})})},IsEmail:function(e){return!!/^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(e)},general:function(){y(".wow").each(function(){var e=y(this).data("animationduration");void 0!==e&&y(this).css({"-webkit-animation-duration":e+"s","animation-duration":e+"s"})});var e=y('.magee-shortcode[data-toggle="tooltip"]');e.length&&e.tooltip();e=y(".magee-popover");e.length&&e.popover();e=y("a[rel^='prettyPhoto']");e.length&&e.prettyPhoto()},heading:function(){y(".magee-heading").each(function(){magee_heading=y(this),"yes"==magee_heading.data("responsive")&&y(t).width()<1200&&(newPercentage=y(t).width()/1200*100+"%",y(this).find(".heading-inner").css({"font-size":newPercentage}))})},mgmodal:function(e,t){var a=e;""===(t=y.extend({title:"",message:"",close_icon:"",type:"effect-1",id:""},t)).type&&(t.type="effect-1"),""===t.close_icon&&(t.close_icon="yes"),a.wrap('<div class="ms-modal-wrapper"></div>'),a.after('<div class="magee-modal-wrapper" id="'+t.id+'"></div>');var i=a.parent(".ms-modal-wrapper").find(".magee-modal-wrapper");i.append('<div class="magee-modal magee-modal-'+t.type+'"></div><div class="magee-modal-overlay"></div>');var o=i.find(".magee-modal");o.append('<div class="magee-modal-content-wrapper"><div class="magee-modal-title-wrapper"></div><div class="magee-modal-content"></div></div>');e=i.find(".magee-modal-title-wrapper");"yes"===t.close_icon?e.append("<h3>"+t.title+'<a href="javascript:void(0);" class="magee-modal-close"><i class="fa fa-remove"></i></a></h3>'):e.append("<h3>"+t.title+"</h3>"),i.find(".magee-modal-content").append(t.message),i.find("a.magee-modal-close").on("click",function(e){e.preventDefault(),o.removeClass("magee-modal-show")}),i.find(".magee-modal-overlay").on("click",function(){o.removeClass("magee-modal-show")}),a.on("click",function(){o.addClass("magee-modal-show")})},animation:function(){y(".magee-shortcode[data-animation]").mouseover(function(){var e=y(this).attr("data-animation");y(this).addClass("animated").addClass(e)}),y(".magee-shortcode[data-animation]").mouseout(function(){var e=y(this).attr("data-animation");y(this).removeClass("animated").removeClass(e)}),y(".magee-animated").length&&y(".magee-animated").each(function(){("yes"===y(this).data("imageanimation")?y(this).find("img,i.fa"):y(this)).css("visibility","hidden"),$this=y(this),y().waypoint&&$this.waypoint(function(e,t){$this.css("visibility","visible"),$this.find("img,i.fa").css("visibility","visible");var a=$this.data("animationtype"),i=$this.data("animationduration");"yes"===$this.data("imageanimation")?($this.find("img,i.fa").addClass("animated "+a),i&&($this.find("img,i.fa").css("-moz-animation-duration",i+"s"),$this.find("img,i.fa").css("-webkit-animation-duration",i+"s"),$this.find("img,i.fa").css("-ms-animation-duration",i+"s"),$this.find("img,i.fa").css("-o-animation-duration",i+"s"),$this.find("img,i.fa").css("animation-duration",i+"s"))):($this.addClass("animated "+a),i&&($this.css("-moz-animation-duration",i+"s"),$this.css("-webkit-animation-duration",i+"s"),$this.css("-ms-animation-duration",i+"s"),$this.css("-o-animation-duration",i+"s"),$this.css("animation-duration",i+"s")))},{triggerOnce:!0,offset:"90%"})})},shortcodeAccordion:function(){var e=y(".magee-accordion");e.length&&e.find(".panel-heading").on("click",function(e){e.stopPropagation();var t=y(this).parents(".magee-accordion"),a=y(this).find("a.accordion-toggle"),i=a.attr("aria-controls"),e=y(this).parents(".magee-accordion").attr("aria-multiselectable"),i=y("#"+i);return i.slideToggle("fade"),a.hasClass("collapsed")?a.removeClass("collapsed"):a.addClass("collapsed"),console.log(e),"yes"!==e&&"1"!==e&&(t.find(".panel-collapse").not(i).slideUp("fast"),t.find(".accordion-toggle").not(a).addClass("collapsed")),!1})},shortcodeAlert:function(e){var t=y(".magee-alert");t.length&&t.find(".close").each(function(){y(this).click(function(e){e.preventDefault(),y(this).parent(".magee-alert").remove()})})},shortcodeAudioplayer:function(){var e=y(".ms-audio");e.length&&e.each(function(){y(this).audioPlayer({classPrefix:"audioplayer",strPlay:"Play",strPause:"Pause",strVolume:"Volume",strControls:y(this).data("controls"),strStyle:y(this).data("style")})})},shortcodeContact:function(){y("form.magee-contact-form #submit").click(function(e){e.preventDefault();var t=y(this).parents(".magee-contact-form");t.find(".contact-failed").text("");var a=t.find("input#receiver").val(),o=t.find("input#email").val(),n=t.find("input#name").val(),s=t.find("input#subject").val(),d=t.find("textarea#message").val(),c=t.find("input#country").val()?t.find("input#country").val():"0",r=t.find("input#city").val()?t.find("input#city").val():"0",l=t.find("input#telephone").val()?t.find("input#telephone").val():"0",h=t.find("input#company").val()?t.find("input#company").val():"0",f=t.find("input#website").val()?t.find("input#website").val():"0",m="checked"==t.find("input#checkboxWarning").attr("checked")?"yes":"no",u=t.find("input#terms").val(),e=t.find("input#required_fields").val(),g=e.split(","),p="",v="";for(i=0;i<g.length;i++)if((v=y.trim(g[i]))&&0<t.find("#"+v).length){if(""===t.find("#"+v).val())return p+=v,t.find(".contact-failed").addClass("notice-error"),t.find(".contact-failed").html(v.substring(0,1).toUpperCase()+v.substring(1)+magee_params.required),!1;p+=""}return""==p&&(t.find(".contact-failed").removeClass("notice-error"),t.find(".contact-failed").append("<img alt='loading' class='loading' src='"+magee_params.themeurl+"/images/AjaxLoader.gif' />"),y.ajax({type:"POST",dataType:"json",url:magee_params.ajaxurl,data:{name:n,email:o,subject:s,receiver:a,message:d,terms:u,checkboxWarning:m,required_fields:e,country:c,city:r,telephone:l,company:h,website:f,action:"magee_contact"},success:function(e){return 0==e.error?(t.find(".contact-failed").addClass("notice-success"),t.find(".contact-failed").html(e.msg),y(".loading").remove(),t[0].reset()):(t.find(".contact-failed").removeClass("notice-success"),t.find(".contact-failed").html(e.msg)),!1},error:function(){return t.find(".contact-failed").html("Error."),t.find(".loading").remove(),!1}})),!1})},shortcodeCountdown:function(){var e=y(".magee-countdown-circle-type");e.length&&e.each(function(){el=y(this),el.ClassyCountdown({end:el.data("endtime"),now:el.data("nowtime"),labels:!0,labelsOptions:{lang:{days:el.data("day_field_text"),hours:el.data("hours_field_text"),minutes:el.data("minutes_field_text"),seconds:el.data("seconds_field_text")}},style:{element:"",textResponsive:.5,days:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_day_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},hours:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_hours_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},minutes:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_minutes_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},seconds:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_seconds_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"}},onEndCallback:function(){el.remove()}})})},shortcodeCounter:function(){y(".magee-counter-box").length&&y(".magee-counter-box").waypoint(function(e){var t=y(this.element).attr("class");"down"!==e||y(this.element).hasClass("animated")||(setTimeout(function(){y("."+t.replace(" ",".")).find(".js-counter").countTo({formatter:function(e,t){return e.toFixed(t.decimals)}})},200),y(this.element).addClass("animated"))},{offset:"75%"})},shortcodeCarousel:function(){y(".magee-carousel").length&&y(".magee-carousel").each(function(){var e=y(this),t=e.data("columns"),a=0<t-2?t-2:t,i=1<t?10:0;e.find(".owl-carousel").owlCarousel({loop:!0,margin:i,autoplay:"yes"==e.data("autoplay"),autoplayTimeout:e.data("autoplaytimeout"),autoplayHoverPause:!0,items:t,responsiveClass:!0,responsive:{0:{items:1,nav:!1},600:{items:a,nav:"yes"==e.data("display-nav")?"true":"false"},1e3:{items:t,nav:"yes"==e.data("display-nav")?"true":"false"}}}),e.find(".carousel-next").click(function(){e.find(".owl-carousel").trigger("next.owl.carousel")}),e.find(".carousel-prev").click(function(){e.find(".owl-carousel").trigger("prev.owl.carousel")}),e.find(".owl-controls").addClass(e.data("pag-style"))}),y(".multi-carousel").length&&this.DY_scroll(".multi-carousel",".multi-carousel-nav-prev",".multi-carousel-nav-next",".multi-carousel-inner",3,!1)},shortcodeDailymotion:function(){var e=y(".magee-dailymotion");e.length&&e.each(function(){dail=y(this),("100%"==dail.data("width")||""==dail.data("width")&&"100%"==dail.data("height")||""==dail.data("height"))&&(width=dail.width(),iframewidth=dail.find("iframe").eq(0).width(),iframeheight=dail.find("iframe").eq(0).height(),op=iframeheight/iframewidth,dail.find("iframe").eq(0).width(width-100),dail.find("iframe").eq(0).height(op*(width-100)))})},shortcodeDocumentviewer:function(){y(".magee-document").length&&y(".magee-document").each(function(){doc=y(this),"yes"==doc.data("responsive")&&(width=doc.width(),width<doc.data("width")&&(op=doc.data("height")/doc.data("width"),doc.find("iframe").eq(0).width(width),doc.find("iframe").eq(0).height(op*width)))})},shortcodeExpand:function(){var e=y(".magee-expand");e.length&&e.each(function(){var t,a;expand=y(this),less_icon=expand.data("less-icon"),less_icon_color=expand.data("less-icon-color"),more_icon=expand.data("more-icon"),more_icon_color=expand.data("more-icon-color"),t=0<=less_icon.indexOf("fa-")?'<i class="fa '+less_icon+'" style="color:'+less_icon_color+';"></i> '+expand.data("less-text"):'<img src="'+less_icon+'" class="image-instead"/>'+expand.data("less-text"),a=0<=more_icon.indexOf("fa-")?'<i class="fa '+more_icon+'" style="color:'+more_icon_color+';"></i> '+expand.data("more-text"):'<img src="'+more_icon+'" class="image-instead"/>'+expand.data("more-text"),expand.find(".expand-control").click(function(){var e=y(this);e.parent(".magee-expand").find(".expand-content").slideToggle(500,function(){e.siblings(".expand-content").is(":visible")?e.html(t):e.html(a)})})})},shortcodeFeature:function(){var e=y(".magee-feature-box");if(e.length)for(i=0;i<e.length;i++){var t=y(e[i]).find(".icon-box").outerWidth();y(e[i]).find("img.feature-box-icon").length&&(t=y(e[i]).find("img.feature-box-icon").outerWidth()),t+=15,y(e[i]).hasClass("style2")&&y(e[i]).hasClass("reverse")?y(e[i]).css({"padding-left":0,"padding-right":t+"px"}):y(e[i]).hasClass("style2")?y(e[i]).css({"padding-left":t+"px"}):y(this).hasClass("style3")?(t-=15,y(e[i]).find("h3").css({"line-height":t+"px"})):y(e[i]).hasClass("style4")&&(t1=-(t/=2),t+="px",t1+="px",y(e[i]).css({"padding-top":t,"margin-top":t}),y(e[i]).find(".icon-box").css({top:t1,"margin-left":t1}),y(e[i]).find("img.feature-box-icon").css({top:t1,"margin-left":t1}))}},shortcodeFlipbox:function(){var e=y(".magee-flipbox-wrap");e.length&&e.each(function(){var e=y(this).find(".flipbox-front").outerHeight(),t=y(this).find(".flipbox-back").outerHeight(),t=t<e?e:t;y(this).css({height:t});t=y(this);t.bind("touchstart",function(){var e=y(this).data("direction");switch(e){case"horizontal":case"vertical":case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":y(this).find(".flipbox-front").addClass(e+"-touchstart-front").removeClass(e+"-touchend-front"),y(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":y(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back")}}),t.bind("touchend",function(){var e=y(this).data("direction");switch(e){case"horizontal":case"vertical":y(this).find(".flipbox-front").addClass(e+"-touchend-front").removeClass(e+"-touchstart-front"),y(this).find(".flipbox-back").addClass(e+"-touchend-back").removeClass(e+"-touchstart-back");break;case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":y(this).find(".flipbox-front").removeClass(e+"-touchstart-front").addClass(e+"-touchend-front"),y(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":y(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back")}})})},shortcodeImagecompare:function(){y(".magee-image-compare").length&&y(".magee-image-compare").each(function(){y(this).twentytwenty({default_offset_pct:y(this).data("pct"),orientation:y(this).data("orientation")})})},shortcodeModaltrigger:function(){var e=y(".magee-modal-trigger"),t=this;e.length&&e.each(function(){var e=y(this);t.mgmodal(e,{title:e.data("title"),message:e.data("content"),close_icon:e.data("close_icon"),type:e.data("effect"),id:e.data("id")})})},shortcodePiechart:function(){y(".magee-chart-box").length&&y(".magee-chart-box").each(function(){piechart=y(this),piechart.easyPieChart({barColor:piechart.data("barcolor"),trackColor:piechart.data("trackcolor"),scaleColor:!1,lineWidth:10,trackWidth:10,size:piechart.data("size"),lineCap:piechart.data("linecap")})})},shortcodeVimeo:function(){var e=y(".magee-vimeo-video");e.length&&e.each(function(){magee_vimeo=y(this),("100%"==magee_vimeo.data("width")||"100%"==magee_vimeo.data("height")&&""==magee_vimeo.data("width")||""==magee_vimeo.data("height"))&&(divwidth=magee_vimeo.width(),width=magee_vimeo.find("iframe.magee-vimeo").width(),height=magee_vimeo.find("iframe.magee-vimeo").height(),op=height/width,magee_vimeo.find("iframe.magee-vimeo").width(divwidth-100),magee_vimeo.find("iframe.magee-vimeo").height(op*divwidth-100))})}}),y.fn.MageeShortcodes=function(){return new e},y(function(){(new e).init()})}(window.jQuery,window,document);
|
assets/js/shortcodes.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(y,t){function e(){}y.extend(e.prototype,{init:function(){this.initShortcodes(),this.general(),this.animation(),this.heading(),this.resize()},initShortcodes:function(){this.shortcodeAccordion(),this.shortcodeAudioplayer(),this.shortcodeAlert(),this.shortcodeCarousel(),this.shortcodeContact(),this.shortcodeCountdown(),this.shortcodeCounter(),this.shortcodeDailymotion(),this.shortcodeDocumentviewer(),this.shortcodeExpand(),this.shortcodeFeature(),this.shortcodeFlipbox(),this.shortcodeImagecompare(),this.shortcodeVimeo(),this.shortcodePiechart(),this.shortcodeModaltrigger()},resize:function(){var e=this;y(t).on("resize",function(){e.heading()})},DY_scroll:function(e,t,a,i,o,n){var e=y(e),t=y(t),a=y(a),s=(i=y(i).find("ul")).find("li").outerWidth(!0),d=o;a.click(function(){i.animate({"margin-left":-s},function(){i.find("li").eq(0).appendTo(i),i.css({"margin-left":0})})}),t.click(function(){i.find("li:last").prependTo(i),i.css({"margin-left":-s}),i.animate({"margin-left":0})}),1==n&&(ad=setInterval(function(){a.click()},1e3*d),e.hover(function(){clearInterval(ad)},function(){ad=setInterval(function(){a.click()},1e3*d)}))},counterUp:function(e,t){var a=y.extend({time:400,delay:10},t);return e.each(function(){var c=y(this),r=a;c.waypoint(function(){for(var e=[],t=r.time/r.delay,a=c.text(),i=/[0-9]+,[0-9]+/.test(a),a=a.replace(/,/g,""),o=(/^[0-9]+$/.test(a),/^[0-9]+\.[0-9]+$/.test(a)),n=o?(a.split(".")[1]||[]).length:0,s=t;1<=s;s--){var d=parseInt(a/t*s);if(o&&(d=parseFloat(a/t*s).toFixed(n)),i)for(;/(\d+)(\d{3})/.test(d.toString());)d=d.toString().replace(/(\d+)(\d{3})/,"$1,$2");e.unshift(d)}c.data("counterup-nums",e),c.text("0");c.data("counterup-func",function(){c.text(c.data("counterup-nums").shift()),c.data("counterup-nums").length?setTimeout(c.data("counterup-func"),r.delay):(c.data("counterup-nums"),c.data("counterup-nums",null),c.data("counterup-func",null))}),setTimeout(c.data("counterup-func"),r.delay)},{offset:"100%",triggerOnce:!0})})},IsEmail:function(e){return!!/^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(e)},general:function(){y(".wow").each(function(){var e=y(this).data("animationduration");void 0!==e&&y(this).css({"-webkit-animation-duration":e+"s","animation-duration":e+"s"})});var e=y('.magee-shortcode[data-toggle="tooltip"]');e.length&&e.tooltip();e=y(".magee-popover");e.length&&e.popover();e=y("a[rel^='prettyPhoto']");e.length&&e.prettyPhoto()},heading:function(){y(".magee-heading").each(function(){magee_heading=y(this),"yes"==magee_heading.data("responsive")&&y(t).width()<1200&&(newPercentage=y(t).width()/1200*100+"%",y(this).find(".heading-inner").css({"font-size":newPercentage}))})},mgmodal:function(e,t){var a=e;""===(t=y.extend({title:"",message:"",close_icon:"",type:"effect-1",id:""},t)).type&&(t.type="effect-1"),""===t.close_icon&&(t.close_icon="yes"),a.wrap('<div class="ms-modal-wrapper"></div>'),a.after('<div class="magee-modal-wrapper" id="'+t.id+'"></div>');var i=a.parent(".ms-modal-wrapper").find(".magee-modal-wrapper");i.append('<div class="magee-modal magee-modal-'+t.type+'"></div><div class="magee-modal-overlay"></div>');var o=i.find(".magee-modal");o.append('<div class="magee-modal-content-wrapper"><div class="magee-modal-title-wrapper"></div><div class="magee-modal-content"></div></div>');e=i.find(".magee-modal-title-wrapper");"yes"===t.close_icon?e.append("<h3>"+t.title+'<a href="javascript:void(0);" class="magee-modal-close"><i class="fa fa-remove"></i></a></h3>'):e.append("<h3>"+t.title+"</h3>"),i.find(".magee-modal-content").append(t.message),i.find("a.magee-modal-close").on("click",function(e){e.preventDefault(),o.removeClass("magee-modal-show")}),i.find(".magee-modal-overlay").on("click",function(){o.removeClass("magee-modal-show")}),a.on("click",function(){o.addClass("magee-modal-show")})},animation:function(){y(".magee-shortcode[data-animation]").mouseover(function(){var e=y(this).attr("data-animation");y(this).addClass("animated").addClass(e)}),y(".magee-shortcode[data-animation]").mouseout(function(){var e=y(this).attr("data-animation");y(this).removeClass("animated").removeClass(e)}),y(".magee-animated").length&&y(".magee-animated").each(function(){("yes"===y(this).data("imageanimation")?y(this).find("img,i.fa"):y(this)).css("visibility","hidden"),$this=y(this),y().waypoint&&$this.waypoint(function(e,t){$this.css("visibility","visible"),$this.find("img,i.fa").css("visibility","visible");var a=$this.data("animationtype"),i=$this.data("animationduration");"yes"===$this.data("imageanimation")?($this.find("img,i.fa").addClass("animated "+a),i&&($this.find("img,i.fa").css("-moz-animation-duration",i+"s"),$this.find("img,i.fa").css("-webkit-animation-duration",i+"s"),$this.find("img,i.fa").css("-ms-animation-duration",i+"s"),$this.find("img,i.fa").css("-o-animation-duration",i+"s"),$this.find("img,i.fa").css("animation-duration",i+"s"))):($this.addClass("animated "+a),i&&($this.css("-moz-animation-duration",i+"s"),$this.css("-webkit-animation-duration",i+"s"),$this.css("-ms-animation-duration",i+"s"),$this.css("-o-animation-duration",i+"s"),$this.css("animation-duration",i+"s")))},{triggerOnce:!0,offset:"90%"})})},shortcodeAccordion:function(){var e=y(".magee-accordion");e.length&&e.find(".panel-heading").on("click",function(e){e.stopPropagation();var t=y(this).parents(".magee-accordion"),a=y(this).find("a.accordion-toggle"),e=a.attr("aria-controls"),e=y("#"+e);return e.slideToggle("fade"),a.hasClass("collapsed")?a.removeClass("collapsed"):a.addClass("collapsed"),t.find(".panel-collapse").not(e).slideUp("fast"),t.find(".accordion-toggle").not(a).addClass("collapsed"),!1})},shortcodeAlert:function(e){var t=y(".magee-alert");t.length&&t.find(".close").each(function(){y(this).click(function(e){e.preventDefault(),y(this).parent(".magee-alert").remove()})})},shortcodeAudioplayer:function(){var e=y(".ms-audio");e.length&&e.each(function(){y(this).audioPlayer({classPrefix:"audioplayer",strPlay:"Play",strPause:"Pause",strVolume:"Volume",strControls:y(this).data("controls"),strStyle:y(this).data("style")})})},shortcodeContact:function(){y("form.magee-contact-form #submit").click(function(e){e.preventDefault();var t=y(this).parents(".magee-contact-form");t.find(".contact-failed").text("");var a=t.find("input#receiver").val(),o=t.find("input#email").val(),n=t.find("input#name").val(),s=t.find("input#subject").val(),d=t.find("textarea#message").val(),c=t.find("input#country").val()?t.find("input#country").val():"0",r=t.find("input#city").val()?t.find("input#city").val():"0",l=t.find("input#telephone").val()?t.find("input#telephone").val():"0",h=t.find("input#company").val()?t.find("input#company").val():"0",f=t.find("input#website").val()?t.find("input#website").val():"0",m="checked"==t.find("input#checkboxWarning").attr("checked")?"yes":"no",u=t.find("input#terms").val(),e=t.find("input#required_fields").val(),g=e.split(","),p="",v="";for(i=0;i<g.length;i++)if((v=y.trim(g[i]))&&0<t.find("#"+v).length){if(""===t.find("#"+v).val())return p+=v,t.find(".contact-failed").addClass("notice-error"),t.find(".contact-failed").html(v.substring(0,1).toUpperCase()+v.substring(1)+magee_params.required),!1;p+=""}return""==p&&(t.find(".contact-failed").removeClass("notice-error"),t.find(".contact-failed").append("<img alt='loading' class='loading' src='"+magee_params.themeurl+"/images/AjaxLoader.gif' />"),y.ajax({type:"POST",dataType:"json",url:magee_params.ajaxurl,data:{name:n,email:o,subject:s,receiver:a,message:d,terms:u,checkboxWarning:m,required_fields:e,country:c,city:r,telephone:l,company:h,website:f,action:"magee_contact"},success:function(e){return 0==e.error?(t.find(".contact-failed").addClass("notice-success"),t.find(".contact-failed").html(e.msg),y(".loading").remove(),t[0].reset()):(t.find(".contact-failed").removeClass("notice-success"),t.find(".contact-failed").html(e.msg)),!1},error:function(){return t.find(".contact-failed").html("Error."),t.find(".loading").remove(),!1}})),!1})},shortcodeCountdown:function(){var e=y(".magee-countdown-circle-type");e.length&&e.each(function(){el=y(this),el.ClassyCountdown({end:el.data("endtime"),now:el.data("nowtime"),labels:!0,labelsOptions:{lang:{days:el.data("day_field_text"),hours:el.data("hours_field_text"),minutes:el.data("minutes_field_text"),seconds:el.data("seconds_field_text")}},style:{element:"",textResponsive:.5,days:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_day_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},hours:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_hours_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},minutes:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_minutes_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},seconds:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_seconds_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"}},onEndCallback:function(){el.remove()}})})},shortcodeCounter:function(){y(".magee-counter-box").length&&y(".magee-counter-box").waypoint(function(e){var t=y(this.element).attr("class");"down"!==e||y(this.element).hasClass("animated")||(setTimeout(function(){y("."+t.replace(" ",".")).find(".js-counter").countTo({formatter:function(e,t){return e.toFixed(t.decimals)}})},200),y(this.element).addClass("animated"))},{offset:"75%"})},shortcodeCarousel:function(){y(".magee-carousel").length&&y(".magee-carousel").each(function(){var e=y(this),t=e.data("columns"),a=0<t-2?t-2:t,i=1<t?10:0;e.find(".owl-carousel").owlCarousel({loop:!0,margin:i,autoplay:"yes"==e.data("autoplay"),autoplayTimeout:e.data("autoplaytimeout"),autoplayHoverPause:!0,items:t,responsiveClass:!0,responsive:{0:{items:1,nav:!1},600:{items:a,nav:"yes"==e.data("display-nav")?"true":"false"},1e3:{items:t,nav:"yes"==e.data("display-nav")?"true":"false"}}}),e.find(".carousel-next").click(function(){e.find(".owl-carousel").trigger("next.owl.carousel")}),e.find(".carousel-prev").click(function(){e.find(".owl-carousel").trigger("prev.owl.carousel")}),e.find(".owl-controls").addClass(e.data("pag-style"))}),y(".multi-carousel").length&&this.DY_scroll(".multi-carousel",".multi-carousel-nav-prev",".multi-carousel-nav-next",".multi-carousel-inner",3,!1)},shortcodeDailymotion:function(){var e=y(".magee-dailymotion");e.length&&e.each(function(){dail=y(this),("100%"==dail.data("width")||""==dail.data("width")&&"100%"==dail.data("height")||""==dail.data("height"))&&(width=dail.width(),iframewidth=dail.find("iframe").eq(0).width(),iframeheight=dail.find("iframe").eq(0).height(),op=iframeheight/iframewidth,dail.find("iframe").eq(0).width(width-100),dail.find("iframe").eq(0).height(op*(width-100)))})},shortcodeDocumentviewer:function(){y(".magee-document").length&&y(".magee-document").each(function(){doc=y(this),"yes"==doc.data("responsive")&&(width=doc.width(),width<doc.data("width")&&(op=doc.data("height")/doc.data("width"),doc.find("iframe").eq(0).width(width),doc.find("iframe").eq(0).height(op*width)))})},shortcodeExpand:function(){var e=y(".magee-expand");e.length&&e.each(function(){var t,a;expand=y(this),less_icon=expand.data("less-icon"),less_icon_color=expand.data("less-icon-color"),more_icon=expand.data("more-icon"),more_icon_color=expand.data("more-icon-color"),t=0<=less_icon.indexOf("fa-")?'<i class="fa '+less_icon+'" style="color:'+less_icon_color+';"></i> '+expand.data("less-text"):'<img src="'+less_icon+'" class="image-instead"/>'+expand.data("less-text"),a=0<=more_icon.indexOf("fa-")?'<i class="fa '+more_icon+'" style="color:'+more_icon_color+';"></i> '+expand.data("more-text"):'<img src="'+more_icon+'" class="image-instead"/>'+expand.data("more-text"),expand.find(".expand-control").click(function(){var e=y(this);e.parent(".magee-expand").find(".expand-content").slideToggle(500,function(){e.siblings(".expand-content").is(":visible")?e.html(t):e.html(a)})})})},shortcodeFeature:function(){var e=y(".magee-feature-box");if(e.length)for(i=0;i<e.length;i++){var t=y(e[i]).find(".icon-box").outerWidth();y(e[i]).find("img.feature-box-icon").length&&(t=y(e[i]).find("img.feature-box-icon").outerWidth()),t+=15,y(e[i]).hasClass("style2")&&y(e[i]).hasClass("reverse")?y(e[i]).css({"padding-left":0,"padding-right":t+"px"}):y(e[i]).hasClass("style2")?y(e[i]).css({"padding-left":t+"px"}):y(this).hasClass("style3")?(t-=15,y(e[i]).find("h3").css({"line-height":t+"px"})):y(e[i]).hasClass("style4")&&(t1=-(t/=2),t+="px",t1+="px",y(e[i]).css({"padding-top":t,"margin-top":t}),y(e[i]).find(".icon-box").css({top:t1,"margin-left":t1}),y(e[i]).find("img.feature-box-icon").css({top:t1,"margin-left":t1}))}},shortcodeFlipbox:function(){var e=y(".magee-flipbox-wrap");e.length&&e.each(function(){var e=y(this).find(".flipbox-front").outerHeight(),t=y(this).find(".flipbox-back").outerHeight(),t=t<e?e:t;y(this).css({height:t});t=y(this);t.bind("touchstart",function(){var e=y(this).data("direction");switch(e){case"horizontal":case"vertical":case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":y(this).find(".flipbox-front").addClass(e+"-touchstart-front").removeClass(e+"-touchend-front"),y(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":y(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back")}}),t.bind("touchend",function(){var e=y(this).data("direction");switch(e){case"horizontal":case"vertical":y(this).find(".flipbox-front").addClass(e+"-touchend-front").removeClass(e+"-touchstart-front"),y(this).find(".flipbox-back").addClass(e+"-touchend-back").removeClass(e+"-touchstart-back");break;case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":y(this).find(".flipbox-front").removeClass(e+"-touchstart-front").addClass(e+"-touchend-front"),y(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":y(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back")}})})},shortcodeImagecompare:function(){y(".magee-image-compare").length&&y(".magee-image-compare").each(function(){y(this).twentytwenty({default_offset_pct:y(this).data("pct"),orientation:y(this).data("orientation")})})},shortcodeModaltrigger:function(){var e=y(".magee-modal-trigger"),t=this;e.length&&e.each(function(){var e=y(this);t.mgmodal(e,{title:e.data("title"),message:e.data("content"),close_icon:e.data("close_icon"),type:e.data("effect"),id:e.data("id")})})},shortcodePiechart:function(){y(".magee-chart-box").length&&y(".magee-chart-box").each(function(){piechart=y(this),piechart.easyPieChart({barColor:piechart.data("barcolor"),trackColor:piechart.data("trackcolor"),scaleColor:!1,lineWidth:10,trackWidth:10,size:piechart.data("size"),lineCap:piechart.data("linecap")})})},shortcodeVimeo:function(){var e=y(".magee-vimeo-video");e.length&&e.each(function(){magee_vimeo=y(this),("100%"==magee_vimeo.data("width")||"100%"==magee_vimeo.data("height")&&""==magee_vimeo.data("width")||""==magee_vimeo.data("height"))&&(divwidth=magee_vimeo.width(),width=magee_vimeo.find("iframe.magee-vimeo").width(),height=magee_vimeo.find("iframe.magee-vimeo").height(),op=height/width,magee_vimeo.find("iframe.magee-vimeo").width(divwidth-100),magee_vimeo.find("iframe.magee-vimeo").height(op*divwidth-100))})}}),y.fn.MageeShortcodes=function(){return new e},y(function(){(new e).init()})}(window.jQuery,window,document);
|
1 |
+
!function(y,t){function e(){}y.extend(e.prototype,{init:function(){this.initShortcodes(),this.general(),this.animation(),this.heading(),this.resize()},initShortcodes:function(){this.shortcodeAccordion(),this.shortcodeAudioplayer(),this.shortcodeAlert(),this.shortcodeCarousel(),this.shortcodeContact(),this.shortcodeCountdown(),this.shortcodeCounter(),this.shortcodeDailymotion(),this.shortcodeDocumentviewer(),this.shortcodeExpand(),this.shortcodeFeature(),this.shortcodeFlipbox(),this.shortcodeImagecompare(),this.shortcodeVimeo(),this.shortcodePiechart(),this.shortcodeModaltrigger()},resize:function(){var e=this;y(t).on("resize",function(){e.heading()})},DY_scroll:function(e,t,a,i,o,n){var e=y(e),t=y(t),a=y(a),s=(i=y(i).find("ul")).find("li").outerWidth(!0),d=o;a.click(function(){i.animate({"margin-left":-s},function(){i.find("li").eq(0).appendTo(i),i.css({"margin-left":0})})}),t.click(function(){i.find("li:last").prependTo(i),i.css({"margin-left":-s}),i.animate({"margin-left":0})}),1==n&&(ad=setInterval(function(){a.click()},1e3*d),e.hover(function(){clearInterval(ad)},function(){ad=setInterval(function(){a.click()},1e3*d)}))},counterUp:function(e,t){var a=y.extend({time:400,delay:10},t);return e.each(function(){var c=y(this),r=a;c.waypoint(function(){for(var e=[],t=r.time/r.delay,a=c.text(),i=/[0-9]+,[0-9]+/.test(a),a=a.replace(/,/g,""),o=(/^[0-9]+$/.test(a),/^[0-9]+\.[0-9]+$/.test(a)),n=o?(a.split(".")[1]||[]).length:0,s=t;1<=s;s--){var d=parseInt(a/t*s);if(o&&(d=parseFloat(a/t*s).toFixed(n)),i)for(;/(\d+)(\d{3})/.test(d.toString());)d=d.toString().replace(/(\d+)(\d{3})/,"$1,$2");e.unshift(d)}c.data("counterup-nums",e),c.text("0");c.data("counterup-func",function(){c.text(c.data("counterup-nums").shift()),c.data("counterup-nums").length?setTimeout(c.data("counterup-func"),r.delay):(c.data("counterup-nums"),c.data("counterup-nums",null),c.data("counterup-func",null))}),setTimeout(c.data("counterup-func"),r.delay)},{offset:"100%",triggerOnce:!0})})},IsEmail:function(e){return!!/^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(e)},general:function(){y(".wow").each(function(){var e=y(this).data("animationduration");void 0!==e&&y(this).css({"-webkit-animation-duration":e+"s","animation-duration":e+"s"})});var e=y('.magee-shortcode[data-toggle="tooltip"]');e.length&&e.tooltip();e=y(".magee-popover");e.length&&e.popover();e=y("a[rel^='prettyPhoto']");e.length&&e.prettyPhoto()},heading:function(){y(".magee-heading").each(function(){magee_heading=y(this),"yes"==magee_heading.data("responsive")&&y(t).width()<1200&&(newPercentage=y(t).width()/1200*100+"%",y(this).find(".heading-inner").css({"font-size":newPercentage}))})},mgmodal:function(e,t){var a=e;""===(t=y.extend({title:"",message:"",close_icon:"",type:"effect-1",id:""},t)).type&&(t.type="effect-1"),""===t.close_icon&&(t.close_icon="yes"),a.wrap('<div class="ms-modal-wrapper"></div>'),a.after('<div class="magee-modal-wrapper" id="'+t.id+'"></div>');var i=a.parent(".ms-modal-wrapper").find(".magee-modal-wrapper");i.append('<div class="magee-modal magee-modal-'+t.type+'"></div><div class="magee-modal-overlay"></div>');var o=i.find(".magee-modal");o.append('<div class="magee-modal-content-wrapper"><div class="magee-modal-title-wrapper"></div><div class="magee-modal-content"></div></div>');e=i.find(".magee-modal-title-wrapper");"yes"===t.close_icon?e.append("<h3>"+t.title+'<a href="javascript:void(0);" class="magee-modal-close"><i class="fa fa-remove"></i></a></h3>'):e.append("<h3>"+t.title+"</h3>"),i.find(".magee-modal-content").append(t.message),i.find("a.magee-modal-close").on("click",function(e){e.preventDefault(),o.removeClass("magee-modal-show")}),i.find(".magee-modal-overlay").on("click",function(){o.removeClass("magee-modal-show")}),a.on("click",function(){o.addClass("magee-modal-show")})},animation:function(){y(".magee-shortcode[data-animation]").mouseover(function(){var e=y(this).attr("data-animation");y(this).addClass("animated").addClass(e)}),y(".magee-shortcode[data-animation]").mouseout(function(){var e=y(this).attr("data-animation");y(this).removeClass("animated").removeClass(e)}),y(".magee-animated").length&&y(".magee-animated").each(function(){("yes"===y(this).data("imageanimation")?y(this).find("img,i.fa"):y(this)).css("visibility","hidden"),$this=y(this),y().waypoint&&$this.waypoint(function(e,t){$this.css("visibility","visible"),$this.find("img,i.fa").css("visibility","visible");var a=$this.data("animationtype"),i=$this.data("animationduration");"yes"===$this.data("imageanimation")?($this.find("img,i.fa").addClass("animated "+a),i&&($this.find("img,i.fa").css("-moz-animation-duration",i+"s"),$this.find("img,i.fa").css("-webkit-animation-duration",i+"s"),$this.find("img,i.fa").css("-ms-animation-duration",i+"s"),$this.find("img,i.fa").css("-o-animation-duration",i+"s"),$this.find("img,i.fa").css("animation-duration",i+"s"))):($this.addClass("animated "+a),i&&($this.css("-moz-animation-duration",i+"s"),$this.css("-webkit-animation-duration",i+"s"),$this.css("-ms-animation-duration",i+"s"),$this.css("-o-animation-duration",i+"s"),$this.css("animation-duration",i+"s")))},{triggerOnce:!0,offset:"90%"})})},shortcodeAccordion:function(){var e=y(".magee-accordion");e.length&&e.find(".panel-heading").on("click",function(e){e.stopPropagation();var t=y(this).parents(".magee-accordion"),a=y(this).find("a.accordion-toggle"),i=a.attr("aria-controls"),e=y(this).parents(".magee-accordion").attr("aria-multiselectable"),i=y("#"+i);return i.slideToggle("fade"),a.hasClass("collapsed")?a.removeClass("collapsed"):a.addClass("collapsed"),console.log(e),"yes"!==e&&"1"!==e&&(t.find(".panel-collapse").not(i).slideUp("fast"),t.find(".accordion-toggle").not(a).addClass("collapsed")),!1})},shortcodeAlert:function(e){var t=y(".magee-alert");t.length&&t.find(".close").each(function(){y(this).click(function(e){e.preventDefault(),y(this).parent(".magee-alert").remove()})})},shortcodeAudioplayer:function(){var e=y(".ms-audio");e.length&&e.each(function(){y(this).audioPlayer({classPrefix:"audioplayer",strPlay:"Play",strPause:"Pause",strVolume:"Volume",strControls:y(this).data("controls"),strStyle:y(this).data("style")})})},shortcodeContact:function(){y("form.magee-contact-form #submit").click(function(e){e.preventDefault();var t=y(this).parents(".magee-contact-form");t.find(".contact-failed").text("");var a=t.find("input#receiver").val(),o=t.find("input#email").val(),n=t.find("input#name").val(),s=t.find("input#subject").val(),d=t.find("textarea#message").val(),c=t.find("input#country").val()?t.find("input#country").val():"0",r=t.find("input#city").val()?t.find("input#city").val():"0",l=t.find("input#telephone").val()?t.find("input#telephone").val():"0",h=t.find("input#company").val()?t.find("input#company").val():"0",f=t.find("input#website").val()?t.find("input#website").val():"0",m="checked"==t.find("input#checkboxWarning").attr("checked")?"yes":"no",u=t.find("input#terms").val(),e=t.find("input#required_fields").val(),g=e.split(","),p="",v="";for(i=0;i<g.length;i++)if((v=y.trim(g[i]))&&0<t.find("#"+v).length){if(""===t.find("#"+v).val())return p+=v,t.find(".contact-failed").addClass("notice-error"),t.find(".contact-failed").html(v.substring(0,1).toUpperCase()+v.substring(1)+magee_params.required),!1;p+=""}return""==p&&(t.find(".contact-failed").removeClass("notice-error"),t.find(".contact-failed").append("<img alt='loading' class='loading' src='"+magee_params.themeurl+"/images/AjaxLoader.gif' />"),y.ajax({type:"POST",dataType:"json",url:magee_params.ajaxurl,data:{name:n,email:o,subject:s,receiver:a,message:d,terms:u,checkboxWarning:m,required_fields:e,country:c,city:r,telephone:l,company:h,website:f,action:"magee_contact"},success:function(e){return 0==e.error?(t.find(".contact-failed").addClass("notice-success"),t.find(".contact-failed").html(e.msg),y(".loading").remove(),t[0].reset()):(t.find(".contact-failed").removeClass("notice-success"),t.find(".contact-failed").html(e.msg)),!1},error:function(){return t.find(".contact-failed").html("Error."),t.find(".loading").remove(),!1}})),!1})},shortcodeCountdown:function(){var e=y(".magee-countdown-circle-type");e.length&&e.each(function(){el=y(this),el.ClassyCountdown({end:el.data("endtime"),now:el.data("nowtime"),labels:!0,labelsOptions:{lang:{days:el.data("day_field_text"),hours:el.data("hours_field_text"),minutes:el.data("minutes_field_text"),seconds:el.data("seconds_field_text")}},style:{element:"",textResponsive:.5,days:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_day_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},hours:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_hours_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},minutes:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_minutes_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"},seconds:{gauge:{thickness:.03,bgColor:"rgba(255,255,255,0.05)",fgColor:el.data("circle_type_seconds_color")},textCSS:"font-family:"+el.data("google_fonts")+";font-weight:300; color:"+el.data("fontcolor")+";"}},onEndCallback:function(){el.remove()}})})},shortcodeCounter:function(){y(".magee-counter-box").length&&y(".magee-counter-box").waypoint(function(e){var t=y(this.element).attr("class");"down"!==e||y(this.element).hasClass("animated")||(setTimeout(function(){y("."+t.replace(" ",".")).find(".js-counter").countTo({formatter:function(e,t){return e.toFixed(t.decimals)}})},200),y(this.element).addClass("animated"))},{offset:"75%"})},shortcodeCarousel:function(){y(".magee-carousel").length&&y(".magee-carousel").each(function(){var e=y(this),t=e.data("columns"),a=0<t-2?t-2:t,i=1<t?10:0;e.find(".owl-carousel").owlCarousel({loop:!0,margin:i,autoplay:"yes"==e.data("autoplay"),autoplayTimeout:e.data("autoplaytimeout"),autoplayHoverPause:!0,items:t,responsiveClass:!0,responsive:{0:{items:1,nav:!1},600:{items:a,nav:"yes"==e.data("display-nav")?"true":"false"},1e3:{items:t,nav:"yes"==e.data("display-nav")?"true":"false"}}}),e.find(".carousel-next").click(function(){e.find(".owl-carousel").trigger("next.owl.carousel")}),e.find(".carousel-prev").click(function(){e.find(".owl-carousel").trigger("prev.owl.carousel")}),e.find(".owl-controls").addClass(e.data("pag-style"))}),y(".multi-carousel").length&&this.DY_scroll(".multi-carousel",".multi-carousel-nav-prev",".multi-carousel-nav-next",".multi-carousel-inner",3,!1)},shortcodeDailymotion:function(){var e=y(".magee-dailymotion");e.length&&e.each(function(){dail=y(this),("100%"==dail.data("width")||""==dail.data("width")&&"100%"==dail.data("height")||""==dail.data("height"))&&(width=dail.width(),iframewidth=dail.find("iframe").eq(0).width(),iframeheight=dail.find("iframe").eq(0).height(),op=iframeheight/iframewidth,dail.find("iframe").eq(0).width(width-100),dail.find("iframe").eq(0).height(op*(width-100)))})},shortcodeDocumentviewer:function(){y(".magee-document").length&&y(".magee-document").each(function(){doc=y(this),"yes"==doc.data("responsive")&&(width=doc.width(),width<doc.data("width")&&(op=doc.data("height")/doc.data("width"),doc.find("iframe").eq(0).width(width),doc.find("iframe").eq(0).height(op*width)))})},shortcodeExpand:function(){var e=y(".magee-expand");e.length&&e.each(function(){var t,a;expand=y(this),less_icon=expand.data("less-icon"),less_icon_color=expand.data("less-icon-color"),more_icon=expand.data("more-icon"),more_icon_color=expand.data("more-icon-color"),t=0<=less_icon.indexOf("fa-")?'<i class="fa '+less_icon+'" style="color:'+less_icon_color+';"></i> '+expand.data("less-text"):'<img src="'+less_icon+'" class="image-instead"/>'+expand.data("less-text"),a=0<=more_icon.indexOf("fa-")?'<i class="fa '+more_icon+'" style="color:'+more_icon_color+';"></i> '+expand.data("more-text"):'<img src="'+more_icon+'" class="image-instead"/>'+expand.data("more-text"),expand.find(".expand-control").click(function(){var e=y(this);e.parent(".magee-expand").find(".expand-content").slideToggle(500,function(){e.siblings(".expand-content").is(":visible")?e.html(t):e.html(a)})})})},shortcodeFeature:function(){var e=y(".magee-feature-box");if(e.length)for(i=0;i<e.length;i++){var t=y(e[i]).find(".icon-box").outerWidth();y(e[i]).find("img.feature-box-icon").length&&(t=y(e[i]).find("img.feature-box-icon").outerWidth()),t+=15,y(e[i]).hasClass("style2")&&y(e[i]).hasClass("reverse")?y(e[i]).css({"padding-left":0,"padding-right":t+"px"}):y(e[i]).hasClass("style2")?y(e[i]).css({"padding-left":t+"px"}):y(this).hasClass("style3")?(t-=15,y(e[i]).find("h3").css({"line-height":t+"px"})):y(e[i]).hasClass("style4")&&(t1=-(t/=2),t+="px",t1+="px",y(e[i]).css({"padding-top":t,"margin-top":t}),y(e[i]).find(".icon-box").css({top:t1,"margin-left":t1}),y(e[i]).find("img.feature-box-icon").css({top:t1,"margin-left":t1}))}},shortcodeFlipbox:function(){var e=y(".magee-flipbox-wrap");e.length&&e.each(function(){var e=y(this).find(".flipbox-front").outerHeight(),t=y(this).find(".flipbox-back").outerHeight(),t=t<e?e:t;y(this).css({height:t});t=y(this);t.bind("touchstart",function(){var e=y(this).data("direction");switch(e){case"horizontal":case"vertical":case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":y(this).find(".flipbox-front").addClass(e+"-touchstart-front").removeClass(e+"-touchend-front"),y(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":y(this).find(".flipbox-back").addClass(e+"-touchstart-back").removeClass(e+"-touchend-back")}}),t.bind("touchend",function(){var e=y(this).data("direction");switch(e){case"horizontal":case"vertical":y(this).find(".flipbox-front").addClass(e+"-touchend-front").removeClass(e+"-touchstart-front"),y(this).find(".flipbox-back").addClass(e+"-touchend-back").removeClass(e+"-touchstart-back");break;case"slide-left":case"slide-right":case"slide-top":case"slide-bottom":y(this).find(".flipbox-front").removeClass(e+"-touchstart-front").addClass(e+"-touchend-front"),y(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back");break;case"flip-bottom":case"flip-top":case"flip-right":case"flip-left":y(this).find(".flipbox-back").removeClass(e+"-touchstart-back").addClass(e+"-touchend-back")}})})},shortcodeImagecompare:function(){y(".magee-image-compare").length&&y(".magee-image-compare").each(function(){y(this).twentytwenty({default_offset_pct:y(this).data("pct"),orientation:y(this).data("orientation")})})},shortcodeModaltrigger:function(){var e=y(".magee-modal-trigger"),t=this;e.length&&e.each(function(){var e=y(this);t.mgmodal(e,{title:e.data("title"),message:e.data("content"),close_icon:e.data("close_icon"),type:e.data("effect"),id:e.data("id")})})},shortcodePiechart:function(){y(".magee-chart-box").length&&y(".magee-chart-box").each(function(){piechart=y(this),piechart.easyPieChart({barColor:piechart.data("barcolor"),trackColor:piechart.data("trackcolor"),scaleColor:!1,lineWidth:10,trackWidth:10,size:piechart.data("size"),lineCap:piechart.data("linecap")})})},shortcodeVimeo:function(){var e=y(".magee-vimeo-video");e.length&&e.each(function(){magee_vimeo=y(this),("100%"==magee_vimeo.data("width")||"100%"==magee_vimeo.data("height")&&""==magee_vimeo.data("width")||""==magee_vimeo.data("height"))&&(divwidth=magee_vimeo.width(),width=magee_vimeo.find("iframe.magee-vimeo").width(),height=magee_vimeo.find("iframe.magee-vimeo").height(),op=height/width,magee_vimeo.find("iframe.magee-vimeo").width(divwidth-100),magee_vimeo.find("iframe.magee-vimeo").height(op*divwidth-100))})}}),y.fn.MageeShortcodes=function(){return new e},y(function(){(new e).init()})}(window.jQuery,window,document);
|
inc/core.php
DELETED
@@ -1,1320 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
class Magee_Core{
|
3 |
-
var $conf;
|
4 |
-
var $popup;
|
5 |
-
var $params;
|
6 |
-
var $shortcode;
|
7 |
-
var $popup_title;
|
8 |
-
var $output;
|
9 |
-
var $errors;
|
10 |
-
public $magee_shortcodes ;
|
11 |
-
public $magee_sliders ;
|
12 |
-
|
13 |
-
public function __construct( $args = array() ) {
|
14 |
-
global $magee_shortcodes,$magee_sliders ;
|
15 |
-
require_once( MAGEE_SHORTCODES_DIR_PATH. 'inc/google-fonts.php' );
|
16 |
-
add_action( 'plugins_loaded', array( $this, 'init' ) );
|
17 |
-
//add a button to the content editor, next to the media button
|
18 |
-
//this button will show a popup that contains inline content
|
19 |
-
add_action('media_buttons_context', array($this,'add_shortcodes_button'));
|
20 |
-
add_action('init',array($this,'get_sidebars'),10) ;
|
21 |
-
if(is_admin()){
|
22 |
-
add_action( 'admin_enqueue_scripts', array($this,'admin_scripts' ));
|
23 |
-
add_action('wp_ajax_magee_shortcodes_popup', array(&$this, 'popup') );
|
24 |
-
add_action( 'wp_ajax_nopriv_magee_shortcodes_popup', array(&$this, 'popup') );
|
25 |
-
|
26 |
-
add_action('wp_ajax_magee_shortcode_form', array(&$this, 'shortcode_form') );
|
27 |
-
add_action( 'wp_ajax_nopriv_magee_shortcode_form', array(&$this, 'shortcode_form') );
|
28 |
-
|
29 |
-
add_action('wp_ajax_magee_create_shortcode', array(&$this, 'create_shortcode') );
|
30 |
-
add_action( 'wp_ajax_nopriv_magee_create_shortcode', array(&$this, 'create_shortcode') );
|
31 |
-
|
32 |
-
add_action('wp_ajax_magee_control_button', array(&$this, 'get_control_button') );
|
33 |
-
add_action( 'wp_ajax_nopriv_magee_control_button', array(&$this, 'get_control_button') );
|
34 |
-
|
35 |
-
add_action('wp_ajax_say', array(&$this, 'say'));
|
36 |
-
add_action('wp_ajax_nopriv_say', array(&$this, 'say'));
|
37 |
-
|
38 |
-
add_action('wp_ajax_js', array(&$this, 'js'));
|
39 |
-
add_action('wp_ajax_nopriv_js', array(&$this, 'js'));
|
40 |
-
}else{
|
41 |
-
add_action( 'wp_enqueue_scripts', array($this,'frontend_scripts' ));
|
42 |
-
|
43 |
-
}
|
44 |
-
|
45 |
-
$this->init_shortcodes();
|
46 |
-
|
47 |
-
if( file_exists( dirname(__FILE__) . '/options.php' ) )
|
48 |
-
{
|
49 |
-
$this->conf = dirname(__FILE__) . '/options.php';
|
50 |
-
|
51 |
-
//$this->formate_shortcode();
|
52 |
-
add_action( 'init',array($this,'formate_shortcode'),20) ;
|
53 |
-
}
|
54 |
-
$this->magee_shortcodes = $magee_shortcodes;
|
55 |
-
$this->magee_sliders = $this->sliders_meta();
|
56 |
-
|
57 |
-
|
58 |
-
}
|
59 |
-
public static function init() {
|
60 |
-
load_plugin_textdomain( 'magee-shortcodes', false, dirname( plugin_basename( MAGEE_SHORTCODES_PATH ) ). '/languages/' );
|
61 |
-
|
62 |
-
}
|
63 |
-
|
64 |
-
function admin_scripts() {
|
65 |
-
wp_enqueue_script('thickbox');
|
66 |
-
wp_enqueue_style('thickbox');
|
67 |
-
wp_enqueue_style( 'wp-color-picker' );
|
68 |
-
wp_enqueue_style('font-awesome', plugins_url( 'assets/font-awesome/css/font-awesome.css',MAGEE_SHORTCODES_PATH ), '', '4.4.0', false );
|
69 |
-
wp_enqueue_style('magee-shortcode', plugins_url( 'assets/css/shortcode.css',MAGEE_SHORTCODES_PATH ), '', MAGEE_SHORTCODES_VER, false );
|
70 |
-
wp_enqueue_style('magee-admin', plugins_url( 'assets/css/admin.css',MAGEE_SHORTCODES_PATH ), '', MAGEE_SHORTCODES_VER, false );
|
71 |
-
wp_enqueue_style('prettyPhoto', plugins_url( 'assets/css/prettyPhoto.css',MAGEE_SHORTCODES_PATH ), '', MAGEE_SHORTCODES_VER, false );
|
72 |
-
wp_enqueue_script( 'magee-twentytwenty', plugins_url( 'assets/js/jquery.twentytwenty.js',MAGEE_SHORTCODES_PATH ), array( 'jquery','wp-color-picker' ),MAGEE_SHORTCODES_VER, true );
|
73 |
-
wp_enqueue_script( 'magee-admin-js', plugins_url( 'assets/js/admin.js',MAGEE_SHORTCODES_PATH ), array( 'jquery','wp-color-picker' ),MAGEE_SHORTCODES_VER, true );
|
74 |
-
wp_enqueue_script( 'combodate-js', plugins_url( 'assets/js/combodate.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'),'', true );
|
75 |
-
wp_enqueue_script( 'moment-js', plugins_url( 'assets/js/moment.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'),'', true );
|
76 |
-
|
77 |
-
}
|
78 |
-
function frontend_scripts() {
|
79 |
-
wp_enqueue_style('font-awesome', plugins_url( 'assets/font-awesome/css/font-awesome.css',MAGEE_SHORTCODES_PATH ), '', '4.4.0', false );
|
80 |
-
wp_enqueue_style('bootstrap', plugins_url( 'assets/bootstrap/css/bootstrap.min.css',MAGEE_SHORTCODES_PATH ), '', '3.3.4', false );
|
81 |
-
wp_enqueue_style('prettyPhoto', plugins_url( 'assets/css/prettyPhoto.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
82 |
-
|
83 |
-
wp_enqueue_style('classycountdown', plugins_url( 'assets/jquery-countdown/jquery.classycountdown.css',MAGEE_SHORTCODES_PATH ), '', '1.1.0', false );
|
84 |
-
|
85 |
-
wp_enqueue_style('twentytwenty', plugins_url( 'assets/css/twentytwenty.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
86 |
-
wp_enqueue_style('audioplayer', plugins_url( 'assets/css/audioplayer.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
87 |
-
wp_enqueue_style('weather-icons', plugins_url( 'assets/weathericons/css/weather-icons.min.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
88 |
-
wp_enqueue_style('animate', plugins_url( 'assets/css/animate.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
89 |
-
wp_enqueue_style('magee-shortcode', plugins_url( 'assets/css/shortcode.css',MAGEE_SHORTCODES_PATH ), '', MAGEE_SHORTCODES_VER, false );
|
90 |
-
wp_enqueue_script( 'bootstrap', plugins_url( 'assets/bootstrap/js/bootstrap.min.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '3.3.4', false );
|
91 |
-
wp_enqueue_script( 'waypoints', plugins_url( 'assets/js/jquery.waypoints.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '2.0.5', false );
|
92 |
-
wp_enqueue_script( 'countdown', plugins_url( 'assets/jquery-countdown/jquery.countdown.min.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '2.0.4', false );
|
93 |
-
wp_enqueue_script( 'easy-pie-chart', plugins_url( 'assets/jquery-easy-pie-chart/jquery.easypiechart.min.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '2.1.7', false );
|
94 |
-
wp_enqueue_script( 'jquery.prettyPhoto', plugins_url( 'assets/js/jquery.prettyPhoto.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '3.1.6', false );
|
95 |
-
|
96 |
-
wp_enqueue_script( 'jquery.knob', plugins_url( 'assets/jquery-countdown/jquery.knob.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '1.2.11', false );
|
97 |
-
wp_enqueue_script( 'jquery.throttle', plugins_url( 'assets/jquery-countdown/jquery.throttle.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '', false );
|
98 |
-
wp_enqueue_script( 'jquery.classycountdown', plugins_url( 'assets/jquery-countdown/jquery.classycountdown.min.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '1.1.0', false );
|
99 |
-
|
100 |
-
wp_enqueue_script( 'jquery.event.move', plugins_url( 'assets/js/jquery.event.move.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '1.3.6', false );
|
101 |
-
wp_enqueue_script( 'jquery.twentytwenty', plugins_url( 'assets/js/jquery.twentytwenty.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '', false );
|
102 |
-
wp_enqueue_script( 'jquery-audioplayer', plugins_url( 'assets/js/audioplayer.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '', false );
|
103 |
-
wp_enqueue_script( 'chart.min', plugins_url( 'assets/js/chart.min.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '2.1.4', false );
|
104 |
-
wp_enqueue_script( 'moment', plugins_url( 'assets/js/moment.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'),'2.12.0', false );
|
105 |
-
|
106 |
-
wp_enqueue_script( 'magee-main', plugins_url( 'assets/js/magee-shortcodes.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'),MAGEE_SHORTCODES_VER, true );
|
107 |
-
wp_enqueue_script( 'magee-modal', plugins_url( 'assets/js/magee-modal.js',MAGEE_SHORTCODES_PATH ),array( 'jquery'),MAGEE_SHORTCODES_VER, true );
|
108 |
-
//wp_enqueue_script( 'magee-main', plugins_url( 'assets/js/main.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'),MAGEE_SHORTCODES_VER, true );
|
109 |
-
|
110 |
-
}
|
111 |
-
|
112 |
-
|
113 |
-
//action to add a custom button to the content editor
|
114 |
-
function add_shortcodes_button($context) {
|
115 |
-
|
116 |
-
//path to shortcode icon
|
117 |
-
$img = plugins_url( 'assets/images/shortcode.png',MAGEE_SHORTCODES_PATH );
|
118 |
-
|
119 |
-
//our popup's title
|
120 |
-
$title = __('Magee Shortcodes','magee-shortcodes');
|
121 |
-
|
122 |
-
//append the icon
|
123 |
-
|
124 |
-
$context .= "<a class='magee_shortcodes button' title='{$title}'><img style='margin-bottom:2px' src='{$img}' />".__("Magee Shortcodes",'magee-shortcodes')."</a>";
|
125 |
-
|
126 |
-
return $context;
|
127 |
-
}
|
128 |
-
|
129 |
-
|
130 |
-
/**
|
131 |
-
* Popup function which will show shortcode options in thickbox.
|
132 |
-
*/
|
133 |
-
function popup() {
|
134 |
-
require_once( MAGEE_SHORTCODES_DIR_PATH . '/inc/popup.php' );
|
135 |
-
die();
|
136 |
-
}
|
137 |
-
|
138 |
-
function shortcode_form(){
|
139 |
-
$magee_shortcodes = $this->magee_shortcodes;
|
140 |
-
|
141 |
-
if( isset($_POST['shortcode']) && isset($magee_shortcodes[$_POST['shortcode']]) ){
|
142 |
-
if( isset($magee_shortcodes[$_POST['shortcode']]['child_shortcode'])){
|
143 |
-
echo '<h2 class="shortcode-name">'.$magee_shortcodes[$_POST['shortcode']]['popup_title'].'</h2>';
|
144 |
-
if(isset($magee_shortcodes[$_POST['shortcode']]['name'])){
|
145 |
-
echo '<div class="example-list">Want to know more about this shortcode? Check <a class="example-link" target="_blank" href="https://demo.mageewp.com/magee-shortcodes-demo/'.$magee_shortcodes[$_POST['shortcode']]['name'].'"> Examples of use</a>.</div>';
|
146 |
-
}
|
147 |
-
$this->popup = $_POST['shortcode'];
|
148 |
-
echo self::formate_shortcode();
|
149 |
-
echo '<div class="magee-add-point">Values for the following section can be added multiple times with ADD button</div>';
|
150 |
-
echo '<div class="column-shortcode-inner">'.self::formate_children_shortcode().'</div>';
|
151 |
-
echo '<div class="shortcode-add"><a href="#" class="child-shortcode-add">add</a></div>' ;
|
152 |
-
|
153 |
-
}else{
|
154 |
-
echo '<h2 class="shortcode-name">'.$magee_shortcodes[$_POST['shortcode']]['popup_title'].'</h2>';
|
155 |
-
if(isset($magee_shortcodes[$_POST['shortcode']]['name'])){
|
156 |
-
echo '<div class="example-list">Want to know more about this shortcode? Check <a class="example-link" target="_blank" href="https://demo.mageewp.com/magee-shortcodes-demo/'.$magee_shortcodes[$_POST['shortcode']]['name'].'"> Examples of use</a>.</div>';
|
157 |
-
}
|
158 |
-
$this->popup = $_POST['shortcode'];
|
159 |
-
echo self::formate_shortcode();
|
160 |
-
}
|
161 |
-
}
|
162 |
-
|
163 |
-
exit(0);
|
164 |
-
}
|
165 |
-
|
166 |
-
|
167 |
-
function init_shortcodes() {
|
168 |
-
|
169 |
-
foreach( glob( MAGEE_SHORTCODES_DIR_PATH . 'shortcodes/*.php' ) as $filename ) {
|
170 |
-
require_once $filename;
|
171 |
-
}
|
172 |
-
|
173 |
-
}
|
174 |
-
|
175 |
-
|
176 |
-
/**
|
177 |
-
* Function to get the default shortcode param values applied.
|
178 |
-
*/
|
179 |
-
public static function set_shortcode_defaults( $defaults, $args ) {
|
180 |
-
|
181 |
-
if( ! $args ) {
|
182 |
-
$$args = array();
|
183 |
-
}
|
184 |
-
|
185 |
-
$args = shortcode_atts( $defaults, $args );
|
186 |
-
|
187 |
-
foreach( $args as $key => $value ) {
|
188 |
-
if( $value == '' ||
|
189 |
-
$value == '|'
|
190 |
-
) {
|
191 |
-
$args[$key] = $defaults[$key];
|
192 |
-
}
|
193 |
-
}
|
194 |
-
|
195 |
-
return $args;
|
196 |
-
|
197 |
-
}
|
198 |
-
|
199 |
-
|
200 |
-
// fix shortcodes
|
201 |
-
|
202 |
-
public static function fix_shortcodes($content){
|
203 |
-
$replace_tags_from_to = array (
|
204 |
-
'<p>[' => '[',
|
205 |
-
']</p>' => ']',
|
206 |
-
']<br />' => ']',
|
207 |
-
']<br>' => ']',
|
208 |
-
']\r\n' => ']',
|
209 |
-
']\n' => ']',
|
210 |
-
']\r' => ']',
|
211 |
-
'\r\n[' => '[',
|
212 |
-
);
|
213 |
-
|
214 |
-
return strtr( $content, $replace_tags_from_to );
|
215 |
-
}
|
216 |
-
|
217 |
-
/**
|
218 |
-
* Convert Hex Code to RGB
|
219 |
-
* @param string $hex Color Hex Code
|
220 |
-
* @return array RGB values
|
221 |
-
*/
|
222 |
-
|
223 |
-
function hex2rgb( $hex ) {
|
224 |
-
if ( strpos( $hex,'rgb' ) !== FALSE ) {
|
225 |
-
|
226 |
-
$rgb_part = strstr( $hex, '(' );
|
227 |
-
$rgb_part = trim($rgb_part, '(' );
|
228 |
-
$rgb_part = rtrim($rgb_part, ')' );
|
229 |
-
$rgb_part = explode( ',', $rgb_part );
|
230 |
-
|
231 |
-
$rgb = array($rgb_part[0], $rgb_part[1], $rgb_part[2], $rgb_part[3]);
|
232 |
-
|
233 |
-
} elseif( $hex == 'transparent' ) {
|
234 |
-
$rgb = array( '255', '255', '255', '0' );
|
235 |
-
} else {
|
236 |
-
|
237 |
-
$hex = str_replace( '#', '', $hex );
|
238 |
-
|
239 |
-
if( strlen( $hex ) == 3 ) {
|
240 |
-
$r = hexdec( substr( $hex, 0, 1 ) . substr( $hex, 0, 1 ) );
|
241 |
-
$g = hexdec( substr( $hex, 1, 1 ) . substr( $hex, 1, 1 ) );
|
242 |
-
$b = hexdec( substr( $hex, 2, 1 ) . substr( $hex, 2, 1 ) );
|
243 |
-
} else {
|
244 |
-
$r = hexdec( substr( $hex, 0, 2 ) );
|
245 |
-
$g = hexdec( substr( $hex, 2, 2 ) );
|
246 |
-
$b = hexdec( substr( $hex, 4, 2 ) );
|
247 |
-
}
|
248 |
-
$rgb = array( $r, $g, $b );
|
249 |
-
}
|
250 |
-
|
251 |
-
return $rgb; // returns an array with the rgb values
|
252 |
-
}
|
253 |
-
|
254 |
-
public static function unrecognize_shortcodes($content){
|
255 |
-
$pre = "/<pre(.*?)>(.*?)<\/pre>/";
|
256 |
-
|
257 |
-
preg_match_all($pre,$content,$result);
|
258 |
-
$count = count($result);
|
259 |
-
foreach( $result as $val){
|
260 |
-
|
261 |
-
foreach( $val as $cval){
|
262 |
-
|
263 |
-
$ck = str_replace('[',"[",strval($cval));
|
264 |
-
$content = str_replace($val,$ck,$content);
|
265 |
-
}
|
266 |
-
}
|
267 |
-
return $content;
|
268 |
-
|
269 |
-
}
|
270 |
-
public static function colourBrightness($hex, $percent) {
|
271 |
-
// Work out if hash given
|
272 |
-
$hash = '';
|
273 |
-
if (stristr($hex,'#')) {
|
274 |
-
$hex = str_replace('#','',$hex);
|
275 |
-
$hash = '#';
|
276 |
-
}
|
277 |
-
/// HEX TO RGB
|
278 |
-
$rgb = array(hexdec(substr($hex,0,2)), hexdec(substr($hex,2,2)), hexdec(substr($hex,4,2)));
|
279 |
-
//// CALCULATE
|
280 |
-
for ($i=0; $i<3; $i++) {
|
281 |
-
// See if brighter or darker
|
282 |
-
if ($percent > 0) {
|
283 |
-
// Lighter
|
284 |
-
$rgb[$i] = round($rgb[$i] * $percent) + round(255 * (1-$percent));
|
285 |
-
} else {
|
286 |
-
// Darker
|
287 |
-
$positivePercent = $percent - ($percent*2);
|
288 |
-
$rgb[$i] = round($rgb[$i] * $positivePercent) + round(0 * (1-$positivePercent));
|
289 |
-
}
|
290 |
-
// In case rounding up causes us to go to 256
|
291 |
-
if ($rgb[$i] > 255) {
|
292 |
-
$rgb[$i] = 255;
|
293 |
-
}
|
294 |
-
}
|
295 |
-
//// RBG to Hex
|
296 |
-
$hex = '';
|
297 |
-
for($i=0; $i < 3; $i++) {
|
298 |
-
// Convert the decimal digit to hex
|
299 |
-
$hexDigit = dechex($rgb[$i]);
|
300 |
-
// Add a leading zero if necessary
|
301 |
-
if(strlen($hexDigit) == 1) {
|
302 |
-
$hexDigit = "0" . $hexDigit;
|
303 |
-
}
|
304 |
-
// Append to the hex string
|
305 |
-
$hex .= $hexDigit;
|
306 |
-
}
|
307 |
-
return $hash.$hex;
|
308 |
-
}
|
309 |
-
|
310 |
-
/**
|
311 |
-
* Function to apply attributes to HTML tags.
|
312 |
-
|
313 |
-
*/
|
314 |
-
public static function attributes( $slug, $attributes = array() ) {
|
315 |
-
|
316 |
-
$out = '';
|
317 |
-
$attr = apply_filters( "magee_attr_{$slug}", $attributes );
|
318 |
-
|
319 |
-
if ( empty( $attr ) ) {
|
320 |
-
$attr['class'] = $slug;
|
321 |
-
}
|
322 |
-
|
323 |
-
foreach ( $attr as $name => $value ) {
|
324 |
-
$out .= !empty( $value ) ? sprintf( ' %s="%s"', esc_html( $name ), esc_attr( $value ) ) : esc_html( " {$name}" );
|
325 |
-
}
|
326 |
-
|
327 |
-
return trim( $out );
|
328 |
-
|
329 |
-
}
|
330 |
-
//widget load
|
331 |
-
function get_sidebars() {
|
332 |
-
global $wp_registered_sidebars;
|
333 |
-
$sidebars = array();
|
334 |
-
$sidebars[''] = 'Default';
|
335 |
-
foreach( $wp_registered_sidebars as $sidebar_id => $sidebar ) {
|
336 |
-
$sidebars[$sidebar_id] = $sidebar['name'];
|
337 |
-
}
|
338 |
-
return $sidebars;
|
339 |
-
}
|
340 |
-
|
341 |
-
function get_control_button(){
|
342 |
-
//path to preview icon
|
343 |
-
$preview = plugins_url( 'assets/images/preview.png',MAGEE_SHORTCODES_PATH );
|
344 |
-
//path to list icon
|
345 |
-
$list = plugins_url( 'assets/images/list.png',MAGEE_SHORTCODES_PATH );
|
346 |
-
//path to insert shortcode icon
|
347 |
-
$insert = plugins_url( 'assets/images/insert_shortcode.png',MAGEE_SHORTCODES_PATH );
|
348 |
-
echo '<div class="TB_footer" id="TB_footer"><div class="magee-shortcode-return">Top</div><div class="magee-shortcode-actions magee-shortcode-clearfix"><a class="button button-large magee-shortcodes-home" href="javascript:void(0);"><img src="'.$list.'"/></a><a class="button button-primary button-large magee-shortcodes-preview" ><img style="margin-bottom:-3px;margin-right:5px" src="'.$preview.'"/>'.__("Live Preview",'magee-shortcodes').'</a><a class="button button-primary button-large magee-shortcode-insert" href="javascript:void(0);"><img style="margin-bottom:-3px;margin-right:5px" src="'.$insert.'"/>'.__("Insert shortcode",'magee-shortcodes').'</a></div></div>';
|
349 |
-
exit(0);
|
350 |
-
}
|
351 |
-
|
352 |
-
function create_shortcode(){
|
353 |
-
$magee_shortcodes = $this->magee_shortcodes;
|
354 |
-
|
355 |
-
$shortcode = '';
|
356 |
-
|
357 |
-
if( isset( $magee_shortcodes ) && is_array( $magee_shortcodes ) && isset($_POST['shortcode']) )
|
358 |
-
{
|
359 |
-
|
360 |
-
$popup = $_POST['shortcode'];
|
361 |
-
|
362 |
-
$params = $magee_shortcodes[$popup]['params'];
|
363 |
-
|
364 |
-
$shortcode = $magee_shortcodes[$popup]['shortcode'];
|
365 |
-
|
366 |
-
$attrs = array();
|
367 |
-
if( isset( $_POST['attr'] ) ):
|
368 |
-
foreach( $_POST['attr'] as $attr){
|
369 |
-
$attrs[str_replace('magee_','',$attr['name'])] = $attr['value'];
|
370 |
-
}
|
371 |
-
|
372 |
-
foreach( $params as $pkey => $param )
|
373 |
-
{
|
374 |
-
|
375 |
-
if( isset($attrs[$pkey] )){
|
376 |
-
|
377 |
-
$shortcode = str_replace('{{'.$pkey.'}}',$attrs[$pkey],$shortcode);
|
378 |
-
|
379 |
-
}else{
|
380 |
-
$shortcode = str_replace('{{'.$pkey.'}}','',$shortcode);
|
381 |
-
}
|
382 |
-
}
|
383 |
-
endif;
|
384 |
-
|
385 |
-
if( isset($magee_shortcodes[$popup]['child_shortcode'])):
|
386 |
-
|
387 |
-
$common = array_slice($_POST['attr'],count($_POST['attr'])-2,2) ;
|
388 |
-
array_splice($_POST['attr'],count($_POST['attr'])-2,2);
|
389 |
-
$number = count($magee_shortcodes[$popup]['child_shortcode']['params']);
|
390 |
-
$expcet = count($magee_shortcodes[$popup]['params']);
|
391 |
-
array_splice($_POST['attr'],0,$expcet);
|
392 |
-
$loop = array_chunk($_POST['attr'],$number);
|
393 |
-
$i = '';
|
394 |
-
$copyshortcode = '';
|
395 |
-
for( $i=0;$i<count($loop);$i++){
|
396 |
-
|
397 |
-
$cparams = $magee_shortcodes[$popup]['child_shortcode']['params'];
|
398 |
-
|
399 |
-
$cshortcode = $magee_shortcodes[$popup]['child_shortcode']['shortcode'];
|
400 |
-
$attrs = array();
|
401 |
-
$perattr = array_merge($loop[$i],$common);
|
402 |
-
|
403 |
-
foreach( $perattr as $attr){
|
404 |
-
|
405 |
-
$attrs[str_replace('magee_','',$attr['name'])] = $attr['value'];
|
406 |
-
}
|
407 |
-
foreach( $cparams as $cpkey => $cparam )
|
408 |
-
{
|
409 |
-
|
410 |
-
if( isset($attrs[$cpkey] )){
|
411 |
-
|
412 |
-
$cshortcode = str_replace('{{'.$cpkey.'}}',$attrs[$cpkey],$cshortcode);
|
413 |
-
|
414 |
-
}else{
|
415 |
-
$cshortcode = str_replace('{{'.$cpkey.'}}','',$cshortcode);
|
416 |
-
}
|
417 |
-
}
|
418 |
-
$copyshortcode .= $cshortcode;
|
419 |
-
|
420 |
-
}
|
421 |
-
$shortcode = str_replace('{{child_shortcode}}',$copyshortcode,$shortcode);
|
422 |
-
|
423 |
-
|
424 |
-
endif;
|
425 |
-
|
426 |
-
}
|
427 |
-
$shortcode = str_replace('\\\'','\'',$shortcode);
|
428 |
-
$shortcode = str_replace('\\"','"',$shortcode);
|
429 |
-
$shortcode = str_replace('\\\\','\\',$shortcode);
|
430 |
-
echo $shortcode;
|
431 |
-
exit();
|
432 |
-
}
|
433 |
-
|
434 |
-
function formate_shortcode()
|
435 |
-
{
|
436 |
-
global $magee_shortcodes,$magee_widget;
|
437 |
-
$magee_widget = self::get_sidebars();
|
438 |
-
|
439 |
-
// get config file
|
440 |
-
include_once( $this->conf );
|
441 |
-
$this->magee_shortcodes = $magee_shortcodes;
|
442 |
-
|
443 |
-
$output = '';
|
444 |
-
unset($magee_shortcodes['shortcode-generator']['params']['select_shortcode']);
|
445 |
-
|
446 |
-
|
447 |
-
if( isset( $magee_shortcodes ) && is_array( $magee_shortcodes ) && isset( $magee_shortcodes[$this->popup]['params']))
|
448 |
-
{
|
449 |
-
// get shortcode config stuff
|
450 |
-
|
451 |
-
|
452 |
-
$this->params = $magee_shortcodes[$this->popup]['params'];
|
453 |
-
$this->shortcode = $magee_shortcodes[$this->popup]['shortcode'];
|
454 |
-
$this->popup_title = $magee_shortcodes[$this->popup]['popup_title'];
|
455 |
-
|
456 |
-
// adds stuff for js use
|
457 |
-
$this->append_output( "\n" . '<div id="_magee_shortcode" class="hidden">' . $this->shortcode . '</div>' );
|
458 |
-
$this->append_output( "\n" . '<div id="_magee_popup" class="hidden">' . $this->popup . '</div>' );
|
459 |
-
|
460 |
-
|
461 |
-
// filters and excutes params
|
462 |
-
if( $this->params ):
|
463 |
-
foreach( $this->params as $pkey => $param )
|
464 |
-
{
|
465 |
-
|
466 |
-
|
467 |
-
// prefix the fields names and ids with magee_
|
468 |
-
$pkey = 'magee_' . $pkey;
|
469 |
-
|
470 |
-
if(!isset($param['std'])) {
|
471 |
-
$param['std'] = '';
|
472 |
-
}
|
473 |
-
|
474 |
-
|
475 |
-
if(!isset($param['desc'])) {
|
476 |
-
$param['desc'] = '';
|
477 |
-
}
|
478 |
-
|
479 |
-
// popup form row start
|
480 |
-
$row_start = '<div class="param-item">' . "\n";
|
481 |
-
$row_start .= '<div class="form-row row" class="' . $pkey . '">' . "\n";
|
482 |
-
if($param['type'] != 'info') {
|
483 |
-
$row_start .= '<div class="label">';
|
484 |
-
$row_start .= '<span class="magee-form-label-title">' . $param['label'] . '</span>' . "\n";
|
485 |
-
$row_start .= '<span class="magee-form-desc">' . $param['desc'] . '</span>' . "\n";
|
486 |
-
$row_start .= '</div>' . "\n";
|
487 |
-
}
|
488 |
-
$row_start .= '<div class="field">' . "\n";
|
489 |
-
|
490 |
-
// popup form row end
|
491 |
-
$row_end = '</div>' . "\n";
|
492 |
-
$row_end .= '</div>' . "\n";
|
493 |
-
$row_end .= '</div>' . "\n";
|
494 |
-
|
495 |
-
switch( $param['type'] )
|
496 |
-
{
|
497 |
-
case 'text' :
|
498 |
-
|
499 |
-
// prepare
|
500 |
-
$output .= $row_start;
|
501 |
-
$output .= '<input type="text" class="magee-form-text magee-input" name="' . $pkey . '" id="' . $pkey . '" value="' . $param['std'] . '" />' . "\n";
|
502 |
-
$output .= $row_end;
|
503 |
-
|
504 |
-
// append
|
505 |
-
$this->append_output( $output );
|
506 |
-
|
507 |
-
break;
|
508 |
-
|
509 |
-
case 'textarea' :
|
510 |
-
|
511 |
-
// prepare
|
512 |
-
$output .= $row_start;;
|
513 |
-
|
514 |
-
// Turn on the output buffer
|
515 |
-
ob_start();
|
516 |
-
|
517 |
-
// Echo the editor to the buffer
|
518 |
-
wp_editor( $param['std'], $pkey, array( 'editor_class' => 'magee_tinymce', 'media_buttons' => true ) );
|
519 |
-
|
520 |
-
// Store the contents of the buffer in a variable
|
521 |
-
$editor_contents = ob_get_clean();
|
522 |
-
|
523 |
-
//$output .= $editor_contents;
|
524 |
-
$output .= '<textarea rows="10" cols="30" name="' . $pkey . '" id="' . $pkey . '" class="magee-form-textarea magee-input">' . $param['std'] . '</textarea>' . "\n";
|
525 |
-
$output .= $row_end;
|
526 |
-
|
527 |
-
// append
|
528 |
-
$this->append_output( $output );
|
529 |
-
|
530 |
-
break;
|
531 |
-
|
532 |
-
case 'select' :
|
533 |
-
|
534 |
-
// prepare
|
535 |
-
$output .= $row_start;
|
536 |
-
$output .= '<div class="magee-form-select-field">';
|
537 |
-
$output .= '<select name="' . $pkey . '" id="' . $pkey . '" class="magee-form-select magee-input">' . "\n";
|
538 |
-
|
539 |
-
|
540 |
-
foreach( $param['options'] as $value => $option )
|
541 |
-
{
|
542 |
-
$selected = (isset($param['std']) && $param['std'] == $value) ? 'selected="selected"' : '';
|
543 |
-
$output .= '<option value="' . $value . '"' . $selected . '>' . $option . '</option>' . "\n";
|
544 |
-
}
|
545 |
-
|
546 |
-
$output .= '</select>' . "\n";
|
547 |
-
$output .= '</div>';
|
548 |
-
$output .= $row_end;
|
549 |
-
|
550 |
-
// append
|
551 |
-
$this->append_output( $output );
|
552 |
-
|
553 |
-
break;
|
554 |
-
|
555 |
-
case 'more_select' :
|
556 |
-
|
557 |
-
// prepare
|
558 |
-
$output .= $row_start;
|
559 |
-
$output .= '<div class="magee-form-select-field">';
|
560 |
-
$output .= '<select name="' . $pkey . '" id="' . $pkey . '" class="magee-form-select magee-input" size="10">' . "\n";
|
561 |
-
|
562 |
-
|
563 |
-
foreach( $param['options'] as $value => $option )
|
564 |
-
{
|
565 |
-
$selected = (isset($param['std']) && $param['std'] == $value) ? 'selected="selected"' : '';
|
566 |
-
$output .= '<option value="' . $value . '"' . $selected . '>' . $option . '</option>' . "\n";
|
567 |
-
}
|
568 |
-
|
569 |
-
$output .= '</select>' . "\n";
|
570 |
-
$output .= '</div>';
|
571 |
-
$output .= $row_end;
|
572 |
-
|
573 |
-
// append
|
574 |
-
$this->append_output( $output );
|
575 |
-
|
576 |
-
break;
|
577 |
-
|
578 |
-
case 'multiple_select' :
|
579 |
-
|
580 |
-
// prepare
|
581 |
-
$output .= $row_start;;
|
582 |
-
$output .= '<select name="' . $pkey . '" id="' . $pkey . '" multiple="multiple" class="magee-form-multiple-select magee-input">' . "\n";
|
583 |
-
|
584 |
-
if( $param['options'] && is_array($param['options']) ) {
|
585 |
-
foreach( $param['options'] as $value => $option )
|
586 |
-
{
|
587 |
-
$output .= '<option value="' . $value . '">' . $option . '</option>' . "\n";
|
588 |
-
}
|
589 |
-
}
|
590 |
-
|
591 |
-
$output .= '</select>' . "\n";
|
592 |
-
$output .= $row_end;
|
593 |
-
|
594 |
-
// append
|
595 |
-
$this->append_output( $output );
|
596 |
-
|
597 |
-
break;
|
598 |
-
|
599 |
-
case 'checkbox' :
|
600 |
-
|
601 |
-
// prepare
|
602 |
-
$output .= $row_start;;
|
603 |
-
$output .= '<label for="' . $pkey . '" class="magee-form-checkbox">' . "\n";
|
604 |
-
$output .= '<input type="checkbox" class="magee-input" name="' . $pkey . '" id="' . $pkey . '" ' . ( $param['std'] ? 'checked' : '' ) . ' />' . "\n";
|
605 |
-
$output .= ' ' . $param['checkbox_text'] . '</label>' . "\n";
|
606 |
-
$output .= $row_end;
|
607 |
-
|
608 |
-
// append
|
609 |
-
$this->append_output( $output );
|
610 |
-
|
611 |
-
break;
|
612 |
-
|
613 |
-
case 'uploader' :
|
614 |
-
|
615 |
-
// prepare
|
616 |
-
$output .= $row_start;;
|
617 |
-
$output .= '<div class="magee-upload-container">';
|
618 |
-
$output .= '<img src="" alt="Image" class="uploaded-image" />';
|
619 |
-
$output .= '<input type="text" class="magee-form-text magee-form-upload magee-input" name="' . $pkey . '" id="' . $pkey . '" value="' . $param['std'] . '" />' . "\n";
|
620 |
-
$output .= '<a href="' . $pkey . '" class="button magee-upload-button" data-upid="' . $pkey . '">'.__('Upload','magee-shortcodes').'</a>';
|
621 |
-
$output .= '</div>';
|
622 |
-
$output .= $row_end;
|
623 |
-
|
624 |
-
// append
|
625 |
-
$this->append_output( $output );
|
626 |
-
|
627 |
-
break;
|
628 |
-
|
629 |
-
case 'gallery' :
|
630 |
-
|
631 |
-
if(!isset($cpkey)) {
|
632 |
-
$cpkey = '';
|
633 |
-
}
|
634 |
-
|
635 |
-
// prepare
|
636 |
-
$output .= $row_start;;
|
637 |
-
$output .= '<a href="' . $cpkey . '" class="magee-gallery-button magee-shortcodes-button">'.__('Attach Images to Gallery','magee-shortcodes').'</a>';
|
638 |
-
$output .= $row_end;
|
639 |
-
|
640 |
-
// append
|
641 |
-
$this->append_output( $output );
|
642 |
-
|
643 |
-
break;
|
644 |
-
|
645 |
-
case 'iconpicker' :
|
646 |
-
|
647 |
-
// prepare
|
648 |
-
$output .= $row_start;
|
649 |
-
$output .= '<div class="icon-val"><input type="text" class="magee-form-text magee-input" style="display:block" name="' . $pkey . '" id="' . $pkey . '" value="' . $param['std'] . '" />';
|
650 |
-
$output .= '<button type="button" id="custom_icon" class="button custom_icon">Icon Picker</button>'. "\n";
|
651 |
-
$output .= '<button type="button" id="insert-media-button" class="button magee-upload-button" data-editor="content" data-upid="' . $pkey . '"><span class="wp-media-buttons-icon">'.__('Upload','magee-shortcodes').'</span></button>' . "\n";
|
652 |
-
$output .= "</div>\n";
|
653 |
-
|
654 |
-
$output .= '<div class="iconpicker">';
|
655 |
-
|
656 |
-
|
657 |
-
foreach( $param['options'] as $value => $option ) {
|
658 |
-
|
659 |
-
$output .= '<i class="fa ' . $value . '" data-name="' . $value . '"></i>';
|
660 |
-
|
661 |
-
}
|
662 |
-
$output .= '</div>';
|
663 |
-
|
664 |
-
if(!isset($param['std'])) {
|
665 |
-
$param['std'] = '';
|
666 |
-
}
|
667 |
-
|
668 |
-
|
669 |
-
$output .= $row_end;
|
670 |
-
|
671 |
-
// append
|
672 |
-
$this->append_output( $output );
|
673 |
-
|
674 |
-
break;
|
675 |
-
|
676 |
-
case 'icon' :
|
677 |
-
|
678 |
-
// prepare
|
679 |
-
$output .= $row_start;
|
680 |
-
$output .= '<div class="icon-val"><input type="text" class="magee-form-text magee-input" style="display:block" name="' . $pkey . '" id="' . $pkey . '" value="' . $param['std'] . '" />';
|
681 |
-
$output .= '<button type="button" id="custom_icon" class="button custom_icon">Icon Picker</button>'. "\n";
|
682 |
-
$output .= "</div>\n";
|
683 |
-
|
684 |
-
$output .= '<div class="iconpicker">';
|
685 |
-
|
686 |
-
|
687 |
-
foreach( $param['options'] as $value => $option ) {
|
688 |
-
|
689 |
-
$output .= '<i class="fa ' . $value . '" data-name="' . $value . '"></i>';
|
690 |
-
|
691 |
-
}
|
692 |
-
$output .= '</div>';
|
693 |
-
|
694 |
-
if(!isset($param['std'])) {
|
695 |
-
$param['std'] = '';
|
696 |
-
}
|
697 |
-
|
698 |
-
|
699 |
-
$output .= $row_end;
|
700 |
-
|
701 |
-
// append
|
702 |
-
$this->append_output( $output );
|
703 |
-
|
704 |
-
break;
|
705 |
-
|
706 |
-
case 'colorpicker' :
|
707 |
-
|
708 |
-
if(!isset($param['std'])) {
|
709 |
-
$param['std'] = '';
|
710 |
-
}
|
711 |
-
|
712 |
-
// prepare
|
713 |
-
$output .= $row_start;;
|
714 |
-
$output .= '<input type="text" class="magee-form-text magee-input wp-color-picker-field" name="' . $pkey . '" id="' . $pkey . '" value="' . $param['std'] . '" />' . "\n";
|
715 |
-
$output .= $row_end;
|
716 |
-
|
717 |
-
// append
|
718 |
-
$this->append_output( $output );
|
719 |
-
|
720 |
-
break;
|
721 |
-
|
722 |
-
case 'info' :
|
723 |
-
|
724 |
-
// prepare
|
725 |
-
$output .= $row_start;;
|
726 |
-
$output .= '<p>' . $param['std'] . "</p>\n";
|
727 |
-
$output .= $row_end;
|
728 |
-
|
729 |
-
// append
|
730 |
-
$this->append_output( $output );
|
731 |
-
|
732 |
-
break;
|
733 |
-
|
734 |
-
case 'size' :
|
735 |
-
|
736 |
-
// prepare
|
737 |
-
$output .= $row_start;;
|
738 |
-
$output .= '<div class="magee-form-group">' . "\n";
|
739 |
-
$output .= '<label>'.__('Width','magee-shortcodes').'</label>' . "\n";
|
740 |
-
$output .= '<input type="text" class="magee-form-text magee-input" name="' . $pkey . '_width" id="' . $pkey . '_width" value="' . $param['std'] . '" />' . "\n";
|
741 |
-
$output .= '</div>' . "\n";
|
742 |
-
$output .= '<div class="magee-form-group last">' . "\n";
|
743 |
-
$output .= '<label>'.__('Height','magee-shortcodes').'</label>' . "\n";
|
744 |
-
$output .= '<input type="text" class="magee-form-text magee-input" name="' . $pkey . '_height" id="' . $pkey . '_height" value="' . $param['std'] . '" />' . "\n";
|
745 |
-
$output .= '</div>' . "\n";
|
746 |
-
$output .= $row_end;
|
747 |
-
|
748 |
-
// append
|
749 |
-
$this->append_output( $output );
|
750 |
-
|
751 |
-
break;
|
752 |
-
|
753 |
-
case 'number':
|
754 |
-
|
755 |
-
// prepare
|
756 |
-
$output .= $row_start;;
|
757 |
-
$output .= '<div class="probar"><div class="probar-control"></div></div>'. "\n";;
|
758 |
-
$output .= '<input type="number" class="magee-form-number" name="'.$pkey.'" id="'.$pkey.'" max="'.$param['max'].'" min="'.$param['min'].'" step="1" value="'.$param['std'].'"/>'. "\n";
|
759 |
-
$output .= $row_end;
|
760 |
-
// append
|
761 |
-
$this->append_output( $output );
|
762 |
-
|
763 |
-
break;
|
764 |
-
|
765 |
-
case 'choose' :
|
766 |
-
|
767 |
-
// prepare
|
768 |
-
$output .= $row_start;;
|
769 |
-
$output .= '<div class="choose-show">' . "\n";
|
770 |
-
if( $param['options'] && is_array($param['options']) ) {
|
771 |
-
foreach( $param['options'] as $value => $option )
|
772 |
-
{
|
773 |
-
$selected = (isset($param['std']) && $param['std'] == $value) ? 'style="display:block"' : '';
|
774 |
-
$output .= '<span class="choose-show-param" name="'.$value.'" '.$selected.'>' .$option. '</span>' . "\n";
|
775 |
-
}
|
776 |
-
}
|
777 |
-
$output .= '</div>' . "\n";
|
778 |
-
$output .= '<input type="hidden" class="magee-form-choose" value="" name="'.$pkey.'" id="'.$pkey.'"/>'. "\n";
|
779 |
-
|
780 |
-
$output .= $row_end;
|
781 |
-
// append
|
782 |
-
$this->append_output( $output );
|
783 |
-
|
784 |
-
break;
|
785 |
-
|
786 |
-
case 'datepicker' :
|
787 |
-
|
788 |
-
// prepare
|
789 |
-
$output .= $row_start;;
|
790 |
-
$output .= '<input type="text" id="datetime24" class="magee-form-datetime" data-format="DD-MM-YYYY HH:mm" data-template="YYYY / MM / DD HH : mm" name="datetime" value="'.$param['std'] .'">';
|
791 |
-
$output .= '<input type="text" class="magee-form-date" value="" name="'.$pkey.'" id="'.$pkey.'"/>'. "\n";
|
792 |
-
$output .= $row_end;
|
793 |
-
// append
|
794 |
-
$this->append_output( $output );
|
795 |
-
|
796 |
-
break;
|
797 |
-
|
798 |
-
case 'link' :
|
799 |
-
// prepare
|
800 |
-
$output .= $row_start;;
|
801 |
-
$output .= '<div class="icon-val"><input type="text" class="magee-form-text magee-input" name="' . $pkey . '" id="' . $pkey . '" value="' . $param['std'] . '" />';
|
802 |
-
$output .= '<button type="button" id="insert-media-button" class="button magee-upload-button" data-editor="content" data-upid="' . $pkey . '"><span class="wp-media-buttons-icon">'.__('Upload','magee-shortcodes').'</span></button>' . "\n";
|
803 |
-
$output .= '</div>' . "\n";
|
804 |
-
$output .= $row_end;
|
805 |
-
// append
|
806 |
-
$this->append_output( $output );
|
807 |
-
|
808 |
-
break;
|
809 |
-
}
|
810 |
-
}
|
811 |
-
endif;
|
812 |
-
|
813 |
-
|
814 |
-
}
|
815 |
-
|
816 |
-
return $output;
|
817 |
-
|
818 |
-
}
|
819 |
-
//children format shortcode
|
820 |
-
function formate_children_shortcode()
|
821 |
-
{
|
822 |
-
$magee_shortcodes = $this->magee_shortcodes;
|
823 |
-
|
824 |
-
// get config file
|
825 |
-
require_once( $this->conf );
|
826 |
-
$output = '';
|
827 |
-
unset($magee_shortcodes['shortcode-generator']['params']['select_shortcode']);
|
828 |
-
|
829 |
-
if( isset( $magee_shortcodes ) && is_array( $magee_shortcodes ) )
|
830 |
-
{
|
831 |
-
// checks if has a child shortcode
|
832 |
-
if( isset( $magee_shortcodes[$this->popup]['child_shortcode']) ){
|
833 |
-
|
834 |
-
|
835 |
-
// set child shortcode
|
836 |
-
$this->cparams = $magee_shortcodes[$this->popup]['child_shortcode']['params'];
|
837 |
-
$this->cshortcode = $magee_shortcodes[$this->popup]['child_shortcode']['shortcode'];
|
838 |
-
|
839 |
-
// for js use
|
840 |
-
$output_child = "\n" . '<div id="_magee_cshortcode" class="hidden">' . $this->cshortcode . '</div>' ;
|
841 |
-
|
842 |
-
|
843 |
-
$output .= $output_child;
|
844 |
-
$this->append_output($output);
|
845 |
-
//$this->append_output( "\n" . '<div id="_magee_popup" class="hidden">' . $this->popup . '</div>' );
|
846 |
-
|
847 |
-
// add $prow_start to output
|
848 |
-
//$this->append_output( $prow_start );
|
849 |
-
|
850 |
-
foreach( $this->cparams as $cpkey => $cparam )
|
851 |
-
{
|
852 |
-
|
853 |
-
// prefix the fields names and ids with magee_
|
854 |
-
$cpkey = 'magee_' . $cpkey;
|
855 |
-
|
856 |
-
if(!isset($cparam['std'])) {
|
857 |
-
$cparam['std'] = '';
|
858 |
-
}
|
859 |
-
|
860 |
-
|
861 |
-
if(!isset($cparam['desc'])) {
|
862 |
-
$cparam['desc'] = '';
|
863 |
-
}
|
864 |
-
|
865 |
-
// popup form row start
|
866 |
-
$row_start = '<div class="param-item">' . "\n";
|
867 |
-
$row_start .= '<div class="form-row row" class="' . $cpkey . '">' . "\n";
|
868 |
-
if($cparam['type'] != 'info') {
|
869 |
-
$row_start .= '<div class="label">';
|
870 |
-
$row_start .= '<span class="magee-form-label-title">' . $cparam['label'] . '</span>' . "\n";
|
871 |
-
$row_start .= '<span class="magee-form-desc">' . $cparam['desc'] . '</span>' . "\n";
|
872 |
-
$row_start .= '</div>' . "\n";
|
873 |
-
}
|
874 |
-
$row_start .= '<div class="field">' . "\n";
|
875 |
-
|
876 |
-
// popup form row end
|
877 |
-
$row_end = '</div>' . "\n";
|
878 |
-
$row_end .= '</div>' . "\n";
|
879 |
-
$row_end .= '</div>' . "\n";
|
880 |
-
|
881 |
-
switch( $cparam['type'] )
|
882 |
-
{
|
883 |
-
case 'text' :
|
884 |
-
|
885 |
-
// prepare
|
886 |
-
$output_child = $row_start;
|
887 |
-
$output_child .= '<input type="text" class="magee-form-text magee-cinput" name="' . $cpkey . '" id="' . $cpkey . '" value="' . $cparam['std'] . '" />' . "\n";
|
888 |
-
$output_child .= $row_end;
|
889 |
-
|
890 |
-
// append
|
891 |
-
$output .= $output_child;
|
892 |
-
$this->append_output($output);
|
893 |
-
|
894 |
-
break;
|
895 |
-
|
896 |
-
case 'textarea' :
|
897 |
-
|
898 |
-
// prepare
|
899 |
-
$output_child = $row_start;
|
900 |
-
$output_child .= '<textarea rows="10" cols="30" name="' . $cpkey . '" id="' . $cpkey . '" class="magee-form-textarea magee-cinput">' . $cparam['std'] . '</textarea>' . "\n";
|
901 |
-
$output_child .= $row_end;
|
902 |
-
|
903 |
-
// append
|
904 |
-
$output .= $output_child;
|
905 |
-
$this->append_output($output);
|
906 |
-
|
907 |
-
break;
|
908 |
-
|
909 |
-
case 'select' :
|
910 |
-
|
911 |
-
// prepare
|
912 |
-
$output_child = $row_start;
|
913 |
-
$output_child .= '<div class="magee-form-select-field">';
|
914 |
-
$output_child .= '<select name="' . $cpkey . '" id="' . $cpkey . '" class="magee-form-select magee-input">' . "\n";
|
915 |
-
|
916 |
-
|
917 |
-
foreach( $cparam['options'] as $value => $option )
|
918 |
-
{
|
919 |
-
$selected = (isset($cparam['std']) && $cparam['std'] == $value) ? 'selected="selected"' : '';
|
920 |
-
$output_child .= '<option value="' . $value . '"' . $selected . '>' . $option . '</option>' . "\n";
|
921 |
-
}
|
922 |
-
|
923 |
-
$output_child .= '</select>' . "\n";
|
924 |
-
$output_child .= '</div>';
|
925 |
-
$output_child .= $row_end;
|
926 |
-
|
927 |
-
// append
|
928 |
-
$output .= $output_child;
|
929 |
-
$this->append_output($output);
|
930 |
-
|
931 |
-
break;
|
932 |
-
|
933 |
-
case 'number':
|
934 |
-
|
935 |
-
// prepare
|
936 |
-
$output .= $row_start;;
|
937 |
-
$output .= '<div class="probar"><div class="probar-control"></div></div>'. "\n";;
|
938 |
-
$output .= '<input type="number" class="magee-form-number" name="'.$cpkey.'" id="'.$cpkey.'" max="'.$cparam['max'].'" min="'.$cparam['min'].'" step="1" value="'.$cparam['std'].'"/>'. "\n";
|
939 |
-
$output .= $row_end;
|
940 |
-
// append
|
941 |
-
$this->append_output( $output );
|
942 |
-
|
943 |
-
break;
|
944 |
-
|
945 |
-
case 'checkbox' :
|
946 |
-
|
947 |
-
// prepare
|
948 |
-
$output_child = $row_start;
|
949 |
-
$output_child .= '<label for="' . $cpkey . '" class="magee-form-checkbox">' . "\n";
|
950 |
-
$output_child .= '<input type="checkbox" class="magee-cinput" name="' . $cpkey . '" id="' . $cpkey . '" ' . ( $cparam['std'] ? 'checked' : '' ) . ' />' . "\n";
|
951 |
-
$output_child .= ' ' . $cparam['checkbox_text'] . '</label>' . "\n";
|
952 |
-
$output_child .= $row_end;
|
953 |
-
|
954 |
-
// append
|
955 |
-
$output .= $output_child;
|
956 |
-
$this->append_output($output);
|
957 |
-
|
958 |
-
break;
|
959 |
-
|
960 |
-
case 'uploader' :
|
961 |
-
|
962 |
-
if(!isset($cparam['std'])) {
|
963 |
-
$cparam['std'] = '';
|
964 |
-
}
|
965 |
-
|
966 |
-
// prepare
|
967 |
-
$output_child = $row_start;
|
968 |
-
$output_child .= '<div class="magee-upload-container">';
|
969 |
-
$output_child .= '<img src="" alt="Image" class="uploaded-image" />';
|
970 |
-
$output_child .= '<input type="hidden" class="magee-form-text magee-form-upload magee-cinput" name="' . $cpkey . '" id="' . $cpkey . '" value="' . $cparam['std'] . '" />' . "\n";
|
971 |
-
$output_child .= '<a href="' . $cpkey . '" class="magee-upload-button" data-upid="1">Upload</a>';
|
972 |
-
$output_child .= '</div>';
|
973 |
-
$output_child .= $row_end;
|
974 |
-
|
975 |
-
// append
|
976 |
-
$output .= $output_child;
|
977 |
-
$this->append_output($output);
|
978 |
-
|
979 |
-
break;
|
980 |
-
|
981 |
-
case 'colorpicker' :
|
982 |
-
|
983 |
-
// prepare
|
984 |
-
$output_child = $row_start;
|
985 |
-
$output_child .= '<input type="text" class="magee-form-text magee-cinput wp-color-picker-field" name="' . $cpkey . '" id="' . $cpkey . '" value="' . $cparam['std'] . '" />' . "\n";
|
986 |
-
$output_child .= $row_end;
|
987 |
-
|
988 |
-
// append
|
989 |
-
$output .= $output_child;
|
990 |
-
$this->append_output($output);
|
991 |
-
|
992 |
-
break;
|
993 |
-
|
994 |
-
case 'choose' :
|
995 |
-
|
996 |
-
// prepare
|
997 |
-
$output_child = $row_start;;
|
998 |
-
$output_child .= '<div class="choose-show">' . "\n";
|
999 |
-
if( $cparam['options'] && is_array($cparam['options']) ) {
|
1000 |
-
foreach( $cparam['options'] as $value => $option )
|
1001 |
-
{
|
1002 |
-
$selected = (isset($cparam['std']) && $cparam['std'] == $value) ? 'style="display:block"' : '';
|
1003 |
-
$output_child .= '<span class="choose-show-param" name="'.$value.'" '.$selected.'>' .$option. '</span>' . "\n";
|
1004 |
-
}
|
1005 |
-
}
|
1006 |
-
$output_child .= '</div>' . "\n";
|
1007 |
-
$output_child .= '<input type="hidden" class="magee-form-choose" value="" name="'.$cpkey.'" id="'.$cpkey.'"/>'. "\n";
|
1008 |
-
|
1009 |
-
$output_child .= $row_end;
|
1010 |
-
// append
|
1011 |
-
$output .= $output_child;
|
1012 |
-
$this->append_output( $output );
|
1013 |
-
|
1014 |
-
break;
|
1015 |
-
|
1016 |
-
case 'iconpicker' :
|
1017 |
-
|
1018 |
-
// prepare
|
1019 |
-
$output_child = $row_start;
|
1020 |
-
$output_child .= '<div class="icon-val"><input type="text" class="magee-form-text magee-input" style="display:block" name="' . $cpkey . '" id="' . $cpkey . '" value="' . $cparam['std'] . '" />';
|
1021 |
-
$output_child .= '<button type="button" id="custom_icon" class="button custom_icon">Icon Picker</button>'. "\n";
|
1022 |
-
$output_child .= '<button type="button" id="insert-media-button" class="button magee-upload-button" data-editor="content" data-upid="' . $cpkey . '"><span class="wp-media-buttons-icon">'.__('Upload','magee-shortcodes').'</span></button>' . "\n";
|
1023 |
-
$output_child .= "</div>\n";
|
1024 |
-
|
1025 |
-
$output_child .= '<div class="iconpicker">';
|
1026 |
-
|
1027 |
-
|
1028 |
-
foreach( $cparam['options'] as $value => $option ) {
|
1029 |
-
|
1030 |
-
$output_child .= '<i class="fa ' . $value . '" data-name="' . $value . '"></i>';
|
1031 |
-
|
1032 |
-
}
|
1033 |
-
$output_child .= '</div>';
|
1034 |
-
|
1035 |
-
if(!isset($cparam['std'])) {
|
1036 |
-
$cparam['std'] = '';
|
1037 |
-
}
|
1038 |
-
|
1039 |
-
|
1040 |
-
$output_child .= $row_end;
|
1041 |
-
|
1042 |
-
// append
|
1043 |
-
$output .= $output_child;
|
1044 |
-
$this->append_output( $output );
|
1045 |
-
|
1046 |
-
break;
|
1047 |
-
|
1048 |
-
case 'size' :
|
1049 |
-
|
1050 |
-
// prepare
|
1051 |
-
$output_child = $crow_start;
|
1052 |
-
$output_child .= '<div class="magee-form-group">' . "\n";
|
1053 |
-
$output_child .= '<label>Width</label>' . "\n";
|
1054 |
-
$output_child .= '<input type="text" class="magee-form-text magee-cinput" name="' . $cpkey . '_width" id="' . $cpkey . '_width" value="' . $cparam['std'] . '" />' . "\n";
|
1055 |
-
$output_child .= '</div>' . "\n";
|
1056 |
-
$output_child .= '<div class="magee-form-group last">' . "\n";
|
1057 |
-
$output_child .= '<label>Height</label>' . "\n";
|
1058 |
-
$output_child .= '<input type="text" class="magee-form-text magee-cinput" name="' . $cpkey . '_height" id="' . $cpkey . '_height" value="' . $cparam['std'] . '" />' . "\n";
|
1059 |
-
$output_child .= '</div>' . "\n";
|
1060 |
-
$output_child .= $crow_end;
|
1061 |
-
|
1062 |
-
// append
|
1063 |
-
$output .= $output_child;
|
1064 |
-
$this->append_output($output);
|
1065 |
-
|
1066 |
-
break;
|
1067 |
-
}
|
1068 |
-
}
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
}
|
1073 |
-
}
|
1074 |
-
|
1075 |
-
return $output;
|
1076 |
-
|
1077 |
-
}
|
1078 |
-
|
1079 |
-
function append_output( $output )
|
1080 |
-
{
|
1081 |
-
$this->output = $this->output . "\n" . $output;
|
1082 |
-
}
|
1083 |
-
|
1084 |
-
// --------------------------------------------------------------------------
|
1085 |
-
|
1086 |
-
function reset_output( $output )
|
1087 |
-
{
|
1088 |
-
$this->output = '';
|
1089 |
-
}
|
1090 |
-
|
1091 |
-
// --------------------------------------------------------------------------
|
1092 |
-
|
1093 |
-
function append_error( $error )
|
1094 |
-
{
|
1095 |
-
$this->errors = $this->errors . "\n" . $error;
|
1096 |
-
}
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
public static function sliders_meta(){
|
1101 |
-
|
1102 |
-
$magee_sliders[''] = __( 'Select a slider', 'magee-shortcodes' );
|
1103 |
-
$args = array( 'post_type' => 'magee_slider', 'post_status'=>'publish', 'posts_per_page' => -1 );
|
1104 |
-
$sliders = get_posts( $args );
|
1105 |
-
foreach( $sliders as $post ) :
|
1106 |
-
$magee_sliders[$post->ID] = $post->post_title;
|
1107 |
-
endforeach;
|
1108 |
-
|
1109 |
-
wp_reset_postdata();
|
1110 |
-
return $magee_sliders;
|
1111 |
-
}
|
1112 |
-
|
1113 |
-
/*
|
1114 |
-
* live preview
|
1115 |
-
* ---------------------------------------------------------------------
|
1116 |
-
*/
|
1117 |
-
function say($all){
|
1118 |
-
|
1119 |
-
// echo do_shortcode(str_replace( '\"', '"', $_POST['preview'] ) );
|
1120 |
-
$magee_shortcodes = $this->magee_shortcodes ;
|
1121 |
-
$shortcode = '';
|
1122 |
-
|
1123 |
-
if( isset( $magee_shortcodes ) && is_array( $magee_shortcodes ) && isset($_POST['name']) )
|
1124 |
-
{
|
1125 |
-
|
1126 |
-
$popup = $_POST['name'];
|
1127 |
-
|
1128 |
-
$params = $magee_shortcodes[$popup]['params'];
|
1129 |
-
|
1130 |
-
$shortcode = $magee_shortcodes[$popup]['shortcode'];
|
1131 |
-
|
1132 |
-
|
1133 |
-
$attrs = array();
|
1134 |
-
if( isset( $_POST['preview'] ) ):
|
1135 |
-
foreach( $_POST['preview'] as $attr){
|
1136 |
-
$attrs[str_replace('magee_','',$attr['name'])] = $attr['value'];
|
1137 |
-
}
|
1138 |
-
|
1139 |
-
foreach( $params as $pkey => $param )
|
1140 |
-
{
|
1141 |
-
|
1142 |
-
if( isset($attrs[$pkey] )){
|
1143 |
-
|
1144 |
-
$shortcode = str_replace('{{'.$pkey.'}}',$attrs[$pkey],$shortcode);
|
1145 |
-
|
1146 |
-
}else{
|
1147 |
-
$shortcode = str_replace('{{'.$pkey.'}}','',$shortcode);
|
1148 |
-
}
|
1149 |
-
}
|
1150 |
-
endif;
|
1151 |
-
|
1152 |
-
if( isset($magee_shortcodes[$popup]['child_shortcode'])):
|
1153 |
-
|
1154 |
-
$common = array_slice($_POST['preview'],count($_POST['attr'])-2,2) ;
|
1155 |
-
array_splice($_POST['preview'],count($_POST['preview'])-2,2);
|
1156 |
-
$number = count($magee_shortcodes[$popup]['child_shortcode']['params']);
|
1157 |
-
$expcet = count($magee_shortcodes[$popup]['params']);
|
1158 |
-
array_splice($_POST['preview'],0,$expcet);
|
1159 |
-
$loop = array_chunk($_POST['preview'],$number);
|
1160 |
-
$i = '';
|
1161 |
-
$copyshortcode = '';
|
1162 |
-
for( $i=0;$i<count($loop);$i++){
|
1163 |
-
|
1164 |
-
$cparams = $magee_shortcodes[$popup]['child_shortcode']['params'];
|
1165 |
-
|
1166 |
-
$cshortcode = $magee_shortcodes[$popup]['child_shortcode']['shortcode'];
|
1167 |
-
$attrs = array();
|
1168 |
-
$perattr = array_merge($loop[$i],$common);
|
1169 |
-
|
1170 |
-
foreach( $perattr as $attr){
|
1171 |
-
|
1172 |
-
$attrs[str_replace('magee_','',$attr['name'])] = $attr['value'];
|
1173 |
-
}
|
1174 |
-
foreach( $cparams as $cpkey => $cparam )
|
1175 |
-
{
|
1176 |
-
|
1177 |
-
if( isset($attrs[$cpkey] )){
|
1178 |
-
|
1179 |
-
$cshortcode = str_replace('{{'.$cpkey.'}}',$attrs[$cpkey],$cshortcode);
|
1180 |
-
|
1181 |
-
}else{
|
1182 |
-
$cshortcode = str_replace('{{'.$cpkey.'}}','',$cshortcode);
|
1183 |
-
}
|
1184 |
-
}
|
1185 |
-
$copyshortcode .= $cshortcode;
|
1186 |
-
|
1187 |
-
}
|
1188 |
-
$shortcode = str_replace('{{child_shortcode}}',$copyshortcode,$shortcode);
|
1189 |
-
endif;
|
1190 |
-
|
1191 |
-
|
1192 |
-
}
|
1193 |
-
$shortcode = str_replace('\\\'','\'',$shortcode);
|
1194 |
-
$shortcode = str_replace('\\"','"',$shortcode);
|
1195 |
-
$shortcode = str_replace('\\\\','\\',$shortcode);
|
1196 |
-
$shortcode = str_replace('\"','"',$shortcode);
|
1197 |
-
echo do_shortcode($shortcode);
|
1198 |
-
die();
|
1199 |
-
}
|
1200 |
-
function js(){
|
1201 |
-
$script = "<link rel='stylesheet' id='font-awesome-css' href=".plugins_url( 'assets/font-awesome/css/font-awesome.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='all' />";
|
1202 |
-
$script .= "<link rel='stylesheet' id='bootstrap-css' href=".plugins_url( 'assets/bootstrap/css/bootstrap.min.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='all' />";
|
1203 |
-
$script .= "<link rel='stylesheet' id='prettyPhoto-css' href=".plugins_url( 'assets/css/prettyPhoto.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='all' />";
|
1204 |
-
$script .= "<link rel='stylesheet' id='twentytwenty-css' href=".plugins_url( 'assets/css/twentytwenty.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='all' />";
|
1205 |
-
$script .= "<link rel='stylesheet' id='animate-css' href=".plugins_url( 'assets/css/animate.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='all' />";
|
1206 |
-
$script .= "<link rel='stylesheet' id='magee-shortcode-css' href=".plugins_url( 'assets/css/shortcode.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='all' />";
|
1207 |
-
$script .= "<link rel='stylesheet' id='audioplayer-css' href=".plugins_url( 'assets/css/audioplayer.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='all' />";
|
1208 |
-
$script .= "<link rel='stylesheet' id='weather-icons' href=".plugins_url( 'assets/weathericons/css/weather-icons.min.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='all' />";
|
1209 |
-
$script .= "<link rel='stylesheet' id='classycountdown' href=".plugins_url( 'assets/jquery-countdown/jquery.classycountdown.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='all' />";
|
1210 |
-
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/jquery.twentytwenty.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1211 |
-
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/audioplayer.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1212 |
-
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/bootstrap/js/bootstrap.min.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1213 |
-
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/jquery.waypoints.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1214 |
-
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/jquery-countdown/jquery.countdown.min.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1215 |
-
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/jquery-easy-pie-chart/jquery.easypiechart.min.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1216 |
-
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/jquery.prettyPhoto.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1217 |
-
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/jquery.event.move.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1218 |
-
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/magee-shortcodes.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1219 |
-
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/chart.min.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1220 |
-
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/moment.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1221 |
-
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/jquery-countdown/jquery.knob.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1222 |
-
$script .= "<script type='text/javascript' src=".plugins_url('assets/jquery-countdown/jquery.throttle.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1223 |
-
$script .= "<script type='text/javascript' src=".plugins_url('assets/jquery-countdown/jquery.classycountdown.min.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1224 |
-
$script .= "<script type='text/javascript' src=".plugins_url('assets/js/magee-modal.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1225 |
-
$script .= "<script type='text/javascript' src='https://f.vimeocdn.com/js/froogaloop2.min.js'></script>";
|
1226 |
-
echo $script;
|
1227 |
-
die();
|
1228 |
-
}
|
1229 |
-
|
1230 |
-
|
1231 |
-
/**
|
1232 |
-
* Prints HTML with meta information for the current post-date/time and author.
|
1233 |
-
*/
|
1234 |
-
function posted_on( $echo = false ) {
|
1235 |
-
$return = '';
|
1236 |
-
|
1237 |
-
$display_meta_author = 'yes';
|
1238 |
-
$display_meta_date = 'yes';
|
1239 |
-
$display_meta_categories = 'yes';
|
1240 |
-
$display_meta_comments = 'yes';
|
1241 |
-
$display_meta_readmore = 'yes';
|
1242 |
-
$display_meta_tags = 'yes';
|
1243 |
-
$display_post_meta = 'yes';
|
1244 |
-
|
1245 |
-
if( function_exists('alchem_option'))
|
1246 |
-
$display_post_meta = alchem_option('display_post_meta');
|
1247 |
-
if( function_exists('onetone_option'))
|
1248 |
-
$display_post_meta = onetone_option('display_post_meta');
|
1249 |
-
|
1250 |
-
if( $display_post_meta == 'yes' ){
|
1251 |
-
|
1252 |
-
if( function_exists('alchem_option')){
|
1253 |
-
$display_meta_author = alchem_option('display_meta_author');
|
1254 |
-
$display_meta_date = alchem_option('display_meta_date');
|
1255 |
-
$display_meta_categories = alchem_option('display_meta_categories');
|
1256 |
-
$display_meta_comments = alchem_option('display_meta_comments');
|
1257 |
-
$display_meta_readmore = alchem_option('display_meta_readmore');
|
1258 |
-
$display_meta_tags = alchem_option('display_meta_tags');
|
1259 |
-
$date_format = alchem_option('date_format');
|
1260 |
-
}
|
1261 |
-
if( function_exists('onetone_option')){
|
1262 |
-
$display_meta_author = onetone_option('display_meta_author','yes');
|
1263 |
-
$display_meta_date = onetone_option('display_meta_date','yes');
|
1264 |
-
$display_meta_categories = onetone_option('display_meta_categories','yes');
|
1265 |
-
$display_meta_comments = onetone_option('display_meta_comments','yes');
|
1266 |
-
$display_meta_readmore = onetone_option('display_meta_readmore','yes');
|
1267 |
-
$display_meta_tags = onetone_option('display_meta_tags','yes');
|
1268 |
-
$date_format = onetone_option('date_format','');
|
1269 |
-
}
|
1270 |
-
|
1271 |
-
$return .= '<ul class="entry-meta">';
|
1272 |
-
if( $display_meta_date == 'yes' )
|
1273 |
-
$return .= '<li class="entry-date"><i class="fa fa-calendar"></i>'. get_the_date( $date_format ).'</li>';
|
1274 |
-
if( $display_meta_author == 'yes' )
|
1275 |
-
$return .= '<li class="entry-author"><i class="fa fa-user"></i>'.get_the_author_link().'</li>';
|
1276 |
-
if( $display_meta_categories == 'yes' )
|
1277 |
-
$return .= '<li class="entry-catagory"><i class="fa fa-file-o"></i>'.get_the_category_list(', ').'</li>';
|
1278 |
-
if( $display_meta_comments == 'yes' )
|
1279 |
-
$return .= '<li class="entry-comments pull-right">'.alchem_get_comments_popup_link('', __( '<i class="fa fa-comment"></i> 1 ', 'alchem'), __( '<i class="fa fa-comment"></i> % ', 'alchem'), 'read-comments', '').'</li>';
|
1280 |
-
$return .= '</ul>';
|
1281 |
-
}
|
1282 |
-
|
1283 |
-
if( $echo == true )
|
1284 |
-
echo $return;
|
1285 |
-
else
|
1286 |
-
return $return;
|
1287 |
-
|
1288 |
-
}
|
1289 |
-
/**
|
1290 |
-
* Returns a select list of Google fonts
|
1291 |
-
* Feel free to edit this, update the fallbacks, etc.
|
1292 |
-
*/
|
1293 |
-
|
1294 |
-
function magee_countdowns_get_google_fonts() {
|
1295 |
-
// Google Font Defaults
|
1296 |
-
|
1297 |
-
global $google_fonts_json;
|
1298 |
-
|
1299 |
-
$googleFontArray = array();
|
1300 |
-
|
1301 |
-
$fontArray = json_decode($google_fonts_json, true);
|
1302 |
-
|
1303 |
-
foreach($fontArray['items'] as $index => $value){
|
1304 |
-
|
1305 |
-
$_family = strtolower( str_replace(' ','_',$value['family']) );
|
1306 |
-
$googleFontArray[$_family]['family'] = $value['family'];
|
1307 |
-
$googleFontArray[$_family]['variants'] = $value['variants'];
|
1308 |
-
$googleFontArray[$_family]['subsets'] = $value['subsets'];
|
1309 |
-
|
1310 |
-
$category = '';
|
1311 |
-
if( isset($value['category']) ) $category = ', '.$value['category'];
|
1312 |
-
$googleFontArray['magee_of_family'][$value['family'].$category] = $value['family'];
|
1313 |
-
|
1314 |
-
}
|
1315 |
-
return $googleFontArray;
|
1316 |
-
}
|
1317 |
-
|
1318 |
-
}
|
1319 |
-
|
1320 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/google-fonts.php
DELETED
@@ -1,12034 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Google Font Loading
|
5 |
-
*
|
6 |
-
* Returns an array of saved Google Fonts.
|
7 |
-
* Updates Google Font database in interval given
|
8 |
-
*
|
9 |
-
* @param string $key Google Font API key
|
10 |
-
* @param int $key Google Font cache refresh interval in ms
|
11 |
-
*
|
12 |
-
* @return array
|
13 |
-
*
|
14 |
-
*/
|
15 |
-
global $google_fonts_json;
|
16 |
-
$google_fonts_json = '{
|
17 |
-
"kind": "webfonts#webfontList",
|
18 |
-
"items": [
|
19 |
-
{
|
20 |
-
"kind": "webfonts#webfont",
|
21 |
-
"family": "ABeeZee",
|
22 |
-
"category": "sans-serif",
|
23 |
-
"variants": [
|
24 |
-
"regular",
|
25 |
-
"italic"
|
26 |
-
],
|
27 |
-
"subsets": [
|
28 |
-
"latin"
|
29 |
-
],
|
30 |
-
"version": "v2",
|
31 |
-
"lastModified": "2014-01-07",
|
32 |
-
"files": {
|
33 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/abeezee/v2/mE5BOuZKGln_Ex0uYKpIaw.ttf",
|
34 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/abeezee/v2/kpplLynmYgP0YtlJA3atRw.ttf"
|
35 |
-
}
|
36 |
-
},
|
37 |
-
{
|
38 |
-
"kind": "webfonts#webfont",
|
39 |
-
"family": "Abel",
|
40 |
-
"category": "sans-serif",
|
41 |
-
"variants": [
|
42 |
-
"regular"
|
43 |
-
],
|
44 |
-
"subsets": [
|
45 |
-
"latin"
|
46 |
-
],
|
47 |
-
"version": "v4",
|
48 |
-
"lastModified": "2014-01-07",
|
49 |
-
"files": {
|
50 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/abel/v4/RpUKfqNxoyNe_ka23bzQ2A.ttf"
|
51 |
-
}
|
52 |
-
},
|
53 |
-
{
|
54 |
-
"kind": "webfonts#webfont",
|
55 |
-
"family": "Abril Fatface",
|
56 |
-
"category": "display",
|
57 |
-
"variants": [
|
58 |
-
"regular"
|
59 |
-
],
|
60 |
-
"subsets": [
|
61 |
-
"latin",
|
62 |
-
"latin-ext"
|
63 |
-
],
|
64 |
-
"version": "v6",
|
65 |
-
"lastModified": "2014-01-07",
|
66 |
-
"files": {
|
67 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/abrilfatface/v6/X1g_KwGeBV3ajZIXQ9VnDojjx0o0jr6fNXxPgYh_a8Q.ttf"
|
68 |
-
}
|
69 |
-
},
|
70 |
-
{
|
71 |
-
"kind": "webfonts#webfont",
|
72 |
-
"family": "Aclonica",
|
73 |
-
"category": "sans-serif",
|
74 |
-
"variants": [
|
75 |
-
"regular"
|
76 |
-
],
|
77 |
-
"subsets": [
|
78 |
-
"latin"
|
79 |
-
],
|
80 |
-
"version": "v4",
|
81 |
-
"lastModified": "2014-01-07",
|
82 |
-
"files": {
|
83 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/aclonica/v4/M6pHZMPwK3DiBSlo3jwAKQ.ttf"
|
84 |
-
}
|
85 |
-
},
|
86 |
-
{
|
87 |
-
"kind": "webfonts#webfont",
|
88 |
-
"family": "Acme",
|
89 |
-
"category": "sans-serif",
|
90 |
-
"variants": [
|
91 |
-
"regular"
|
92 |
-
],
|
93 |
-
"subsets": [
|
94 |
-
"latin"
|
95 |
-
],
|
96 |
-
"version": "v3",
|
97 |
-
"lastModified": "2014-01-07",
|
98 |
-
"files": {
|
99 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/acme/v3/-J6XNtAHPZBEbsifCdBt-g.ttf"
|
100 |
-
}
|
101 |
-
},
|
102 |
-
{
|
103 |
-
"kind": "webfonts#webfont",
|
104 |
-
"family": "Actor",
|
105 |
-
"category": "sans-serif",
|
106 |
-
"variants": [
|
107 |
-
"regular"
|
108 |
-
],
|
109 |
-
"subsets": [
|
110 |
-
"latin"
|
111 |
-
],
|
112 |
-
"version": "v4",
|
113 |
-
"lastModified": "2014-01-07",
|
114 |
-
"files": {
|
115 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/actor/v4/ugMf40CrRK6Jf6Yz_xNSmQ.ttf"
|
116 |
-
}
|
117 |
-
},
|
118 |
-
{
|
119 |
-
"kind": "webfonts#webfont",
|
120 |
-
"family": "Adamina",
|
121 |
-
"category": "serif",
|
122 |
-
"variants": [
|
123 |
-
"regular"
|
124 |
-
],
|
125 |
-
"subsets": [
|
126 |
-
"latin"
|
127 |
-
],
|
128 |
-
"version": "v5",
|
129 |
-
"lastModified": "2014-01-07",
|
130 |
-
"files": {
|
131 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/adamina/v5/RUQfOodOMiVVYqFZcSlT9w.ttf"
|
132 |
-
}
|
133 |
-
},
|
134 |
-
{
|
135 |
-
"kind": "webfonts#webfont",
|
136 |
-
"family": "Advent Pro",
|
137 |
-
"category": "sans-serif",
|
138 |
-
"variants": [
|
139 |
-
"100",
|
140 |
-
"200",
|
141 |
-
"300",
|
142 |
-
"regular",
|
143 |
-
"500",
|
144 |
-
"600",
|
145 |
-
"700"
|
146 |
-
],
|
147 |
-
"subsets": [
|
148 |
-
"latin",
|
149 |
-
"greek",
|
150 |
-
"latin-ext"
|
151 |
-
],
|
152 |
-
"version": "v2",
|
153 |
-
"lastModified": "2014-01-07",
|
154 |
-
"files": {
|
155 |
-
"100": "http://themes.googleusercontent.com/static/fonts/adventpro/v2/87-JOpSUecTG50PBYK4ysi3USBnSvpkopQaUR-2r7iU.ttf",
|
156 |
-
"200": "http://themes.googleusercontent.com/static/fonts/adventpro/v2/URTSSjIp0Wr-GrjxFdFWnGeudeTO44zf-ht3k-KNzwg.ttf",
|
157 |
-
"300": "http://themes.googleusercontent.com/static/fonts/adventpro/v2/sJaBfJYSFgoB80OL1_66m0eOrDcLawS7-ssYqLr2Xp4.ttf",
|
158 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/adventpro/v2/1NxMBeKVcNNH2H46AUR3wfesZW2xOQ-xsNqO47m55DA.ttf",
|
159 |
-
"500": "http://themes.googleusercontent.com/static/fonts/adventpro/v2/7kBth2-rT8tP40RmMMXMLJp-63r6doWhTEbsfBIRJ7A.ttf",
|
160 |
-
"600": "http://themes.googleusercontent.com/static/fonts/adventpro/v2/3Jo-2maCzv2QLzQBzaKHV_pTEJqju4Hz1txDWij77d4.ttf",
|
161 |
-
"700": "http://themes.googleusercontent.com/static/fonts/adventpro/v2/M4I6QiICt-ey_wZTpR2gKwJKKGfqHaYFsRG-T3ceEVo.ttf"
|
162 |
-
}
|
163 |
-
},
|
164 |
-
{
|
165 |
-
"kind": "webfonts#webfont",
|
166 |
-
"family": "Aguafina Script",
|
167 |
-
"category": "handwriting",
|
168 |
-
"variants": [
|
169 |
-
"regular"
|
170 |
-
],
|
171 |
-
"subsets": [
|
172 |
-
"latin",
|
173 |
-
"latin-ext"
|
174 |
-
],
|
175 |
-
"version": "v3",
|
176 |
-
"lastModified": "2014-01-07",
|
177 |
-
"files": {
|
178 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/aguafinascript/v3/65g7cgMtMGnNlNyq_Z6CvMxLhO8OSNnfAp53LK1_iRs.ttf"
|
179 |
-
}
|
180 |
-
},
|
181 |
-
{
|
182 |
-
"kind": "webfonts#webfont",
|
183 |
-
"family": "Akronim",
|
184 |
-
"category": "display",
|
185 |
-
"variants": [
|
186 |
-
"regular"
|
187 |
-
],
|
188 |
-
"subsets": [
|
189 |
-
"latin",
|
190 |
-
"latin-ext"
|
191 |
-
],
|
192 |
-
"version": "v2",
|
193 |
-
"lastModified": "2014-01-07",
|
194 |
-
"files": {
|
195 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/akronim/v2/qA0L2CSArk3tuOWE1AR1DA.ttf"
|
196 |
-
}
|
197 |
-
},
|
198 |
-
{
|
199 |
-
"kind": "webfonts#webfont",
|
200 |
-
"family": "Aladin",
|
201 |
-
"category": "handwriting",
|
202 |
-
"variants": [
|
203 |
-
"regular"
|
204 |
-
],
|
205 |
-
"subsets": [
|
206 |
-
"latin",
|
207 |
-
"latin-ext"
|
208 |
-
],
|
209 |
-
"version": "v3",
|
210 |
-
"lastModified": "2014-01-07",
|
211 |
-
"files": {
|
212 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/aladin/v3/PyuJ5cVHkduO0j5fAMKvAA.ttf"
|
213 |
-
}
|
214 |
-
},
|
215 |
-
{
|
216 |
-
"kind": "webfonts#webfont",
|
217 |
-
"family": "Aldrich",
|
218 |
-
"category": "sans-serif",
|
219 |
-
"variants": [
|
220 |
-
"regular"
|
221 |
-
],
|
222 |
-
"subsets": [
|
223 |
-
"latin"
|
224 |
-
],
|
225 |
-
"version": "v4",
|
226 |
-
"lastModified": "2014-01-07",
|
227 |
-
"files": {
|
228 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/aldrich/v4/kMMW1S56gFx7RP_mW1g-Eg.ttf"
|
229 |
-
}
|
230 |
-
},
|
231 |
-
{
|
232 |
-
"kind": "webfonts#webfont",
|
233 |
-
"family": "Alef",
|
234 |
-
"category": "sans-serif",
|
235 |
-
"variants": [
|
236 |
-
"regular",
|
237 |
-
"700"
|
238 |
-
],
|
239 |
-
"subsets": [
|
240 |
-
"latin"
|
241 |
-
],
|
242 |
-
"version": "v2",
|
243 |
-
"lastModified": "2014-01-07",
|
244 |
-
"files": {
|
245 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/alef/v2/ENvZ_P0HBDQxNZYCQO0lUA.ttf",
|
246 |
-
"700": "http://themes.googleusercontent.com/static/fonts/alef/v2/VDgZJhEwudtOzOFQpZ8MEA.ttf"
|
247 |
-
}
|
248 |
-
},
|
249 |
-
{
|
250 |
-
"kind": "webfonts#webfont",
|
251 |
-
"family": "Alegreya",
|
252 |
-
"category": "serif",
|
253 |
-
"variants": [
|
254 |
-
"regular",
|
255 |
-
"italic",
|
256 |
-
"700",
|
257 |
-
"700italic",
|
258 |
-
"900",
|
259 |
-
"900italic"
|
260 |
-
],
|
261 |
-
"subsets": [
|
262 |
-
"latin",
|
263 |
-
"latin-ext"
|
264 |
-
],
|
265 |
-
"version": "v5",
|
266 |
-
"lastModified": "2014-01-07",
|
267 |
-
"files": {
|
268 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/alegreya/v5/62J3atXd6bvMU4qO_ca-eA.ttf",
|
269 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/alegreya/v5/cbshnQGxwmlHBjUil7DaIfesZW2xOQ-xsNqO47m55DA.ttf",
|
270 |
-
"700": "http://themes.googleusercontent.com/static/fonts/alegreya/v5/5oZtdI5-wQwgAFrd9erCsaCWcynf_cDxXwCLxiixG1c.ttf",
|
271 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/alegreya/v5/IWi8e5bpnqhMRsZKTcTUWgJKKGfqHaYFsRG-T3ceEVo.ttf",
|
272 |
-
"900": "http://themes.googleusercontent.com/static/fonts/alegreya/v5/oQeMxX-vxGImzDgX6nxA7KCWcynf_cDxXwCLxiixG1c.ttf",
|
273 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/alegreya/v5/-L71QLH_XqgYWaI1GbOVhp0EAVxt0G0biEntp43Qt6E.ttf"
|
274 |
-
}
|
275 |
-
},
|
276 |
-
{
|
277 |
-
"kind": "webfonts#webfont",
|
278 |
-
"family": "Alegreya SC",
|
279 |
-
"category": "serif",
|
280 |
-
"variants": [
|
281 |
-
"regular",
|
282 |
-
"italic",
|
283 |
-
"700",
|
284 |
-
"700italic",
|
285 |
-
"900",
|
286 |
-
"900italic"
|
287 |
-
],
|
288 |
-
"subsets": [
|
289 |
-
"latin",
|
290 |
-
"latin-ext"
|
291 |
-
],
|
292 |
-
"version": "v4",
|
293 |
-
"lastModified": "2014-01-07",
|
294 |
-
"files": {
|
295 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/alegreyasc/v4/3ozeFnTbygMK6PfHh8B-iqCWcynf_cDxXwCLxiixG1c.ttf",
|
296 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/alegreyasc/v4/GOqmv3FLsJ2r6ZALMZVBmkeOrDcLawS7-ssYqLr2Xp4.ttf",
|
297 |
-
"700": "http://themes.googleusercontent.com/static/fonts/alegreyasc/v4/M9OIREoxDkvynwTpBAYUq3e1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
298 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/alegreyasc/v4/5PCoU7IUfCicpKBJtBmP6c_zJjSACmk0BRPxQqhnNLU.ttf",
|
299 |
-
"900": "http://themes.googleusercontent.com/static/fonts/alegreyasc/v4/M9OIREoxDkvynwTpBAYUqyenaqEuufTBk9XMKnKmgDA.ttf",
|
300 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/alegreyasc/v4/5PCoU7IUfCicpKBJtBmP6U_yTOUGsoC54csJe1b-IRw.ttf"
|
301 |
-
}
|
302 |
-
},
|
303 |
-
{
|
304 |
-
"kind": "webfonts#webfont",
|
305 |
-
"family": "Alegreya Sans",
|
306 |
-
"category": "sans-serif",
|
307 |
-
"variants": [
|
308 |
-
"100",
|
309 |
-
"100italic",
|
310 |
-
"300",
|
311 |
-
"300italic",
|
312 |
-
"regular",
|
313 |
-
"italic",
|
314 |
-
"500",
|
315 |
-
"500italic",
|
316 |
-
"700",
|
317 |
-
"700italic",
|
318 |
-
"800",
|
319 |
-
"800italic",
|
320 |
-
"900",
|
321 |
-
"900italic"
|
322 |
-
],
|
323 |
-
"subsets": [
|
324 |
-
"latin",
|
325 |
-
"vietnamese",
|
326 |
-
"latin-ext"
|
327 |
-
],
|
328 |
-
"version": "v1",
|
329 |
-
"lastModified": "2013-12-05",
|
330 |
-
"files": {
|
331 |
-
"100": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/TKyx_-JJ6MdpQruNk-t-PJFGFO4uyVFMfB6LZsii7kI.ttf",
|
332 |
-
"100italic": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/gRkSP2lBpqoMTVxg7DmVn2cDnjsrnI9_xJ-5gnBaHsE.ttf",
|
333 |
-
"300": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/11EDm-lum6tskJMBbdy9acB1LjARzAvdqa1uQC32v70.ttf",
|
334 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/WfiXipsmjqRqsDBQ1bA9CnfqlVoxTUFFx1C8tBqmbcg.ttf",
|
335 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/KYNzioYhDai7mTMnx_gDgn8f0n03UdmQgF_CLvNR2vg.ttf",
|
336 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/TKyx_-JJ6MdpQruNk-t-PD4G9C9ttb0Oz5Cvf0qOitE.ttf",
|
337 |
-
"500": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/11EDm-lum6tskJMBbdy9aQqQmZ7VjhwksfpNVG0pqGc.ttf",
|
338 |
-
"500italic": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/WfiXipsmjqRqsDBQ1bA9Cs7DCVO6wo6i5LKIyZDzK40.ttf",
|
339 |
-
"700": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/11EDm-lum6tskJMBbdy9aVCbmAUID8LN-q3pJpOk3Ys.ttf",
|
340 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/WfiXipsmjqRqsDBQ1bA9CpF66r9C4AnxxlBlGd7xY4g.ttf",
|
341 |
-
"800": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/11EDm-lum6tskJMBbdy9acxnD5BewVtRRHHljCwR2bM.ttf",
|
342 |
-
"800italic": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/WfiXipsmjqRqsDBQ1bA9CicOAJ_9MkLPbDmrtXDPbIU.ttf",
|
343 |
-
"900": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/11EDm-lum6tskJMBbdy9aW42xlVP-j5dagE7-AU2zwg.ttf",
|
344 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/alegreyasans/v1/WfiXipsmjqRqsDBQ1bA9ChRaDUI9aE8-k7PrIG2iiuo.ttf"
|
345 |
-
}
|
346 |
-
},
|
347 |
-
{
|
348 |
-
"kind": "webfonts#webfont",
|
349 |
-
"family": "Alegreya Sans SC",
|
350 |
-
"category": "sans-serif",
|
351 |
-
"variants": [
|
352 |
-
"100",
|
353 |
-
"100italic",
|
354 |
-
"300",
|
355 |
-
"300italic",
|
356 |
-
"regular",
|
357 |
-
"italic",
|
358 |
-
"500",
|
359 |
-
"500italic",
|
360 |
-
"700",
|
361 |
-
"700italic",
|
362 |
-
"800",
|
363 |
-
"800italic",
|
364 |
-
"900",
|
365 |
-
"900italic"
|
366 |
-
],
|
367 |
-
"subsets": [
|
368 |
-
"latin",
|
369 |
-
"vietnamese",
|
370 |
-
"latin-ext"
|
371 |
-
],
|
372 |
-
"version": "v1",
|
373 |
-
"lastModified": "2013-12-05",
|
374 |
-
"files": {
|
375 |
-
"100": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/trwFkDJLOJf6hqM93944kVnzStfdnFU-MXbO84aBs_M.ttf",
|
376 |
-
"100italic": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/qG3gA9iy5RpXMH4crZboqqakMVR0XlJhO7VdJ8yYvA4.ttf",
|
377 |
-
"300": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/AjAmkoP1y0Vaad0UPPR46-1IqtfxJspFjzJp0SaQRcI.ttf",
|
378 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/0VweK-TO3aQgazdxg8fs0CnTKaH808trtzttbEg4yVA.ttf",
|
379 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/6kgb6ZvOagoVIRZyl8XV-EklWX-XdLVn1WTiuGuvKIU.ttf",
|
380 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/trwFkDJLOJf6hqM93944kTfqo69HNOlCNZvbwAmUtiA.ttf",
|
381 |
-
"500": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/AjAmkoP1y0Vaad0UPPR46_hHTluI57wqxl55RvSYo3s.ttf",
|
382 |
-
"500italic": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/0VweK-TO3aQgazdxg8fs0NqVvxKdFVwqwzilqfVd39U.ttf",
|
383 |
-
"700": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/AjAmkoP1y0Vaad0UPPR4600aId5t1FC-xZ8nmpa_XLk.ttf",
|
384 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/0VweK-TO3aQgazdxg8fs0IBYn3VD6xMEnodOh8pnFw4.ttf",
|
385 |
-
"800": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/AjAmkoP1y0Vaad0UPPR46wQgSHD3Lo1Mif2Wkk5swWA.ttf",
|
386 |
-
"800italic": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/0VweK-TO3aQgazdxg8fs0HStmCm6Rs90XeztCALm0H8.ttf",
|
387 |
-
"900": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/AjAmkoP1y0Vaad0UPPR461Rf9EWUSEX_PR1d_gLKfpM.ttf",
|
388 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/alegreyasanssc/v1/0VweK-TO3aQgazdxg8fs0IvtwEfTCJoOJugANj-jWDI.ttf"
|
389 |
-
}
|
390 |
-
},
|
391 |
-
{
|
392 |
-
"kind": "webfonts#webfont",
|
393 |
-
"family": "Alex Brush",
|
394 |
-
"category": "handwriting",
|
395 |
-
"variants": [
|
396 |
-
"regular"
|
397 |
-
],
|
398 |
-
"subsets": [
|
399 |
-
"latin",
|
400 |
-
"latin-ext"
|
401 |
-
],
|
402 |
-
"version": "v4",
|
403 |
-
"lastModified": "2014-01-07",
|
404 |
-
"files": {
|
405 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/alexbrush/v4/ooh3KJFbKJSUoIRWfiu8o_esZW2xOQ-xsNqO47m55DA.ttf"
|
406 |
-
}
|
407 |
-
},
|
408 |
-
{
|
409 |
-
"kind": "webfonts#webfont",
|
410 |
-
"family": "Alfa Slab One",
|
411 |
-
"category": "display",
|
412 |
-
"variants": [
|
413 |
-
"regular"
|
414 |
-
],
|
415 |
-
"subsets": [
|
416 |
-
"latin"
|
417 |
-
],
|
418 |
-
"version": "v3",
|
419 |
-
"lastModified": "2014-01-07",
|
420 |
-
"files": {
|
421 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/alfaslabone/v3/Qx6FPcitRwTC_k88tLPc-Yjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
422 |
-
}
|
423 |
-
},
|
424 |
-
{
|
425 |
-
"kind": "webfonts#webfont",
|
426 |
-
"family": "Alice",
|
427 |
-
"category": "serif",
|
428 |
-
"variants": [
|
429 |
-
"regular"
|
430 |
-
],
|
431 |
-
"subsets": [
|
432 |
-
"latin"
|
433 |
-
],
|
434 |
-
"version": "v5",
|
435 |
-
"lastModified": "2014-01-07",
|
436 |
-
"files": {
|
437 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/alice/v5/wZTAfivekBqIg-rk63nFvQ.ttf"
|
438 |
-
}
|
439 |
-
},
|
440 |
-
{
|
441 |
-
"kind": "webfonts#webfont",
|
442 |
-
"family": "Alike",
|
443 |
-
"category": "serif",
|
444 |
-
"variants": [
|
445 |
-
"regular"
|
446 |
-
],
|
447 |
-
"subsets": [
|
448 |
-
"latin"
|
449 |
-
],
|
450 |
-
"version": "v5",
|
451 |
-
"lastModified": "2014-01-07",
|
452 |
-
"files": {
|
453 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/alike/v5/Ho8YpRKNk_202fwDiGNIyw.ttf"
|
454 |
-
}
|
455 |
-
},
|
456 |
-
{
|
457 |
-
"kind": "webfonts#webfont",
|
458 |
-
"family": "Alike Angular",
|
459 |
-
"category": "serif",
|
460 |
-
"variants": [
|
461 |
-
"regular"
|
462 |
-
],
|
463 |
-
"subsets": [
|
464 |
-
"latin"
|
465 |
-
],
|
466 |
-
"version": "v4",
|
467 |
-
"lastModified": "2014-01-07",
|
468 |
-
"files": {
|
469 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/alikeangular/v4/OpeCu4xxI3qO1C7CZcJtPT3XH2uEnVI__ynTBvNyki8.ttf"
|
470 |
-
}
|
471 |
-
},
|
472 |
-
{
|
473 |
-
"kind": "webfonts#webfont",
|
474 |
-
"family": "Allan",
|
475 |
-
"category": "display",
|
476 |
-
"variants": [
|
477 |
-
"regular",
|
478 |
-
"700"
|
479 |
-
],
|
480 |
-
"subsets": [
|
481 |
-
"latin",
|
482 |
-
"latin-ext"
|
483 |
-
],
|
484 |
-
"version": "v5",
|
485 |
-
"lastModified": "2014-01-07",
|
486 |
-
"files": {
|
487 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/allan/v5/T3lemhgZmLQkQI2Qc2bQHA.ttf",
|
488 |
-
"700": "http://themes.googleusercontent.com/static/fonts/allan/v5/zSxQiwo7wgnr7KkMXhSiag.ttf"
|
489 |
-
}
|
490 |
-
},
|
491 |
-
{
|
492 |
-
"kind": "webfonts#webfont",
|
493 |
-
"family": "Allerta",
|
494 |
-
"category": "sans-serif",
|
495 |
-
"variants": [
|
496 |
-
"regular"
|
497 |
-
],
|
498 |
-
"subsets": [
|
499 |
-
"latin"
|
500 |
-
],
|
501 |
-
"version": "v5",
|
502 |
-
"lastModified": "2014-01-07",
|
503 |
-
"files": {
|
504 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/allerta/v5/s9FOEuiJFTNbMe06ifzV8g.ttf"
|
505 |
-
}
|
506 |
-
},
|
507 |
-
{
|
508 |
-
"kind": "webfonts#webfont",
|
509 |
-
"family": "Allerta Stencil",
|
510 |
-
"category": "sans-serif",
|
511 |
-
"variants": [
|
512 |
-
"regular"
|
513 |
-
],
|
514 |
-
"subsets": [
|
515 |
-
"latin"
|
516 |
-
],
|
517 |
-
"version": "v5",
|
518 |
-
"lastModified": "2014-01-07",
|
519 |
-
"files": {
|
520 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/allertastencil/v5/CdSZfRtHbQrBohqmzSdDYFf2eT4jUldwg_9fgfY_tHc.ttf"
|
521 |
-
}
|
522 |
-
},
|
523 |
-
{
|
524 |
-
"kind": "webfonts#webfont",
|
525 |
-
"family": "Allura",
|
526 |
-
"category": "handwriting",
|
527 |
-
"variants": [
|
528 |
-
"regular"
|
529 |
-
],
|
530 |
-
"subsets": [
|
531 |
-
"latin",
|
532 |
-
"latin-ext"
|
533 |
-
],
|
534 |
-
"version": "v2",
|
535 |
-
"lastModified": "2014-01-07",
|
536 |
-
"files": {
|
537 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/allura/v2/4hcqgZanyuJ2gMYWffIR6A.ttf"
|
538 |
-
}
|
539 |
-
},
|
540 |
-
{
|
541 |
-
"kind": "webfonts#webfont",
|
542 |
-
"family": "Almendra",
|
543 |
-
"category": "serif",
|
544 |
-
"variants": [
|
545 |
-
"regular",
|
546 |
-
"italic",
|
547 |
-
"700",
|
548 |
-
"700italic"
|
549 |
-
],
|
550 |
-
"subsets": [
|
551 |
-
"latin",
|
552 |
-
"latin-ext"
|
553 |
-
],
|
554 |
-
"version": "v6",
|
555 |
-
"lastModified": "2014-01-07",
|
556 |
-
"files": {
|
557 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/almendra/v6/PDpbB-ZF7deXAAEYPkQOeg.ttf",
|
558 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/almendra/v6/CNWLyiDucqVKVgr4EMidi_esZW2xOQ-xsNqO47m55DA.ttf",
|
559 |
-
"700": "http://themes.googleusercontent.com/static/fonts/almendra/v6/ZpLdQMj7Q2AFio4nNO6A76CWcynf_cDxXwCLxiixG1c.ttf",
|
560 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/almendra/v6/-tXHKMcnn6FqrhJV3l1e3QJKKGfqHaYFsRG-T3ceEVo.ttf"
|
561 |
-
}
|
562 |
-
},
|
563 |
-
{
|
564 |
-
"kind": "webfonts#webfont",
|
565 |
-
"family": "Almendra Display",
|
566 |
-
"category": "display",
|
567 |
-
"variants": [
|
568 |
-
"regular"
|
569 |
-
],
|
570 |
-
"subsets": [
|
571 |
-
"latin",
|
572 |
-
"latin-ext"
|
573 |
-
],
|
574 |
-
"version": "v3",
|
575 |
-
"lastModified": "2014-01-07",
|
576 |
-
"files": {
|
577 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/almendradisplay/v3/2Zuu97WJ_ez-87yz5Ai8fF6uyC_qD11hrFQ6EGgTJWI.ttf"
|
578 |
-
}
|
579 |
-
},
|
580 |
-
{
|
581 |
-
"kind": "webfonts#webfont",
|
582 |
-
"family": "Almendra SC",
|
583 |
-
"category": "serif",
|
584 |
-
"variants": [
|
585 |
-
"regular"
|
586 |
-
],
|
587 |
-
"subsets": [
|
588 |
-
"latin"
|
589 |
-
],
|
590 |
-
"version": "v4",
|
591 |
-
"lastModified": "2014-01-07",
|
592 |
-
"files": {
|
593 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/almendrasc/v4/IuiLd8Fm9I6raSalxMoWeaCWcynf_cDxXwCLxiixG1c.ttf"
|
594 |
-
}
|
595 |
-
},
|
596 |
-
{
|
597 |
-
"kind": "webfonts#webfont",
|
598 |
-
"family": "Amarante",
|
599 |
-
"category": "display",
|
600 |
-
"variants": [
|
601 |
-
"regular"
|
602 |
-
],
|
603 |
-
"subsets": [
|
604 |
-
"latin",
|
605 |
-
"latin-ext"
|
606 |
-
],
|
607 |
-
"version": "v2",
|
608 |
-
"lastModified": "2014-01-07",
|
609 |
-
"files": {
|
610 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/amarante/v2/2dQHjIBWSpydit5zkJZnOw.ttf"
|
611 |
-
}
|
612 |
-
},
|
613 |
-
{
|
614 |
-
"kind": "webfonts#webfont",
|
615 |
-
"family": "Amaranth",
|
616 |
-
"category": "sans-serif",
|
617 |
-
"variants": [
|
618 |
-
"regular",
|
619 |
-
"italic",
|
620 |
-
"700",
|
621 |
-
"700italic"
|
622 |
-
],
|
623 |
-
"subsets": [
|
624 |
-
"latin"
|
625 |
-
],
|
626 |
-
"version": "v4",
|
627 |
-
"lastModified": "2014-01-07",
|
628 |
-
"files": {
|
629 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/amaranth/v4/7VcBog22JBHsHXHdnnycTA.ttf",
|
630 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/amaranth/v4/UrJlRY9LcVERJSvggsdBqPesZW2xOQ-xsNqO47m55DA.ttf",
|
631 |
-
"700": "http://themes.googleusercontent.com/static/fonts/amaranth/v4/j5OFHqadfxyLnQRxFeox6qCWcynf_cDxXwCLxiixG1c.ttf",
|
632 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/amaranth/v4/BHyuYFj9nqLFNvOvGh0xTwJKKGfqHaYFsRG-T3ceEVo.ttf"
|
633 |
-
}
|
634 |
-
},
|
635 |
-
{
|
636 |
-
"kind": "webfonts#webfont",
|
637 |
-
"family": "Amatic SC",
|
638 |
-
"category": "handwriting",
|
639 |
-
"variants": [
|
640 |
-
"regular",
|
641 |
-
"700"
|
642 |
-
],
|
643 |
-
"subsets": [
|
644 |
-
"latin"
|
645 |
-
],
|
646 |
-
"version": "v4",
|
647 |
-
"lastModified": "2014-01-07",
|
648 |
-
"files": {
|
649 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/amaticsc/v4/MldbRWLFytvqxU1y81xSVg.ttf",
|
650 |
-
"700": "http://themes.googleusercontent.com/static/fonts/amaticsc/v4/IDnkRTPGcrSVo50UyYNK7y3USBnSvpkopQaUR-2r7iU.ttf"
|
651 |
-
}
|
652 |
-
},
|
653 |
-
{
|
654 |
-
"kind": "webfonts#webfont",
|
655 |
-
"family": "Amethysta",
|
656 |
-
"category": "serif",
|
657 |
-
"variants": [
|
658 |
-
"regular"
|
659 |
-
],
|
660 |
-
"subsets": [
|
661 |
-
"latin"
|
662 |
-
],
|
663 |
-
"version": "v2",
|
664 |
-
"lastModified": "2014-01-07",
|
665 |
-
"files": {
|
666 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/amethysta/v2/1jEo9tOFIJDolAUpBnWbnA.ttf"
|
667 |
-
}
|
668 |
-
},
|
669 |
-
{
|
670 |
-
"kind": "webfonts#webfont",
|
671 |
-
"family": "Anaheim",
|
672 |
-
"category": "sans-serif",
|
673 |
-
"variants": [
|
674 |
-
"regular"
|
675 |
-
],
|
676 |
-
"subsets": [
|
677 |
-
"latin",
|
678 |
-
"latin-ext"
|
679 |
-
],
|
680 |
-
"version": "v2",
|
681 |
-
"lastModified": "2014-01-07",
|
682 |
-
"files": {
|
683 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/anaheim/v2/t-z8aXHMpgI2gjN_rIflKA.ttf"
|
684 |
-
}
|
685 |
-
},
|
686 |
-
{
|
687 |
-
"kind": "webfonts#webfont",
|
688 |
-
"family": "Andada",
|
689 |
-
"category": "serif",
|
690 |
-
"variants": [
|
691 |
-
"regular"
|
692 |
-
],
|
693 |
-
"subsets": [
|
694 |
-
"latin",
|
695 |
-
"latin-ext"
|
696 |
-
],
|
697 |
-
"version": "v5",
|
698 |
-
"lastModified": "2014-01-07",
|
699 |
-
"files": {
|
700 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/andada/v5/rSFaDqNNQBRw3y19MB5Y4w.ttf"
|
701 |
-
}
|
702 |
-
},
|
703 |
-
{
|
704 |
-
"kind": "webfonts#webfont",
|
705 |
-
"family": "Andika",
|
706 |
-
"category": "sans-serif",
|
707 |
-
"variants": [
|
708 |
-
"regular"
|
709 |
-
],
|
710 |
-
"subsets": [
|
711 |
-
"latin",
|
712 |
-
"cyrillic",
|
713 |
-
"cyrillic-ext",
|
714 |
-
"latin-ext"
|
715 |
-
],
|
716 |
-
"version": "v4",
|
717 |
-
"lastModified": "2014-01-07",
|
718 |
-
"files": {
|
719 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/andika/v4/oe-ag1G0lcqZ3IXfeEgaGg.ttf"
|
720 |
-
}
|
721 |
-
},
|
722 |
-
{
|
723 |
-
"kind": "webfonts#webfont",
|
724 |
-
"family": "Angkor",
|
725 |
-
"category": "display",
|
726 |
-
"variants": [
|
727 |
-
"regular"
|
728 |
-
],
|
729 |
-
"subsets": [
|
730 |
-
"khmer"
|
731 |
-
],
|
732 |
-
"version": "v6",
|
733 |
-
"lastModified": "2014-01-07",
|
734 |
-
"files": {
|
735 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/angkor/v6/DLpLgIS-8F10ecwKqCm95Q.ttf"
|
736 |
-
}
|
737 |
-
},
|
738 |
-
{
|
739 |
-
"kind": "webfonts#webfont",
|
740 |
-
"family": "Annie Use Your Telescope",
|
741 |
-
"category": "handwriting",
|
742 |
-
"variants": [
|
743 |
-
"regular"
|
744 |
-
],
|
745 |
-
"subsets": [
|
746 |
-
"latin"
|
747 |
-
],
|
748 |
-
"version": "v4",
|
749 |
-
"lastModified": "2014-01-07",
|
750 |
-
"files": {
|
751 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/annieuseyourtelescope/v4/2cuiO5VmaR09C8SLGEQjGqbp7mtG8sPlcZvOaO8HBak.ttf"
|
752 |
-
}
|
753 |
-
},
|
754 |
-
{
|
755 |
-
"kind": "webfonts#webfont",
|
756 |
-
"family": "Anonymous Pro",
|
757 |
-
"category": "monospace",
|
758 |
-
"variants": [
|
759 |
-
"regular",
|
760 |
-
"italic",
|
761 |
-
"700",
|
762 |
-
"700italic"
|
763 |
-
],
|
764 |
-
"subsets": [
|
765 |
-
"latin",
|
766 |
-
"greek",
|
767 |
-
"cyrillic",
|
768 |
-
"cyrillic-ext",
|
769 |
-
"latin-ext",
|
770 |
-
"greek-ext"
|
771 |
-
],
|
772 |
-
"version": "v4",
|
773 |
-
"lastModified": "2014-03-18",
|
774 |
-
"files": {
|
775 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/anonymouspro/v4/Zhfjj_gat3waL4JSju74E-V_5zh5b-_HiooIRUBwn1A.ttf",
|
776 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/anonymouspro/v4/q0u6LFHwttnT_69euiDbWKwIsuKDCXG0NQm7BvAgx-c.ttf",
|
777 |
-
"700": "http://themes.googleusercontent.com/static/fonts/anonymouspro/v4/WDf5lZYgdmmKhO8E1AQud--Cz_5MeePnXDAcLNWyBME.ttf",
|
778 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/anonymouspro/v4/_fVr_XGln-cetWSUc-JpfA1LL9bfs7wyIp6F8OC9RxA.ttf"
|
779 |
-
}
|
780 |
-
},
|
781 |
-
{
|
782 |
-
"kind": "webfonts#webfont",
|
783 |
-
"family": "Antic",
|
784 |
-
"category": "sans-serif",
|
785 |
-
"variants": [
|
786 |
-
"regular"
|
787 |
-
],
|
788 |
-
"subsets": [
|
789 |
-
"latin"
|
790 |
-
],
|
791 |
-
"version": "v5",
|
792 |
-
"lastModified": "2014-01-07",
|
793 |
-
"files": {
|
794 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/antic/v5/hEa8XCNM7tXGzD0Uk0AipA.ttf"
|
795 |
-
}
|
796 |
-
},
|
797 |
-
{
|
798 |
-
"kind": "webfonts#webfont",
|
799 |
-
"family": "Antic Didone",
|
800 |
-
"category": "serif",
|
801 |
-
"variants": [
|
802 |
-
"regular"
|
803 |
-
],
|
804 |
-
"subsets": [
|
805 |
-
"latin"
|
806 |
-
],
|
807 |
-
"version": "v2",
|
808 |
-
"lastModified": "2014-01-07",
|
809 |
-
"files": {
|
810 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/anticdidone/v2/r3nJcTDuOluOL6LGDV1vRy3USBnSvpkopQaUR-2r7iU.ttf"
|
811 |
-
}
|
812 |
-
},
|
813 |
-
{
|
814 |
-
"kind": "webfonts#webfont",
|
815 |
-
"family": "Antic Slab",
|
816 |
-
"category": "serif",
|
817 |
-
"variants": [
|
818 |
-
"regular"
|
819 |
-
],
|
820 |
-
"subsets": [
|
821 |
-
"latin"
|
822 |
-
],
|
823 |
-
"version": "v2",
|
824 |
-
"lastModified": "2014-01-07",
|
825 |
-
"files": {
|
826 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/anticslab/v2/PSbJCTKkAS7skPdkd7AKEvesZW2xOQ-xsNqO47m55DA.ttf"
|
827 |
-
}
|
828 |
-
},
|
829 |
-
{
|
830 |
-
"kind": "webfonts#webfont",
|
831 |
-
"family": "Anton",
|
832 |
-
"category": "sans-serif",
|
833 |
-
"variants": [
|
834 |
-
"regular"
|
835 |
-
],
|
836 |
-
"subsets": [
|
837 |
-
"latin",
|
838 |
-
"latin-ext"
|
839 |
-
],
|
840 |
-
"version": "v4",
|
841 |
-
"lastModified": "2014-01-07",
|
842 |
-
"files": {
|
843 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/anton/v4/XIbCenm-W0IRHWYIh7CGUQ.ttf"
|
844 |
-
}
|
845 |
-
},
|
846 |
-
{
|
847 |
-
"kind": "webfonts#webfont",
|
848 |
-
"family": "Arapey",
|
849 |
-
"category": "serif",
|
850 |
-
"variants": [
|
851 |
-
"regular",
|
852 |
-
"italic"
|
853 |
-
],
|
854 |
-
"subsets": [
|
855 |
-
"latin"
|
856 |
-
],
|
857 |
-
"version": "v3",
|
858 |
-
"lastModified": "2014-01-07",
|
859 |
-
"files": {
|
860 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/arapey/v3/dqu823lrSYn8T2gApTdslA.ttf",
|
861 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/arapey/v3/pY-Xi5JNBpaWxy2tZhEm5A.ttf"
|
862 |
-
}
|
863 |
-
},
|
864 |
-
{
|
865 |
-
"kind": "webfonts#webfont",
|
866 |
-
"family": "Arbutus",
|
867 |
-
"category": "display",
|
868 |
-
"variants": [
|
869 |
-
"regular"
|
870 |
-
],
|
871 |
-
"subsets": [
|
872 |
-
"latin",
|
873 |
-
"latin-ext"
|
874 |
-
],
|
875 |
-
"version": "v3",
|
876 |
-
"lastModified": "2014-01-07",
|
877 |
-
"files": {
|
878 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/arbutus/v3/Go_hurxoUsn5MnqNVQgodQ.ttf"
|
879 |
-
}
|
880 |
-
},
|
881 |
-
{
|
882 |
-
"kind": "webfonts#webfont",
|
883 |
-
"family": "Arbutus Slab",
|
884 |
-
"category": "serif",
|
885 |
-
"variants": [
|
886 |
-
"regular"
|
887 |
-
],
|
888 |
-
"subsets": [
|
889 |
-
"latin",
|
890 |
-
"latin-ext"
|
891 |
-
],
|
892 |
-
"version": "v2",
|
893 |
-
"lastModified": "2014-01-07",
|
894 |
-
"files": {
|
895 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/arbutusslab/v2/6k3Yp6iS9l4jRIpynA8qMy3USBnSvpkopQaUR-2r7iU.ttf"
|
896 |
-
}
|
897 |
-
},
|
898 |
-
{
|
899 |
-
"kind": "webfonts#webfont",
|
900 |
-
"family": "Architects Daughter",
|
901 |
-
"category": "handwriting",
|
902 |
-
"variants": [
|
903 |
-
"regular"
|
904 |
-
],
|
905 |
-
"subsets": [
|
906 |
-
"latin"
|
907 |
-
],
|
908 |
-
"version": "v4",
|
909 |
-
"lastModified": "2014-01-07",
|
910 |
-
"files": {
|
911 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/architectsdaughter/v4/RXTgOOQ9AAtaVOHxx0IUBMCy0EhZjHzu-y0e6uLf4Fg.ttf"
|
912 |
-
}
|
913 |
-
},
|
914 |
-
{
|
915 |
-
"kind": "webfonts#webfont",
|
916 |
-
"family": "Archivo Black",
|
917 |
-
"category": "sans-serif",
|
918 |
-
"variants": [
|
919 |
-
"regular"
|
920 |
-
],
|
921 |
-
"subsets": [
|
922 |
-
"latin",
|
923 |
-
"latin-ext"
|
924 |
-
],
|
925 |
-
"version": "v2",
|
926 |
-
"lastModified": "2014-01-07",
|
927 |
-
"files": {
|
928 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/archivoblack/v2/WoAoVT7K3k7hHfxKbvB6B51XQG8isOYYJhPIYAyrESQ.ttf"
|
929 |
-
}
|
930 |
-
},
|
931 |
-
{
|
932 |
-
"kind": "webfonts#webfont",
|
933 |
-
"family": "Archivo Narrow",
|
934 |
-
"category": "sans-serif",
|
935 |
-
"variants": [
|
936 |
-
"regular",
|
937 |
-
"italic",
|
938 |
-
"700",
|
939 |
-
"700italic"
|
940 |
-
],
|
941 |
-
"subsets": [
|
942 |
-
"latin",
|
943 |
-
"latin-ext"
|
944 |
-
],
|
945 |
-
"version": "v3",
|
946 |
-
"lastModified": "2014-01-07",
|
947 |
-
"files": {
|
948 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/archivonarrow/v3/DsLzC9scoPnrGiwYYMQXppTvAuddT2xDMbdz0mdLyZY.ttf",
|
949 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/archivonarrow/v3/vqsrtPCpTU3tJlKfuXP5zUpmlyBQEFfdE6dERLXdQGQ.ttf",
|
950 |
-
"700": "http://themes.googleusercontent.com/static/fonts/archivonarrow/v3/M__Wu4PAmHf4YZvQM8tWsMLtdzs3iyjn_YuT226ZsLU.ttf",
|
951 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/archivonarrow/v3/wG6O733y5zHl4EKCOh8rSTg5KB8MNJ4uPAETq9naQO8.ttf"
|
952 |
-
}
|
953 |
-
},
|
954 |
-
{
|
955 |
-
"kind": "webfonts#webfont",
|
956 |
-
"family": "Arimo",
|
957 |
-
"category": "sans-serif",
|
958 |
-
"variants": [
|
959 |
-
"regular",
|
960 |
-
"italic",
|
961 |
-
"700",
|
962 |
-
"700italic"
|
963 |
-
],
|
964 |
-
"subsets": [
|
965 |
-
"latin",
|
966 |
-
"greek",
|
967 |
-
"cyrillic",
|
968 |
-
"vietnamese",
|
969 |
-
"cyrillic-ext",
|
970 |
-
"latin-ext",
|
971 |
-
"greek-ext"
|
972 |
-
],
|
973 |
-
"version": "v6",
|
974 |
-
"lastModified": "2014-01-07",
|
975 |
-
"files": {
|
976 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/arimo/v6/Gpeo80g-5ji2CcyXWnzh7g.ttf",
|
977 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/arimo/v6/_OdGbnX2-qQ96C4OjhyuPw.ttf",
|
978 |
-
"700": "http://themes.googleusercontent.com/static/fonts/arimo/v6/ZItXugREyvV9LnbY_gxAmw.ttf",
|
979 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/arimo/v6/__nOLWqmeXdhfr0g7GaFePesZW2xOQ-xsNqO47m55DA.ttf"
|
980 |
-
}
|
981 |
-
},
|
982 |
-
{
|
983 |
-
"kind": "webfonts#webfont",
|
984 |
-
"family": "Arizonia",
|
985 |
-
"category": "handwriting",
|
986 |
-
"variants": [
|
987 |
-
"regular"
|
988 |
-
],
|
989 |
-
"subsets": [
|
990 |
-
"latin",
|
991 |
-
"latin-ext"
|
992 |
-
],
|
993 |
-
"version": "v4",
|
994 |
-
"lastModified": "2014-01-07",
|
995 |
-
"files": {
|
996 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/arizonia/v4/yzJqkHZqryZBTM7RKYV9Wg.ttf"
|
997 |
-
}
|
998 |
-
},
|
999 |
-
{
|
1000 |
-
"kind": "webfonts#webfont",
|
1001 |
-
"family": "Armata",
|
1002 |
-
"category": "sans-serif",
|
1003 |
-
"variants": [
|
1004 |
-
"regular"
|
1005 |
-
],
|
1006 |
-
"subsets": [
|
1007 |
-
"latin",
|
1008 |
-
"latin-ext"
|
1009 |
-
],
|
1010 |
-
"version": "v4",
|
1011 |
-
"lastModified": "2014-01-07",
|
1012 |
-
"files": {
|
1013 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/armata/v4/1H8FwGgIRrbYtxSfXhOHlQ.ttf"
|
1014 |
-
}
|
1015 |
-
},
|
1016 |
-
{
|
1017 |
-
"kind": "webfonts#webfont",
|
1018 |
-
"family": "Artifika",
|
1019 |
-
"category": "serif",
|
1020 |
-
"variants": [
|
1021 |
-
"regular"
|
1022 |
-
],
|
1023 |
-
"subsets": [
|
1024 |
-
"latin"
|
1025 |
-
],
|
1026 |
-
"version": "v4",
|
1027 |
-
"lastModified": "2014-01-07",
|
1028 |
-
"files": {
|
1029 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/artifika/v4/Ekfp4H4QG7D-WsABDOyj8g.ttf"
|
1030 |
-
}
|
1031 |
-
},
|
1032 |
-
{
|
1033 |
-
"kind": "webfonts#webfont",
|
1034 |
-
"family": "Arvo",
|
1035 |
-
"category": "serif",
|
1036 |
-
"variants": [
|
1037 |
-
"regular",
|
1038 |
-
"italic",
|
1039 |
-
"700",
|
1040 |
-
"700italic"
|
1041 |
-
],
|
1042 |
-
"subsets": [
|
1043 |
-
"latin"
|
1044 |
-
],
|
1045 |
-
"version": "v6",
|
1046 |
-
"lastModified": "2014-01-07",
|
1047 |
-
"files": {
|
1048 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/arvo/v6/vvWPwz-PlZEwjOOIKqoZzA.ttf",
|
1049 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/arvo/v6/id5a4BCjbenl5Gkqonw_Rw.ttf",
|
1050 |
-
"700": "http://themes.googleusercontent.com/static/fonts/arvo/v6/OB3FDST7U38u3OjPK_vvRQ.ttf",
|
1051 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/arvo/v6/Hvl2MuWoXLaCy2v6MD4Yvw.ttf"
|
1052 |
-
}
|
1053 |
-
},
|
1054 |
-
{
|
1055 |
-
"kind": "webfonts#webfont",
|
1056 |
-
"family": "Asap",
|
1057 |
-
"category": "sans-serif",
|
1058 |
-
"variants": [
|
1059 |
-
"regular",
|
1060 |
-
"italic",
|
1061 |
-
"700",
|
1062 |
-
"700italic"
|
1063 |
-
],
|
1064 |
-
"subsets": [
|
1065 |
-
"latin",
|
1066 |
-
"latin-ext"
|
1067 |
-
],
|
1068 |
-
"version": "v2",
|
1069 |
-
"lastModified": "2014-01-07",
|
1070 |
-
"files": {
|
1071 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/asap/v2/2lf-1MDR8tsTpEtvJmr2hA.ttf",
|
1072 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/asap/v2/mwxNHf8QS8gNWCAMwkJNIg.ttf",
|
1073 |
-
"700": "http://themes.googleusercontent.com/static/fonts/asap/v2/o5RUA7SsJ80M8oDFBnrDbg.ttf",
|
1074 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/asap/v2/_rZz9y2oXc09jT5T6BexLQ.ttf"
|
1075 |
-
}
|
1076 |
-
},
|
1077 |
-
{
|
1078 |
-
"kind": "webfonts#webfont",
|
1079 |
-
"family": "Asset",
|
1080 |
-
"category": "display",
|
1081 |
-
"variants": [
|
1082 |
-
"regular"
|
1083 |
-
],
|
1084 |
-
"subsets": [
|
1085 |
-
"latin"
|
1086 |
-
],
|
1087 |
-
"version": "v4",
|
1088 |
-
"lastModified": "2014-01-07",
|
1089 |
-
"files": {
|
1090 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/asset/v4/hfPmqY-JzuR1lULlQf9iTg.ttf"
|
1091 |
-
}
|
1092 |
-
},
|
1093 |
-
{
|
1094 |
-
"kind": "webfonts#webfont",
|
1095 |
-
"family": "Astloch",
|
1096 |
-
"category": "display",
|
1097 |
-
"variants": [
|
1098 |
-
"regular",
|
1099 |
-
"700"
|
1100 |
-
],
|
1101 |
-
"subsets": [
|
1102 |
-
"latin"
|
1103 |
-
],
|
1104 |
-
"version": "v4",
|
1105 |
-
"lastModified": "2014-01-07",
|
1106 |
-
"files": {
|
1107 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/astloch/v4/fmbitVmHYLQP7MGPuFgpag.ttf",
|
1108 |
-
"700": "http://themes.googleusercontent.com/static/fonts/astloch/v4/aPkhM2tL-tz1jX6aX2rvo_esZW2xOQ-xsNqO47m55DA.ttf"
|
1109 |
-
}
|
1110 |
-
},
|
1111 |
-
{
|
1112 |
-
"kind": "webfonts#webfont",
|
1113 |
-
"family": "Asul",
|
1114 |
-
"category": "sans-serif",
|
1115 |
-
"variants": [
|
1116 |
-
"regular",
|
1117 |
-
"700"
|
1118 |
-
],
|
1119 |
-
"subsets": [
|
1120 |
-
"latin"
|
1121 |
-
],
|
1122 |
-
"version": "v3",
|
1123 |
-
"lastModified": "2014-01-07",
|
1124 |
-
"files": {
|
1125 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/asul/v3/9qpsNR_OOwyOYyo2N0IbBw.ttf",
|
1126 |
-
"700": "http://themes.googleusercontent.com/static/fonts/asul/v3/uO8uNmxaq87-DdPmkEg5Gg.ttf"
|
1127 |
-
}
|
1128 |
-
},
|
1129 |
-
{
|
1130 |
-
"kind": "webfonts#webfont",
|
1131 |
-
"family": "Atomic Age",
|
1132 |
-
"category": "display",
|
1133 |
-
"variants": [
|
1134 |
-
"regular"
|
1135 |
-
],
|
1136 |
-
"subsets": [
|
1137 |
-
"latin"
|
1138 |
-
],
|
1139 |
-
"version": "v4",
|
1140 |
-
"lastModified": "2014-01-07",
|
1141 |
-
"files": {
|
1142 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/atomicage/v4/WvBMe4FxANIKpo6Oi0mVJ_esZW2xOQ-xsNqO47m55DA.ttf"
|
1143 |
-
}
|
1144 |
-
},
|
1145 |
-
{
|
1146 |
-
"kind": "webfonts#webfont",
|
1147 |
-
"family": "Aubrey",
|
1148 |
-
"category": "display",
|
1149 |
-
"variants": [
|
1150 |
-
"regular"
|
1151 |
-
],
|
1152 |
-
"subsets": [
|
1153 |
-
"latin"
|
1154 |
-
],
|
1155 |
-
"version": "v6",
|
1156 |
-
"lastModified": "2014-01-07",
|
1157 |
-
"files": {
|
1158 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/aubrey/v6/zo9w8klO8bmOQIMajQ2aTA.ttf"
|
1159 |
-
}
|
1160 |
-
},
|
1161 |
-
{
|
1162 |
-
"kind": "webfonts#webfont",
|
1163 |
-
"family": "Audiowide",
|
1164 |
-
"category": "display",
|
1165 |
-
"variants": [
|
1166 |
-
"regular"
|
1167 |
-
],
|
1168 |
-
"subsets": [
|
1169 |
-
"latin",
|
1170 |
-
"latin-ext"
|
1171 |
-
],
|
1172 |
-
"version": "v2",
|
1173 |
-
"lastModified": "2014-01-07",
|
1174 |
-
"files": {
|
1175 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/audiowide/v2/yGcwRZB6VmoYhPUYT-mEow.ttf"
|
1176 |
-
}
|
1177 |
-
},
|
1178 |
-
{
|
1179 |
-
"kind": "webfonts#webfont",
|
1180 |
-
"family": "Autour One",
|
1181 |
-
"category": "display",
|
1182 |
-
"variants": [
|
1183 |
-
"regular"
|
1184 |
-
],
|
1185 |
-
"subsets": [
|
1186 |
-
"latin",
|
1187 |
-
"latin-ext"
|
1188 |
-
],
|
1189 |
-
"version": "v2",
|
1190 |
-
"lastModified": "2014-01-07",
|
1191 |
-
"files": {
|
1192 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/autourone/v2/2xmQBcg7FN72jaQRFZPIDvesZW2xOQ-xsNqO47m55DA.ttf"
|
1193 |
-
}
|
1194 |
-
},
|
1195 |
-
{
|
1196 |
-
"kind": "webfonts#webfont",
|
1197 |
-
"family": "Average",
|
1198 |
-
"category": "serif",
|
1199 |
-
"variants": [
|
1200 |
-
"regular"
|
1201 |
-
],
|
1202 |
-
"subsets": [
|
1203 |
-
"latin",
|
1204 |
-
"latin-ext"
|
1205 |
-
],
|
1206 |
-
"version": "v2",
|
1207 |
-
"lastModified": "2014-01-07",
|
1208 |
-
"files": {
|
1209 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/average/v2/aHUibBqdDbVYl5FM48pxyQ.ttf"
|
1210 |
-
}
|
1211 |
-
},
|
1212 |
-
{
|
1213 |
-
"kind": "webfonts#webfont",
|
1214 |
-
"family": "Average Sans",
|
1215 |
-
"category": "sans-serif",
|
1216 |
-
"variants": [
|
1217 |
-
"regular"
|
1218 |
-
],
|
1219 |
-
"subsets": [
|
1220 |
-
"latin",
|
1221 |
-
"latin-ext"
|
1222 |
-
],
|
1223 |
-
"version": "v2",
|
1224 |
-
"lastModified": "2014-01-07",
|
1225 |
-
"files": {
|
1226 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/averagesans/v2/dnU3R-5A_43y5bIyLztPsS3USBnSvpkopQaUR-2r7iU.ttf"
|
1227 |
-
}
|
1228 |
-
},
|
1229 |
-
{
|
1230 |
-
"kind": "webfonts#webfont",
|
1231 |
-
"family": "Averia Gruesa Libre",
|
1232 |
-
"category": "display",
|
1233 |
-
"variants": [
|
1234 |
-
"regular"
|
1235 |
-
],
|
1236 |
-
"subsets": [
|
1237 |
-
"latin",
|
1238 |
-
"latin-ext"
|
1239 |
-
],
|
1240 |
-
"version": "v2",
|
1241 |
-
"lastModified": "2014-01-07",
|
1242 |
-
"files": {
|
1243 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/averiagruesalibre/v2/10vbZTOoN6T8D-nvDzwRFyXcKHuZXlCN8VkWHpkUzKM.ttf"
|
1244 |
-
}
|
1245 |
-
},
|
1246 |
-
{
|
1247 |
-
"kind": "webfonts#webfont",
|
1248 |
-
"family": "Averia Libre",
|
1249 |
-
"category": "display",
|
1250 |
-
"variants": [
|
1251 |
-
"300",
|
1252 |
-
"300italic",
|
1253 |
-
"regular",
|
1254 |
-
"italic",
|
1255 |
-
"700",
|
1256 |
-
"700italic"
|
1257 |
-
],
|
1258 |
-
"subsets": [
|
1259 |
-
"latin"
|
1260 |
-
],
|
1261 |
-
"version": "v2",
|
1262 |
-
"lastModified": "2014-01-07",
|
1263 |
-
"files": {
|
1264 |
-
"300": "http://themes.googleusercontent.com/static/fonts/averialibre/v2/r6hGL8sSLm4dTzOPXgx5XacQoVhARpoaILP7amxE_8g.ttf",
|
1265 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/averialibre/v2/I6wAYuAvOgT7el2ePj2nkina0FLWfcB-J_SAYmcAXaI.ttf",
|
1266 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/averialibre/v2/rYVgHZZQICWnhjguGsBspC3USBnSvpkopQaUR-2r7iU.ttf",
|
1267 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/averialibre/v2/1etzuoNxVHR8F533EkD1WfMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
1268 |
-
"700": "http://themes.googleusercontent.com/static/fonts/averialibre/v2/r6hGL8sSLm4dTzOPXgx5XUD2ttfZwueP-QU272T9-k4.ttf",
|
1269 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/averialibre/v2/I6wAYuAvOgT7el2ePj2nkvAs9-1nE9qOqhChW0m4nDE.ttf"
|
1270 |
-
}
|
1271 |
-
},
|
1272 |
-
{
|
1273 |
-
"kind": "webfonts#webfont",
|
1274 |
-
"family": "Averia Sans Libre",
|
1275 |
-
"category": "display",
|
1276 |
-
"variants": [
|
1277 |
-
"300",
|
1278 |
-
"300italic",
|
1279 |
-
"regular",
|
1280 |
-
"italic",
|
1281 |
-
"700",
|
1282 |
-
"700italic"
|
1283 |
-
],
|
1284 |
-
"subsets": [
|
1285 |
-
"latin"
|
1286 |
-
],
|
1287 |
-
"version": "v2",
|
1288 |
-
"lastModified": "2014-01-07",
|
1289 |
-
"files": {
|
1290 |
-
"300": "http://themes.googleusercontent.com/static/fonts/averiasanslibre/v2/_9-jTfQjaBsWAF_yp5z-V4CP_KG_g80s1KXiBtJHoNc.ttf",
|
1291 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/averiasanslibre/v2/o7BEIK-fG3Ykc5Rzteh88YuyGu4JqttndUh4gRKxic0.ttf",
|
1292 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/averiasanslibre/v2/yRJpjT39KxACO9F31mj_LqV8_KRn4epKAjTFK1s1fsg.ttf",
|
1293 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/averiasanslibre/v2/COEzR_NPBSUOl3pFwPbPoCZU2HnUZT1xVKaIrHDioao.ttf",
|
1294 |
-
"700": "http://themes.googleusercontent.com/static/fonts/averiasanslibre/v2/_9-jTfQjaBsWAF_yp5z-V8QwVOrz1y5GihpZmtKLhlI.ttf",
|
1295 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/averiasanslibre/v2/o7BEIK-fG3Ykc5Rzteh88bXy1DXgmJcVtKjM5UWamMs.ttf"
|
1296 |
-
}
|
1297 |
-
},
|
1298 |
-
{
|
1299 |
-
"kind": "webfonts#webfont",
|
1300 |
-
"family": "Averia Serif Libre",
|
1301 |
-
"category": "display",
|
1302 |
-
"variants": [
|
1303 |
-
"300",
|
1304 |
-
"300italic",
|
1305 |
-
"regular",
|
1306 |
-
"italic",
|
1307 |
-
"700",
|
1308 |
-
"700italic"
|
1309 |
-
],
|
1310 |
-
"subsets": [
|
1311 |
-
"latin"
|
1312 |
-
],
|
1313 |
-
"version": "v3",
|
1314 |
-
"lastModified": "2014-01-07",
|
1315 |
-
"files": {
|
1316 |
-
"300": "http://themes.googleusercontent.com/static/fonts/averiaseriflibre/v3/yvITAdr5D1nlsdFswJAb8SmC4gFJ2PHmfdVKEd_5S9M.ttf",
|
1317 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/averiaseriflibre/v3/YOLFXyye4sZt6AZk1QybCG2okl0bU63CauowU4iApig.ttf",
|
1318 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/averiaseriflibre/v3/fdtF30xa_Erw0zAzOoG4BZqY66i8AUyI16fGqw0iAew.ttf",
|
1319 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/averiaseriflibre/v3/o9qhvK9iT5iDWfyhQUe-6Ru_b0bTq5iipbJ9hhgHJ6U.ttf",
|
1320 |
-
"700": "http://themes.googleusercontent.com/static/fonts/averiaseriflibre/v3/yvITAdr5D1nlsdFswJAb8Q50KV5TaOVolur4zV2iZsg.ttf",
|
1321 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/averiaseriflibre/v3/YOLFXyye4sZt6AZk1QybCNxohRXP4tNDqG3X4Hqn21k.ttf"
|
1322 |
-
}
|
1323 |
-
},
|
1324 |
-
{
|
1325 |
-
"kind": "webfonts#webfont",
|
1326 |
-
"family": "Bad Script",
|
1327 |
-
"category": "handwriting",
|
1328 |
-
"variants": [
|
1329 |
-
"regular"
|
1330 |
-
],
|
1331 |
-
"subsets": [
|
1332 |
-
"latin",
|
1333 |
-
"cyrillic"
|
1334 |
-
],
|
1335 |
-
"version": "v3",
|
1336 |
-
"lastModified": "2014-01-07",
|
1337 |
-
"files": {
|
1338 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/badscript/v3/cRyUs0nJ2eMQFHwBsZNRXfesZW2xOQ-xsNqO47m55DA.ttf"
|
1339 |
-
}
|
1340 |
-
},
|
1341 |
-
{
|
1342 |
-
"kind": "webfonts#webfont",
|
1343 |
-
"family": "Balthazar",
|
1344 |
-
"category": "serif",
|
1345 |
-
"variants": [
|
1346 |
-
"regular"
|
1347 |
-
],
|
1348 |
-
"subsets": [
|
1349 |
-
"latin"
|
1350 |
-
],
|
1351 |
-
"version": "v3",
|
1352 |
-
"lastModified": "2014-01-07",
|
1353 |
-
"files": {
|
1354 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/balthazar/v3/WgbaSIs6dJAGXJ0qbz2xlw.ttf"
|
1355 |
-
}
|
1356 |
-
},
|
1357 |
-
{
|
1358 |
-
"kind": "webfonts#webfont",
|
1359 |
-
"family": "Bangers",
|
1360 |
-
"category": "display",
|
1361 |
-
"variants": [
|
1362 |
-
"regular"
|
1363 |
-
],
|
1364 |
-
"subsets": [
|
1365 |
-
"latin"
|
1366 |
-
],
|
1367 |
-
"version": "v5",
|
1368 |
-
"lastModified": "2014-01-07",
|
1369 |
-
"files": {
|
1370 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bangers/v5/WAffdge5w99Xif-DLeqmcA.ttf"
|
1371 |
-
}
|
1372 |
-
},
|
1373 |
-
{
|
1374 |
-
"kind": "webfonts#webfont",
|
1375 |
-
"family": "Basic",
|
1376 |
-
"category": "sans-serif",
|
1377 |
-
"variants": [
|
1378 |
-
"regular"
|
1379 |
-
],
|
1380 |
-
"subsets": [
|
1381 |
-
"latin",
|
1382 |
-
"latin-ext"
|
1383 |
-
],
|
1384 |
-
"version": "v3",
|
1385 |
-
"lastModified": "2014-01-07",
|
1386 |
-
"files": {
|
1387 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/basic/v3/hNII2mS5Dxw5C0u_m3mXgA.ttf"
|
1388 |
-
}
|
1389 |
-
},
|
1390 |
-
{
|
1391 |
-
"kind": "webfonts#webfont",
|
1392 |
-
"family": "Battambang",
|
1393 |
-
"category": "display",
|
1394 |
-
"variants": [
|
1395 |
-
"regular",
|
1396 |
-
"700"
|
1397 |
-
],
|
1398 |
-
"subsets": [
|
1399 |
-
"khmer"
|
1400 |
-
],
|
1401 |
-
"version": "v7",
|
1402 |
-
"lastModified": "2014-01-07",
|
1403 |
-
"files": {
|
1404 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/battambang/v7/MzrUfQLefYum5vVGM3EZVPesZW2xOQ-xsNqO47m55DA.ttf",
|
1405 |
-
"700": "http://themes.googleusercontent.com/static/fonts/battambang/v7/dezbRtMzfzAA99DmrCYRMgJKKGfqHaYFsRG-T3ceEVo.ttf"
|
1406 |
-
}
|
1407 |
-
},
|
1408 |
-
{
|
1409 |
-
"kind": "webfonts#webfont",
|
1410 |
-
"family": "Baumans",
|
1411 |
-
"category": "display",
|
1412 |
-
"variants": [
|
1413 |
-
"regular"
|
1414 |
-
],
|
1415 |
-
"subsets": [
|
1416 |
-
"latin"
|
1417 |
-
],
|
1418 |
-
"version": "v3",
|
1419 |
-
"lastModified": "2014-01-07",
|
1420 |
-
"files": {
|
1421 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/baumans/v3/o0bFdPW1H5kd5saqqOcoVg.ttf"
|
1422 |
-
}
|
1423 |
-
},
|
1424 |
-
{
|
1425 |
-
"kind": "webfonts#webfont",
|
1426 |
-
"family": "Bayon",
|
1427 |
-
"category": "display",
|
1428 |
-
"variants": [
|
1429 |
-
"regular"
|
1430 |
-
],
|
1431 |
-
"subsets": [
|
1432 |
-
"khmer"
|
1433 |
-
],
|
1434 |
-
"version": "v6",
|
1435 |
-
"lastModified": "2014-01-07",
|
1436 |
-
"files": {
|
1437 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bayon/v6/yTubusjTnpNRZwA4_50iVw.ttf"
|
1438 |
-
}
|
1439 |
-
},
|
1440 |
-
{
|
1441 |
-
"kind": "webfonts#webfont",
|
1442 |
-
"family": "Belgrano",
|
1443 |
-
"category": "serif",
|
1444 |
-
"variants": [
|
1445 |
-
"regular"
|
1446 |
-
],
|
1447 |
-
"subsets": [
|
1448 |
-
"latin"
|
1449 |
-
],
|
1450 |
-
"version": "v4",
|
1451 |
-
"lastModified": "2014-01-07",
|
1452 |
-
"files": {
|
1453 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/belgrano/v4/iq8DUa2s7g6WRCeMiFrmtQ.ttf"
|
1454 |
-
}
|
1455 |
-
},
|
1456 |
-
{
|
1457 |
-
"kind": "webfonts#webfont",
|
1458 |
-
"family": "Belleza",
|
1459 |
-
"category": "sans-serif",
|
1460 |
-
"variants": [
|
1461 |
-
"regular"
|
1462 |
-
],
|
1463 |
-
"subsets": [
|
1464 |
-
"latin",
|
1465 |
-
"latin-ext"
|
1466 |
-
],
|
1467 |
-
"version": "v2",
|
1468 |
-
"lastModified": "2014-01-07",
|
1469 |
-
"files": {
|
1470 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/belleza/v2/wchA3BWJlVqvIcSeNZyXew.ttf"
|
1471 |
-
}
|
1472 |
-
},
|
1473 |
-
{
|
1474 |
-
"kind": "webfonts#webfont",
|
1475 |
-
"family": "BenchNine",
|
1476 |
-
"category": "sans-serif",
|
1477 |
-
"variants": [
|
1478 |
-
"300",
|
1479 |
-
"regular",
|
1480 |
-
"700"
|
1481 |
-
],
|
1482 |
-
"subsets": [
|
1483 |
-
"latin",
|
1484 |
-
"latin-ext"
|
1485 |
-
],
|
1486 |
-
"version": "v2",
|
1487 |
-
"lastModified": "2014-01-07",
|
1488 |
-
"files": {
|
1489 |
-
"300": "http://themes.googleusercontent.com/static/fonts/benchnine/v2/ah9xtUy9wLQ3qnWa2p-piS3USBnSvpkopQaUR-2r7iU.ttf",
|
1490 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/benchnine/v2/h3OAlYqU3aOeNkuXgH2Q2w.ttf",
|
1491 |
-
"700": "http://themes.googleusercontent.com/static/fonts/benchnine/v2/qZpi6ZVZg3L2RL_xoBLxWS3USBnSvpkopQaUR-2r7iU.ttf"
|
1492 |
-
}
|
1493 |
-
},
|
1494 |
-
{
|
1495 |
-
"kind": "webfonts#webfont",
|
1496 |
-
"family": "Bentham",
|
1497 |
-
"category": "serif",
|
1498 |
-
"variants": [
|
1499 |
-
"regular"
|
1500 |
-
],
|
1501 |
-
"subsets": [
|
1502 |
-
"latin"
|
1503 |
-
],
|
1504 |
-
"version": "v4",
|
1505 |
-
"lastModified": "2014-01-07",
|
1506 |
-
"files": {
|
1507 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bentham/v4/5-Mo8Fe7yg5tzV0GlQIuzQ.ttf"
|
1508 |
-
}
|
1509 |
-
},
|
1510 |
-
{
|
1511 |
-
"kind": "webfonts#webfont",
|
1512 |
-
"family": "Berkshire Swash",
|
1513 |
-
"category": "handwriting",
|
1514 |
-
"variants": [
|
1515 |
-
"regular"
|
1516 |
-
],
|
1517 |
-
"subsets": [
|
1518 |
-
"latin",
|
1519 |
-
"latin-ext"
|
1520 |
-
],
|
1521 |
-
"version": "v2",
|
1522 |
-
"lastModified": "2014-01-07",
|
1523 |
-
"files": {
|
1524 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/berkshireswash/v2/4RZJjVRPjYnC2939hKCAimKfbtsIjCZP_edQljX9gR0.ttf"
|
1525 |
-
}
|
1526 |
-
},
|
1527 |
-
{
|
1528 |
-
"kind": "webfonts#webfont",
|
1529 |
-
"family": "Bevan",
|
1530 |
-
"category": "display",
|
1531 |
-
"variants": [
|
1532 |
-
"regular"
|
1533 |
-
],
|
1534 |
-
"subsets": [
|
1535 |
-
"latin"
|
1536 |
-
],
|
1537 |
-
"version": "v5",
|
1538 |
-
"lastModified": "2014-01-07",
|
1539 |
-
"files": {
|
1540 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bevan/v5/Rtg3zDsCeQiaJ_Qno22OJA.ttf"
|
1541 |
-
}
|
1542 |
-
},
|
1543 |
-
{
|
1544 |
-
"kind": "webfonts#webfont",
|
1545 |
-
"family": "Bigelow Rules",
|
1546 |
-
"category": "display",
|
1547 |
-
"variants": [
|
1548 |
-
"regular"
|
1549 |
-
],
|
1550 |
-
"subsets": [
|
1551 |
-
"latin",
|
1552 |
-
"latin-ext"
|
1553 |
-
],
|
1554 |
-
"version": "v2",
|
1555 |
-
"lastModified": "2014-01-07",
|
1556 |
-
"files": {
|
1557 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bigelowrules/v2/FEJCPLwo07FS-6SK6Al50X8f0n03UdmQgF_CLvNR2vg.ttf"
|
1558 |
-
}
|
1559 |
-
},
|
1560 |
-
{
|
1561 |
-
"kind": "webfonts#webfont",
|
1562 |
-
"family": "Bigshot One",
|
1563 |
-
"category": "display",
|
1564 |
-
"variants": [
|
1565 |
-
"regular"
|
1566 |
-
],
|
1567 |
-
"subsets": [
|
1568 |
-
"latin"
|
1569 |
-
],
|
1570 |
-
"version": "v4",
|
1571 |
-
"lastModified": "2014-01-07",
|
1572 |
-
"files": {
|
1573 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bigshotone/v4/wSyZjBNTWDQHnvWE2jt6j6CWcynf_cDxXwCLxiixG1c.ttf"
|
1574 |
-
}
|
1575 |
-
},
|
1576 |
-
{
|
1577 |
-
"kind": "webfonts#webfont",
|
1578 |
-
"family": "Bilbo",
|
1579 |
-
"category": "handwriting",
|
1580 |
-
"variants": [
|
1581 |
-
"regular"
|
1582 |
-
],
|
1583 |
-
"subsets": [
|
1584 |
-
"latin",
|
1585 |
-
"latin-ext"
|
1586 |
-
],
|
1587 |
-
"version": "v4",
|
1588 |
-
"lastModified": "2014-01-07",
|
1589 |
-
"files": {
|
1590 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bilbo/v4/-ty-lPs5H7OIucWbnpFrkA.ttf"
|
1591 |
-
}
|
1592 |
-
},
|
1593 |
-
{
|
1594 |
-
"kind": "webfonts#webfont",
|
1595 |
-
"family": "Bilbo Swash Caps",
|
1596 |
-
"category": "handwriting",
|
1597 |
-
"variants": [
|
1598 |
-
"regular"
|
1599 |
-
],
|
1600 |
-
"subsets": [
|
1601 |
-
"latin",
|
1602 |
-
"latin-ext"
|
1603 |
-
],
|
1604 |
-
"version": "v5",
|
1605 |
-
"lastModified": "2014-01-07",
|
1606 |
-
"files": {
|
1607 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bilboswashcaps/v5/UB_-crLvhx-PwGKW1oosDmYeFSdnSpRYv5h9gpdlD1g.ttf"
|
1608 |
-
}
|
1609 |
-
},
|
1610 |
-
{
|
1611 |
-
"kind": "webfonts#webfont",
|
1612 |
-
"family": "Bitter",
|
1613 |
-
"category": "serif",
|
1614 |
-
"variants": [
|
1615 |
-
"regular",
|
1616 |
-
"italic",
|
1617 |
-
"700"
|
1618 |
-
],
|
1619 |
-
"subsets": [
|
1620 |
-
"latin",
|
1621 |
-
"latin-ext"
|
1622 |
-
],
|
1623 |
-
"version": "v5",
|
1624 |
-
"lastModified": "2014-01-07",
|
1625 |
-
"files": {
|
1626 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bitter/v5/w_BNdJvVZDRmqy5aSfB2kQ.ttf",
|
1627 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/bitter/v5/TC0FZEVzXQIGgzmRfKPZbA.ttf",
|
1628 |
-
"700": "http://themes.googleusercontent.com/static/fonts/bitter/v5/4dUtr_4BvHuoRU35suyOAg.ttf"
|
1629 |
-
}
|
1630 |
-
},
|
1631 |
-
{
|
1632 |
-
"kind": "webfonts#webfont",
|
1633 |
-
"family": "Black Ops One",
|
1634 |
-
"category": "display",
|
1635 |
-
"variants": [
|
1636 |
-
"regular"
|
1637 |
-
],
|
1638 |
-
"subsets": [
|
1639 |
-
"latin",
|
1640 |
-
"latin-ext"
|
1641 |
-
],
|
1642 |
-
"version": "v5",
|
1643 |
-
"lastModified": "2014-01-07",
|
1644 |
-
"files": {
|
1645 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/blackopsone/v5/2XW-DmDsGbDLE372KrMW1Yjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
1646 |
-
}
|
1647 |
-
},
|
1648 |
-
{
|
1649 |
-
"kind": "webfonts#webfont",
|
1650 |
-
"family": "Bokor",
|
1651 |
-
"category": "display",
|
1652 |
-
"variants": [
|
1653 |
-
"regular"
|
1654 |
-
],
|
1655 |
-
"subsets": [
|
1656 |
-
"khmer"
|
1657 |
-
],
|
1658 |
-
"version": "v6",
|
1659 |
-
"lastModified": "2014-01-07",
|
1660 |
-
"files": {
|
1661 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bokor/v6/uAKdo0A85WW23Gs6mcbw7A.ttf"
|
1662 |
-
}
|
1663 |
-
},
|
1664 |
-
{
|
1665 |
-
"kind": "webfonts#webfont",
|
1666 |
-
"family": "Bonbon",
|
1667 |
-
"category": "handwriting",
|
1668 |
-
"variants": [
|
1669 |
-
"regular"
|
1670 |
-
],
|
1671 |
-
"subsets": [
|
1672 |
-
"latin"
|
1673 |
-
],
|
1674 |
-
"version": "v4",
|
1675 |
-
"lastModified": "2014-01-07",
|
1676 |
-
"files": {
|
1677 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bonbon/v4/IW3u1yzG1knyW5oz0s9_6Q.ttf"
|
1678 |
-
}
|
1679 |
-
},
|
1680 |
-
{
|
1681 |
-
"kind": "webfonts#webfont",
|
1682 |
-
"family": "Boogaloo",
|
1683 |
-
"category": "display",
|
1684 |
-
"variants": [
|
1685 |
-
"regular"
|
1686 |
-
],
|
1687 |
-
"subsets": [
|
1688 |
-
"latin"
|
1689 |
-
],
|
1690 |
-
"version": "v4",
|
1691 |
-
"lastModified": "2014-01-07",
|
1692 |
-
"files": {
|
1693 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/boogaloo/v4/4Wu1tvFMoB80fSu8qLgQfQ.ttf"
|
1694 |
-
}
|
1695 |
-
},
|
1696 |
-
{
|
1697 |
-
"kind": "webfonts#webfont",
|
1698 |
-
"family": "Bowlby One",
|
1699 |
-
"category": "display",
|
1700 |
-
"variants": [
|
1701 |
-
"regular"
|
1702 |
-
],
|
1703 |
-
"subsets": [
|
1704 |
-
"latin"
|
1705 |
-
],
|
1706 |
-
"version": "v5",
|
1707 |
-
"lastModified": "2014-01-07",
|
1708 |
-
"files": {
|
1709 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bowlbyone/v5/eKpHjHfjoxM2bX36YNucefesZW2xOQ-xsNqO47m55DA.ttf"
|
1710 |
-
}
|
1711 |
-
},
|
1712 |
-
{
|
1713 |
-
"kind": "webfonts#webfont",
|
1714 |
-
"family": "Bowlby One SC",
|
1715 |
-
"category": "display",
|
1716 |
-
"variants": [
|
1717 |
-
"regular"
|
1718 |
-
],
|
1719 |
-
"subsets": [
|
1720 |
-
"latin",
|
1721 |
-
"latin-ext"
|
1722 |
-
],
|
1723 |
-
"version": "v6",
|
1724 |
-
"lastModified": "2014-01-07",
|
1725 |
-
"files": {
|
1726 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bowlbyonesc/v6/8ZkeXftTuzKBtmxOYXoRedDkZCMxWJecxjvKm2f8MJw.ttf"
|
1727 |
-
}
|
1728 |
-
},
|
1729 |
-
{
|
1730 |
-
"kind": "webfonts#webfont",
|
1731 |
-
"family": "Brawler",
|
1732 |
-
"category": "serif",
|
1733 |
-
"variants": [
|
1734 |
-
"regular"
|
1735 |
-
],
|
1736 |
-
"subsets": [
|
1737 |
-
"latin"
|
1738 |
-
],
|
1739 |
-
"version": "v4",
|
1740 |
-
"lastModified": "2014-01-07",
|
1741 |
-
"files": {
|
1742 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/brawler/v4/3gfSw6imxQnQxweVITqUrg.ttf"
|
1743 |
-
}
|
1744 |
-
},
|
1745 |
-
{
|
1746 |
-
"kind": "webfonts#webfont",
|
1747 |
-
"family": "Bree Serif",
|
1748 |
-
"category": "serif",
|
1749 |
-
"variants": [
|
1750 |
-
"regular"
|
1751 |
-
],
|
1752 |
-
"subsets": [
|
1753 |
-
"latin",
|
1754 |
-
"latin-ext"
|
1755 |
-
],
|
1756 |
-
"version": "v3",
|
1757 |
-
"lastModified": "2014-01-07",
|
1758 |
-
"files": {
|
1759 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/breeserif/v3/5h9crBVIrvZqgf34FHcnEfesZW2xOQ-xsNqO47m55DA.ttf"
|
1760 |
-
}
|
1761 |
-
},
|
1762 |
-
{
|
1763 |
-
"kind": "webfonts#webfont",
|
1764 |
-
"family": "Bubblegum Sans",
|
1765 |
-
"category": "display",
|
1766 |
-
"variants": [
|
1767 |
-
"regular"
|
1768 |
-
],
|
1769 |
-
"subsets": [
|
1770 |
-
"latin",
|
1771 |
-
"latin-ext"
|
1772 |
-
],
|
1773 |
-
"version": "v3",
|
1774 |
-
"lastModified": "2014-01-07",
|
1775 |
-
"files": {
|
1776 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bubblegumsans/v3/Y9iTUUNz6lbl6TrvV4iwsytnKWgpfO2iSkLzTz-AABg.ttf"
|
1777 |
-
}
|
1778 |
-
},
|
1779 |
-
{
|
1780 |
-
"kind": "webfonts#webfont",
|
1781 |
-
"family": "Bubbler One",
|
1782 |
-
"category": "sans-serif",
|
1783 |
-
"variants": [
|
1784 |
-
"regular"
|
1785 |
-
],
|
1786 |
-
"subsets": [
|
1787 |
-
"latin",
|
1788 |
-
"latin-ext"
|
1789 |
-
],
|
1790 |
-
"version": "v2",
|
1791 |
-
"lastModified": "2014-01-07",
|
1792 |
-
"files": {
|
1793 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/bubblerone/v2/e8S0qevkZAFaBybtt_SU4qCWcynf_cDxXwCLxiixG1c.ttf"
|
1794 |
-
}
|
1795 |
-
},
|
1796 |
-
{
|
1797 |
-
"kind": "webfonts#webfont",
|
1798 |
-
"family": "Buda",
|
1799 |
-
"category": "display",
|
1800 |
-
"variants": [
|
1801 |
-
"300"
|
1802 |
-
],
|
1803 |
-
"subsets": [
|
1804 |
-
"latin"
|
1805 |
-
],
|
1806 |
-
"version": "v4",
|
1807 |
-
"lastModified": "2014-01-07",
|
1808 |
-
"files": {
|
1809 |
-
"300": "http://themes.googleusercontent.com/static/fonts/buda/v4/hLtAmNUmEMJH2yx7NGUjnA.ttf"
|
1810 |
-
}
|
1811 |
-
},
|
1812 |
-
{
|
1813 |
-
"kind": "webfonts#webfont",
|
1814 |
-
"family": "Buenard",
|
1815 |
-
"category": "serif",
|
1816 |
-
"variants": [
|
1817 |
-
"regular",
|
1818 |
-
"700"
|
1819 |
-
],
|
1820 |
-
"subsets": [
|
1821 |
-
"latin",
|
1822 |
-
"latin-ext"
|
1823 |
-
],
|
1824 |
-
"version": "v4",
|
1825 |
-
"lastModified": "2014-01-07",
|
1826 |
-
"files": {
|
1827 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/buenard/v4/NSpMPGKAUgrLrlstYVvIXQ.ttf",
|
1828 |
-
"700": "http://themes.googleusercontent.com/static/fonts/buenard/v4/yUlGE115dGr7O9w9FlP3UvesZW2xOQ-xsNqO47m55DA.ttf"
|
1829 |
-
}
|
1830 |
-
},
|
1831 |
-
{
|
1832 |
-
"kind": "webfonts#webfont",
|
1833 |
-
"family": "Butcherman",
|
1834 |
-
"category": "display",
|
1835 |
-
"variants": [
|
1836 |
-
"regular"
|
1837 |
-
],
|
1838 |
-
"subsets": [
|
1839 |
-
"latin",
|
1840 |
-
"latin-ext"
|
1841 |
-
],
|
1842 |
-
"version": "v5",
|
1843 |
-
"lastModified": "2014-01-07",
|
1844 |
-
"files": {
|
1845 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/butcherman/v5/bxiJmD567sPBVpJsT0XR0vesZW2xOQ-xsNqO47m55DA.ttf"
|
1846 |
-
}
|
1847 |
-
},
|
1848 |
-
{
|
1849 |
-
"kind": "webfonts#webfont",
|
1850 |
-
"family": "Butterfly Kids",
|
1851 |
-
"category": "handwriting",
|
1852 |
-
"variants": [
|
1853 |
-
"regular"
|
1854 |
-
],
|
1855 |
-
"subsets": [
|
1856 |
-
"latin",
|
1857 |
-
"latin-ext"
|
1858 |
-
],
|
1859 |
-
"version": "v2",
|
1860 |
-
"lastModified": "2014-01-07",
|
1861 |
-
"files": {
|
1862 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/butterflykids/v2/J4NTF5M25htqeTffYImtlUZaDk62iwTBnbnvwSjZciA.ttf"
|
1863 |
-
}
|
1864 |
-
},
|
1865 |
-
{
|
1866 |
-
"kind": "webfonts#webfont",
|
1867 |
-
"family": "Cabin",
|
1868 |
-
"category": "sans-serif",
|
1869 |
-
"variants": [
|
1870 |
-
"regular",
|
1871 |
-
"italic",
|
1872 |
-
"500",
|
1873 |
-
"500italic",
|
1874 |
-
"600",
|
1875 |
-
"600italic",
|
1876 |
-
"700",
|
1877 |
-
"700italic"
|
1878 |
-
],
|
1879 |
-
"subsets": [
|
1880 |
-
"latin"
|
1881 |
-
],
|
1882 |
-
"version": "v5",
|
1883 |
-
"lastModified": "2014-01-07",
|
1884 |
-
"files": {
|
1885 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cabin/v5/XeuAFYo2xAPHxZGBbQtHhA.ttf",
|
1886 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/cabin/v5/0tJ9k3DI5xC4GBgs1E_Jxw.ttf",
|
1887 |
-
"500": "http://themes.googleusercontent.com/static/fonts/cabin/v5/HgsCQ-k3_Z_uQ86aFolNBg.ttf",
|
1888 |
-
"500italic": "http://themes.googleusercontent.com/static/fonts/cabin/v5/50sjhrGE0njyO-7mGDhGP_esZW2xOQ-xsNqO47m55DA.ttf",
|
1889 |
-
"600": "http://themes.googleusercontent.com/static/fonts/cabin/v5/eUDAvKhBtmTCkeVBsFk34A.ttf",
|
1890 |
-
"600italic": "http://themes.googleusercontent.com/static/fonts/cabin/v5/sFQpQDBd3G2om0Nl5dD2CvesZW2xOQ-xsNqO47m55DA.ttf",
|
1891 |
-
"700": "http://themes.googleusercontent.com/static/fonts/cabin/v5/4EKhProuY1hq_WCAomq9Dg.ttf",
|
1892 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/cabin/v5/K83QKi8MOKLEqj6bgZ7LrfesZW2xOQ-xsNqO47m55DA.ttf"
|
1893 |
-
}
|
1894 |
-
},
|
1895 |
-
{
|
1896 |
-
"kind": "webfonts#webfont",
|
1897 |
-
"family": "Cabin Condensed",
|
1898 |
-
"category": "sans-serif",
|
1899 |
-
"variants": [
|
1900 |
-
"regular",
|
1901 |
-
"500",
|
1902 |
-
"600",
|
1903 |
-
"700"
|
1904 |
-
],
|
1905 |
-
"subsets": [
|
1906 |
-
"latin"
|
1907 |
-
],
|
1908 |
-
"version": "v5",
|
1909 |
-
"lastModified": "2014-01-07",
|
1910 |
-
"files": {
|
1911 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cabincondensed/v5/B0txb0blf2N29WdYPJjMSiQPsWWoiv__AzYJ9Zzn9II.ttf",
|
1912 |
-
"500": "http://themes.googleusercontent.com/static/fonts/cabincondensed/v5/Ez4zJbsGr2BgXcNUWBVgEARL_-ABKXdjsJSPT0lc2Bk.ttf",
|
1913 |
-
"600": "http://themes.googleusercontent.com/static/fonts/cabincondensed/v5/Ez4zJbsGr2BgXcNUWBVgELS5sSASxc8z4EQTQj7DCAI.ttf",
|
1914 |
-
"700": "http://themes.googleusercontent.com/static/fonts/cabincondensed/v5/Ez4zJbsGr2BgXcNUWBVgEMAWgzcA047xWLixhLCofl8.ttf"
|
1915 |
-
}
|
1916 |
-
},
|
1917 |
-
{
|
1918 |
-
"kind": "webfonts#webfont",
|
1919 |
-
"family": "Cabin Sketch",
|
1920 |
-
"category": "display",
|
1921 |
-
"variants": [
|
1922 |
-
"regular",
|
1923 |
-
"700"
|
1924 |
-
],
|
1925 |
-
"subsets": [
|
1926 |
-
"latin"
|
1927 |
-
],
|
1928 |
-
"version": "v6",
|
1929 |
-
"lastModified": "2014-01-07",
|
1930 |
-
"files": {
|
1931 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cabinsketch/v6/d9fijO34zQajqQvl3YHRCS3USBnSvpkopQaUR-2r7iU.ttf",
|
1932 |
-
"700": "http://themes.googleusercontent.com/static/fonts/cabinsketch/v6/ki3SSN5HMOO0-IOLOj069ED2ttfZwueP-QU272T9-k4.ttf"
|
1933 |
-
}
|
1934 |
-
},
|
1935 |
-
{
|
1936 |
-
"kind": "webfonts#webfont",
|
1937 |
-
"family": "Caesar Dressing",
|
1938 |
-
"category": "display",
|
1939 |
-
"variants": [
|
1940 |
-
"regular"
|
1941 |
-
],
|
1942 |
-
"subsets": [
|
1943 |
-
"latin"
|
1944 |
-
],
|
1945 |
-
"version": "v3",
|
1946 |
-
"lastModified": "2014-01-07",
|
1947 |
-
"files": {
|
1948 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/caesardressing/v3/2T_WzBgE2Xz3FsyJMq34T9gR43u4FvCuJwIfF5Zxl6Y.ttf"
|
1949 |
-
}
|
1950 |
-
},
|
1951 |
-
{
|
1952 |
-
"kind": "webfonts#webfont",
|
1953 |
-
"family": "Cagliostro",
|
1954 |
-
"category": "sans-serif",
|
1955 |
-
"variants": [
|
1956 |
-
"regular"
|
1957 |
-
],
|
1958 |
-
"subsets": [
|
1959 |
-
"latin"
|
1960 |
-
],
|
1961 |
-
"version": "v3",
|
1962 |
-
"lastModified": "2014-01-07",
|
1963 |
-
"files": {
|
1964 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cagliostro/v3/i85oXbtdSatNEzss99bpj_esZW2xOQ-xsNqO47m55DA.ttf"
|
1965 |
-
}
|
1966 |
-
},
|
1967 |
-
{
|
1968 |
-
"kind": "webfonts#webfont",
|
1969 |
-
"family": "Calligraffitti",
|
1970 |
-
"category": "handwriting",
|
1971 |
-
"variants": [
|
1972 |
-
"regular"
|
1973 |
-
],
|
1974 |
-
"subsets": [
|
1975 |
-
"latin"
|
1976 |
-
],
|
1977 |
-
"version": "v5",
|
1978 |
-
"lastModified": "2014-01-07",
|
1979 |
-
"files": {
|
1980 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/calligraffitti/v5/vLVN2Y-z65rVu1R7lWdvyDXz_orj3gX0_NzfmYulrko.ttf"
|
1981 |
-
}
|
1982 |
-
},
|
1983 |
-
{
|
1984 |
-
"kind": "webfonts#webfont",
|
1985 |
-
"family": "Cambo",
|
1986 |
-
"category": "serif",
|
1987 |
-
"variants": [
|
1988 |
-
"regular"
|
1989 |
-
],
|
1990 |
-
"subsets": [
|
1991 |
-
"latin"
|
1992 |
-
],
|
1993 |
-
"version": "v3",
|
1994 |
-
"lastModified": "2014-01-07",
|
1995 |
-
"files": {
|
1996 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cambo/v3/PnwpRuTdkYCf8qk4ajmNRA.ttf"
|
1997 |
-
}
|
1998 |
-
},
|
1999 |
-
{
|
2000 |
-
"kind": "webfonts#webfont",
|
2001 |
-
"family": "Candal",
|
2002 |
-
"category": "sans-serif",
|
2003 |
-
"variants": [
|
2004 |
-
"regular"
|
2005 |
-
],
|
2006 |
-
"subsets": [
|
2007 |
-
"latin"
|
2008 |
-
],
|
2009 |
-
"version": "v4",
|
2010 |
-
"lastModified": "2014-01-07",
|
2011 |
-
"files": {
|
2012 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/candal/v4/x44dDW28zK7GR1gGDBmj9g.ttf"
|
2013 |
-
}
|
2014 |
-
},
|
2015 |
-
{
|
2016 |
-
"kind": "webfonts#webfont",
|
2017 |
-
"family": "Cantarell",
|
2018 |
-
"category": "sans-serif",
|
2019 |
-
"variants": [
|
2020 |
-
"regular",
|
2021 |
-
"italic",
|
2022 |
-
"700",
|
2023 |
-
"700italic"
|
2024 |
-
],
|
2025 |
-
"subsets": [
|
2026 |
-
"latin"
|
2027 |
-
],
|
2028 |
-
"version": "v4",
|
2029 |
-
"lastModified": "2014-01-07",
|
2030 |
-
"files": {
|
2031 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cantarell/v4/p5ydP_uWQ5lsFzcP_XVMEw.ttf",
|
2032 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/cantarell/v4/DTCLtOSqP-7dgM-V_xKUjqCWcynf_cDxXwCLxiixG1c.ttf",
|
2033 |
-
"700": "http://themes.googleusercontent.com/static/fonts/cantarell/v4/Yir4ZDsCn4g1kWopdg-ehC3USBnSvpkopQaUR-2r7iU.ttf",
|
2034 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/cantarell/v4/weehrwMeZBXb0QyrWnRwFXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
2035 |
-
}
|
2036 |
-
},
|
2037 |
-
{
|
2038 |
-
"kind": "webfonts#webfont",
|
2039 |
-
"family": "Cantata One",
|
2040 |
-
"category": "serif",
|
2041 |
-
"variants": [
|
2042 |
-
"regular"
|
2043 |
-
],
|
2044 |
-
"subsets": [
|
2045 |
-
"latin",
|
2046 |
-
"latin-ext"
|
2047 |
-
],
|
2048 |
-
"version": "v3",
|
2049 |
-
"lastModified": "2014-01-07",
|
2050 |
-
"files": {
|
2051 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cantataone/v3/-a5FDvnBqaBMDaGgZYnEfqCWcynf_cDxXwCLxiixG1c.ttf"
|
2052 |
-
}
|
2053 |
-
},
|
2054 |
-
{
|
2055 |
-
"kind": "webfonts#webfont",
|
2056 |
-
"family": "Cantora One",
|
2057 |
-
"category": "sans-serif",
|
2058 |
-
"variants": [
|
2059 |
-
"regular"
|
2060 |
-
],
|
2061 |
-
"subsets": [
|
2062 |
-
"latin",
|
2063 |
-
"latin-ext"
|
2064 |
-
],
|
2065 |
-
"version": "v3",
|
2066 |
-
"lastModified": "2014-01-07",
|
2067 |
-
"files": {
|
2068 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cantoraone/v3/oI-DS62RbHI8ZREjp73ehqCWcynf_cDxXwCLxiixG1c.ttf"
|
2069 |
-
}
|
2070 |
-
},
|
2071 |
-
{
|
2072 |
-
"kind": "webfonts#webfont",
|
2073 |
-
"family": "Capriola",
|
2074 |
-
"category": "sans-serif",
|
2075 |
-
"variants": [
|
2076 |
-
"regular"
|
2077 |
-
],
|
2078 |
-
"subsets": [
|
2079 |
-
"latin",
|
2080 |
-
"latin-ext"
|
2081 |
-
],
|
2082 |
-
"version": "v2",
|
2083 |
-
"lastModified": "2014-01-07",
|
2084 |
-
"files": {
|
2085 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/capriola/v2/JxXPlkdzWwF9Cwelbvi9jA.ttf"
|
2086 |
-
}
|
2087 |
-
},
|
2088 |
-
{
|
2089 |
-
"kind": "webfonts#webfont",
|
2090 |
-
"family": "Cardo",
|
2091 |
-
"category": "serif",
|
2092 |
-
"variants": [
|
2093 |
-
"regular",
|
2094 |
-
"italic",
|
2095 |
-
"700"
|
2096 |
-
],
|
2097 |
-
"subsets": [
|
2098 |
-
"latin",
|
2099 |
-
"greek",
|
2100 |
-
"latin-ext",
|
2101 |
-
"greek-ext"
|
2102 |
-
],
|
2103 |
-
"version": "v6",
|
2104 |
-
"lastModified": "2014-01-07",
|
2105 |
-
"files": {
|
2106 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cardo/v6/jbkF2_R0FKUEZTq5dwSknQ.ttf",
|
2107 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/cardo/v6/pcv4Np9tUkq0YREYUcEEJQ.ttf",
|
2108 |
-
"700": "http://themes.googleusercontent.com/static/fonts/cardo/v6/lQN30weILimrKvp8rZhF1w.ttf"
|
2109 |
-
}
|
2110 |
-
},
|
2111 |
-
{
|
2112 |
-
"kind": "webfonts#webfont",
|
2113 |
-
"family": "Carme",
|
2114 |
-
"category": "sans-serif",
|
2115 |
-
"variants": [
|
2116 |
-
"regular"
|
2117 |
-
],
|
2118 |
-
"subsets": [
|
2119 |
-
"latin"
|
2120 |
-
],
|
2121 |
-
"version": "v5",
|
2122 |
-
"lastModified": "2014-01-07",
|
2123 |
-
"files": {
|
2124 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/carme/v5/08E0NP1eRBEyFRUadmMfgA.ttf"
|
2125 |
-
}
|
2126 |
-
},
|
2127 |
-
{
|
2128 |
-
"kind": "webfonts#webfont",
|
2129 |
-
"family": "Carrois Gothic",
|
2130 |
-
"category": "sans-serif",
|
2131 |
-
"variants": [
|
2132 |
-
"regular"
|
2133 |
-
],
|
2134 |
-
"subsets": [
|
2135 |
-
"latin"
|
2136 |
-
],
|
2137 |
-
"version": "v2",
|
2138 |
-
"lastModified": "2014-01-07",
|
2139 |
-
"files": {
|
2140 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/carroisgothic/v2/GCgb7bssGpwp7V5ynxmWy2x3d0cwUleGuRTmCYfCUaM.ttf"
|
2141 |
-
}
|
2142 |
-
},
|
2143 |
-
{
|
2144 |
-
"kind": "webfonts#webfont",
|
2145 |
-
"family": "Carrois Gothic SC",
|
2146 |
-
"category": "sans-serif",
|
2147 |
-
"variants": [
|
2148 |
-
"regular"
|
2149 |
-
],
|
2150 |
-
"subsets": [
|
2151 |
-
"latin"
|
2152 |
-
],
|
2153 |
-
"version": "v2",
|
2154 |
-
"lastModified": "2014-01-07",
|
2155 |
-
"files": {
|
2156 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/carroisgothicsc/v2/bVp4nhwFIXU-r3LqUR8DSJTdPW1ioadGi2uRiKgJVCY.ttf"
|
2157 |
-
}
|
2158 |
-
},
|
2159 |
-
{
|
2160 |
-
"kind": "webfonts#webfont",
|
2161 |
-
"family": "Carter One",
|
2162 |
-
"category": "display",
|
2163 |
-
"variants": [
|
2164 |
-
"regular"
|
2165 |
-
],
|
2166 |
-
"subsets": [
|
2167 |
-
"latin"
|
2168 |
-
],
|
2169 |
-
"version": "v6",
|
2170 |
-
"lastModified": "2014-01-07",
|
2171 |
-
"files": {
|
2172 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/carterone/v6/5X_LFvdbcB7OBG7hBgZ7fPesZW2xOQ-xsNqO47m55DA.ttf"
|
2173 |
-
}
|
2174 |
-
},
|
2175 |
-
{
|
2176 |
-
"kind": "webfonts#webfont",
|
2177 |
-
"family": "Caudex",
|
2178 |
-
"category": "serif",
|
2179 |
-
"variants": [
|
2180 |
-
"regular",
|
2181 |
-
"italic",
|
2182 |
-
"700",
|
2183 |
-
"700italic"
|
2184 |
-
],
|
2185 |
-
"subsets": [
|
2186 |
-
"latin",
|
2187 |
-
"greek",
|
2188 |
-
"latin-ext",
|
2189 |
-
"greek-ext"
|
2190 |
-
],
|
2191 |
-
"version": "v4",
|
2192 |
-
"lastModified": "2014-01-07",
|
2193 |
-
"files": {
|
2194 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/caudex/v4/PWEexiHLDmQbn2b1OPZWfg.ttf",
|
2195 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/caudex/v4/XjMZF6XCisvV3qapD4oJdw.ttf",
|
2196 |
-
"700": "http://themes.googleusercontent.com/static/fonts/caudex/v4/PetCI4GyQ5Q3LiOzUu_mMg.ttf",
|
2197 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/caudex/v4/yT8YeHLjaJvQXlUEYOA8gqCWcynf_cDxXwCLxiixG1c.ttf"
|
2198 |
-
}
|
2199 |
-
},
|
2200 |
-
{
|
2201 |
-
"kind": "webfonts#webfont",
|
2202 |
-
"family": "Cedarville Cursive",
|
2203 |
-
"category": "handwriting",
|
2204 |
-
"variants": [
|
2205 |
-
"regular"
|
2206 |
-
],
|
2207 |
-
"subsets": [
|
2208 |
-
"latin"
|
2209 |
-
],
|
2210 |
-
"version": "v4",
|
2211 |
-
"lastModified": "2014-01-07",
|
2212 |
-
"files": {
|
2213 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cedarvillecursive/v4/cuCe6HrkcqrWTWTUE7dw-41zwq9-z_Lf44CzRAA0d0Y.ttf"
|
2214 |
-
}
|
2215 |
-
},
|
2216 |
-
{
|
2217 |
-
"kind": "webfonts#webfont",
|
2218 |
-
"family": "Ceviche One",
|
2219 |
-
"category": "display",
|
2220 |
-
"variants": [
|
2221 |
-
"regular"
|
2222 |
-
],
|
2223 |
-
"subsets": [
|
2224 |
-
"latin"
|
2225 |
-
],
|
2226 |
-
"version": "v4",
|
2227 |
-
"lastModified": "2014-01-07",
|
2228 |
-
"files": {
|
2229 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cevicheone/v4/WOaXIMBD4VYMy39MsobJhKCWcynf_cDxXwCLxiixG1c.ttf"
|
2230 |
-
}
|
2231 |
-
},
|
2232 |
-
{
|
2233 |
-
"kind": "webfonts#webfont",
|
2234 |
-
"family": "Changa One",
|
2235 |
-
"category": "display",
|
2236 |
-
"variants": [
|
2237 |
-
"regular",
|
2238 |
-
"italic"
|
2239 |
-
],
|
2240 |
-
"subsets": [
|
2241 |
-
"latin"
|
2242 |
-
],
|
2243 |
-
"version": "v7",
|
2244 |
-
"lastModified": "2014-01-07",
|
2245 |
-
"files": {
|
2246 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/changaone/v7/dr4qjce4W3kxFrZRkVD87fesZW2xOQ-xsNqO47m55DA.ttf",
|
2247 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/changaone/v7/wJVQlUs1lAZel-WdTo2U9y3USBnSvpkopQaUR-2r7iU.ttf"
|
2248 |
-
}
|
2249 |
-
},
|
2250 |
-
{
|
2251 |
-
"kind": "webfonts#webfont",
|
2252 |
-
"family": "Chango",
|
2253 |
-
"category": "display",
|
2254 |
-
"variants": [
|
2255 |
-
"regular"
|
2256 |
-
],
|
2257 |
-
"subsets": [
|
2258 |
-
"latin",
|
2259 |
-
"latin-ext"
|
2260 |
-
],
|
2261 |
-
"version": "v3",
|
2262 |
-
"lastModified": "2014-01-07",
|
2263 |
-
"files": {
|
2264 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/chango/v3/3W3AeMMtRTH08t5qLOjBmg.ttf"
|
2265 |
-
}
|
2266 |
-
},
|
2267 |
-
{
|
2268 |
-
"kind": "webfonts#webfont",
|
2269 |
-
"family": "Chau Philomene One",
|
2270 |
-
"category": "sans-serif",
|
2271 |
-
"variants": [
|
2272 |
-
"regular",
|
2273 |
-
"italic"
|
2274 |
-
],
|
2275 |
-
"subsets": [
|
2276 |
-
"latin",
|
2277 |
-
"latin-ext"
|
2278 |
-
],
|
2279 |
-
"version": "v2",
|
2280 |
-
"lastModified": "2014-01-07",
|
2281 |
-
"files": {
|
2282 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/chauphilomeneone/v2/KKc5egCL-a2fFVoOA2x6tBFi5dxgSTdxqnMJgWkBJcg.ttf",
|
2283 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/chauphilomeneone/v2/eJj1PY_iN4KiIuyOvtMHJP6uyLkxyiC4WcYA74sfquE.ttf"
|
2284 |
-
}
|
2285 |
-
},
|
2286 |
-
{
|
2287 |
-
"kind": "webfonts#webfont",
|
2288 |
-
"family": "Chela One",
|
2289 |
-
"category": "display",
|
2290 |
-
"variants": [
|
2291 |
-
"regular"
|
2292 |
-
],
|
2293 |
-
"subsets": [
|
2294 |
-
"latin",
|
2295 |
-
"latin-ext"
|
2296 |
-
],
|
2297 |
-
"version": "v2",
|
2298 |
-
"lastModified": "2014-01-07",
|
2299 |
-
"files": {
|
2300 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/chelaone/v2/h5O0dEnpnIq6jQnWxZybrA.ttf"
|
2301 |
-
}
|
2302 |
-
},
|
2303 |
-
{
|
2304 |
-
"kind": "webfonts#webfont",
|
2305 |
-
"family": "Chelsea Market",
|
2306 |
-
"category": "display",
|
2307 |
-
"variants": [
|
2308 |
-
"regular"
|
2309 |
-
],
|
2310 |
-
"subsets": [
|
2311 |
-
"latin",
|
2312 |
-
"latin-ext"
|
2313 |
-
],
|
2314 |
-
"version": "v2",
|
2315 |
-
"lastModified": "2014-01-07",
|
2316 |
-
"files": {
|
2317 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/chelseamarket/v2/qSdzwh2A4BbNemy78sJLfAAI1i8fIftCBXsBF2v9UMI.ttf"
|
2318 |
-
}
|
2319 |
-
},
|
2320 |
-
{
|
2321 |
-
"kind": "webfonts#webfont",
|
2322 |
-
"family": "Chenla",
|
2323 |
-
"category": "display",
|
2324 |
-
"variants": [
|
2325 |
-
"regular"
|
2326 |
-
],
|
2327 |
-
"subsets": [
|
2328 |
-
"khmer"
|
2329 |
-
],
|
2330 |
-
"version": "v7",
|
2331 |
-
"lastModified": "2014-01-07",
|
2332 |
-
"files": {
|
2333 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/chenla/v7/aLNpdAUDq2MZbWz2U1a16g.ttf"
|
2334 |
-
}
|
2335 |
-
},
|
2336 |
-
{
|
2337 |
-
"kind": "webfonts#webfont",
|
2338 |
-
"family": "Cherry Cream Soda",
|
2339 |
-
"category": "display",
|
2340 |
-
"variants": [
|
2341 |
-
"regular"
|
2342 |
-
],
|
2343 |
-
"subsets": [
|
2344 |
-
"latin"
|
2345 |
-
],
|
2346 |
-
"version": "v4",
|
2347 |
-
"lastModified": "2014-01-07",
|
2348 |
-
"files": {
|
2349 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cherrycreamsoda/v4/OrD-AUnFcZeeKa6F_c0_WxOiHiuAPYA9ry3O1RG2XIU.ttf"
|
2350 |
-
}
|
2351 |
-
},
|
2352 |
-
{
|
2353 |
-
"kind": "webfonts#webfont",
|
2354 |
-
"family": "Cherry Swash",
|
2355 |
-
"category": "display",
|
2356 |
-
"variants": [
|
2357 |
-
"regular",
|
2358 |
-
"700"
|
2359 |
-
],
|
2360 |
-
"subsets": [
|
2361 |
-
"latin",
|
2362 |
-
"latin-ext"
|
2363 |
-
],
|
2364 |
-
"version": "v2",
|
2365 |
-
"lastModified": "2014-01-07",
|
2366 |
-
"files": {
|
2367 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cherryswash/v2/HqOk7C7J1TZ5i3L-ejF0vi3USBnSvpkopQaUR-2r7iU.ttf",
|
2368 |
-
"700": "http://themes.googleusercontent.com/static/fonts/cherryswash/v2/-CfyMyQqfucZPQNB0nvYyED2ttfZwueP-QU272T9-k4.ttf"
|
2369 |
-
}
|
2370 |
-
},
|
2371 |
-
{
|
2372 |
-
"kind": "webfonts#webfont",
|
2373 |
-
"family": "Chewy",
|
2374 |
-
"category": "display",
|
2375 |
-
"variants": [
|
2376 |
-
"regular"
|
2377 |
-
],
|
2378 |
-
"subsets": [
|
2379 |
-
"latin"
|
2380 |
-
],
|
2381 |
-
"version": "v5",
|
2382 |
-
"lastModified": "2014-01-07",
|
2383 |
-
"files": {
|
2384 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/chewy/v5/hcDN5cvQdIu6Bx4mg_TSyw.ttf"
|
2385 |
-
}
|
2386 |
-
},
|
2387 |
-
{
|
2388 |
-
"kind": "webfonts#webfont",
|
2389 |
-
"family": "Chicle",
|
2390 |
-
"category": "display",
|
2391 |
-
"variants": [
|
2392 |
-
"regular"
|
2393 |
-
],
|
2394 |
-
"subsets": [
|
2395 |
-
"latin",
|
2396 |
-
"latin-ext"
|
2397 |
-
],
|
2398 |
-
"version": "v3",
|
2399 |
-
"lastModified": "2014-01-07",
|
2400 |
-
"files": {
|
2401 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/chicle/v3/xg4q57Ut9ZmyFwLp51JLgg.ttf"
|
2402 |
-
}
|
2403 |
-
},
|
2404 |
-
{
|
2405 |
-
"kind": "webfonts#webfont",
|
2406 |
-
"family": "Chivo",
|
2407 |
-
"category": "sans-serif",
|
2408 |
-
"variants": [
|
2409 |
-
"regular",
|
2410 |
-
"italic",
|
2411 |
-
"900",
|
2412 |
-
"900italic"
|
2413 |
-
],
|
2414 |
-
"subsets": [
|
2415 |
-
"latin"
|
2416 |
-
],
|
2417 |
-
"version": "v5",
|
2418 |
-
"lastModified": "2014-01-07",
|
2419 |
-
"files": {
|
2420 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/chivo/v5/L88PEuzS9eRfHRZhAPhZyw.ttf",
|
2421 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/chivo/v5/Oe3-Q-a2kBzPnhHck_baMg.ttf",
|
2422 |
-
"900": "http://themes.googleusercontent.com/static/fonts/chivo/v5/JAdkiWd46QCW4vOsj3dzTA.ttf",
|
2423 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/chivo/v5/LoszYnE86q2wJEOjCigBQ_esZW2xOQ-xsNqO47m55DA.ttf"
|
2424 |
-
}
|
2425 |
-
},
|
2426 |
-
{
|
2427 |
-
"kind": "webfonts#webfont",
|
2428 |
-
"family": "Cinzel",
|
2429 |
-
"category": "serif",
|
2430 |
-
"variants": [
|
2431 |
-
"regular",
|
2432 |
-
"700",
|
2433 |
-
"900"
|
2434 |
-
],
|
2435 |
-
"subsets": [
|
2436 |
-
"latin"
|
2437 |
-
],
|
2438 |
-
"version": "v2",
|
2439 |
-
"lastModified": "2014-01-07",
|
2440 |
-
"files": {
|
2441 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cinzel/v2/GF7dy_Nc-a6EaHYSyGd-EA.ttf",
|
2442 |
-
"700": "http://themes.googleusercontent.com/static/fonts/cinzel/v2/nYcFQ6_3pf_6YDrOFjBR8Q.ttf",
|
2443 |
-
"900": "http://themes.googleusercontent.com/static/fonts/cinzel/v2/FTBj72ozM2cEOSxiVsRb3A.ttf"
|
2444 |
-
}
|
2445 |
-
},
|
2446 |
-
{
|
2447 |
-
"kind": "webfonts#webfont",
|
2448 |
-
"family": "Cinzel Decorative",
|
2449 |
-
"category": "display",
|
2450 |
-
"variants": [
|
2451 |
-
"regular",
|
2452 |
-
"700",
|
2453 |
-
"900"
|
2454 |
-
],
|
2455 |
-
"subsets": [
|
2456 |
-
"latin"
|
2457 |
-
],
|
2458 |
-
"version": "v2",
|
2459 |
-
"lastModified": "2014-01-07",
|
2460 |
-
"files": {
|
2461 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cinzeldecorative/v2/fmgK7oaJJIXAkhd9798yQgT5USbJx2F82lQbogPy2bY.ttf",
|
2462 |
-
"700": "http://themes.googleusercontent.com/static/fonts/cinzeldecorative/v2/pXhIVnhFtL_B9Vb1wq2F95-YYVDmZkJErg0zgx9XuZI.ttf",
|
2463 |
-
"900": "http://themes.googleusercontent.com/static/fonts/cinzeldecorative/v2/pXhIVnhFtL_B9Vb1wq2F97Khqbv0zQZa0g-9HOXAalU.ttf"
|
2464 |
-
}
|
2465 |
-
},
|
2466 |
-
{
|
2467 |
-
"kind": "webfonts#webfont",
|
2468 |
-
"family": "Clicker Script",
|
2469 |
-
"category": "handwriting",
|
2470 |
-
"variants": [
|
2471 |
-
"regular"
|
2472 |
-
],
|
2473 |
-
"subsets": [
|
2474 |
-
"latin",
|
2475 |
-
"latin-ext"
|
2476 |
-
],
|
2477 |
-
"version": "v2",
|
2478 |
-
"lastModified": "2014-01-07",
|
2479 |
-
"files": {
|
2480 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/clickerscript/v2/Zupmk8XwADjufGxWB9KThBnpV0hQCek3EmWnCPrvGRM.ttf"
|
2481 |
-
}
|
2482 |
-
},
|
2483 |
-
{
|
2484 |
-
"kind": "webfonts#webfont",
|
2485 |
-
"family": "Coda",
|
2486 |
-
"category": "display",
|
2487 |
-
"variants": [
|
2488 |
-
"regular",
|
2489 |
-
"800"
|
2490 |
-
],
|
2491 |
-
"subsets": [
|
2492 |
-
"latin"
|
2493 |
-
],
|
2494 |
-
"version": "v8",
|
2495 |
-
"lastModified": "2014-01-07",
|
2496 |
-
"files": {
|
2497 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/coda/v8/yHDvulhg-P-p2KRgRrnUYw.ttf",
|
2498 |
-
"800": "http://themes.googleusercontent.com/static/fonts/coda/v8/6ZIw0sbALY0KTMWllZB3hQ.ttf"
|
2499 |
-
}
|
2500 |
-
},
|
2501 |
-
{
|
2502 |
-
"kind": "webfonts#webfont",
|
2503 |
-
"family": "Coda Caption",
|
2504 |
-
"category": "sans-serif",
|
2505 |
-
"variants": [
|
2506 |
-
"800"
|
2507 |
-
],
|
2508 |
-
"subsets": [
|
2509 |
-
"latin"
|
2510 |
-
],
|
2511 |
-
"version": "v6",
|
2512 |
-
"lastModified": "2014-01-07",
|
2513 |
-
"files": {
|
2514 |
-
"800": "http://themes.googleusercontent.com/static/fonts/codacaption/v6/YDl6urZh-DUFhiMBTgAnz_qsay_1ZmRGmC8pVRdIfAg.ttf"
|
2515 |
-
}
|
2516 |
-
},
|
2517 |
-
{
|
2518 |
-
"kind": "webfonts#webfont",
|
2519 |
-
"family": "Codystar",
|
2520 |
-
"category": "display",
|
2521 |
-
"variants": [
|
2522 |
-
"300",
|
2523 |
-
"regular"
|
2524 |
-
],
|
2525 |
-
"subsets": [
|
2526 |
-
"latin",
|
2527 |
-
"latin-ext"
|
2528 |
-
],
|
2529 |
-
"version": "v2",
|
2530 |
-
"lastModified": "2014-01-07",
|
2531 |
-
"files": {
|
2532 |
-
"300": "http://themes.googleusercontent.com/static/fonts/codystar/v2/EVaUzfJkcb8Zqx9kzQLXqqCWcynf_cDxXwCLxiixG1c.ttf",
|
2533 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/codystar/v2/EN-CPFKYowSI7SuR7-0cZA.ttf"
|
2534 |
-
}
|
2535 |
-
},
|
2536 |
-
{
|
2537 |
-
"kind": "webfonts#webfont",
|
2538 |
-
"family": "Combo",
|
2539 |
-
"category": "display",
|
2540 |
-
"variants": [
|
2541 |
-
"regular"
|
2542 |
-
],
|
2543 |
-
"subsets": [
|
2544 |
-
"latin",
|
2545 |
-
"latin-ext"
|
2546 |
-
],
|
2547 |
-
"version": "v2",
|
2548 |
-
"lastModified": "2014-01-07",
|
2549 |
-
"files": {
|
2550 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/combo/v2/Nab98KjR3JZSSPGtzLyXNw.ttf"
|
2551 |
-
}
|
2552 |
-
},
|
2553 |
-
{
|
2554 |
-
"kind": "webfonts#webfont",
|
2555 |
-
"family": "Comfortaa",
|
2556 |
-
"category": "display",
|
2557 |
-
"variants": [
|
2558 |
-
"300",
|
2559 |
-
"regular",
|
2560 |
-
"700"
|
2561 |
-
],
|
2562 |
-
"subsets": [
|
2563 |
-
"latin",
|
2564 |
-
"greek",
|
2565 |
-
"cyrillic",
|
2566 |
-
"cyrillic-ext",
|
2567 |
-
"latin-ext"
|
2568 |
-
],
|
2569 |
-
"version": "v5",
|
2570 |
-
"lastModified": "2014-01-07",
|
2571 |
-
"files": {
|
2572 |
-
"300": "http://themes.googleusercontent.com/static/fonts/comfortaa/v5/r_tUZNl0G8xCoOmp_JkSCi3USBnSvpkopQaUR-2r7iU.ttf",
|
2573 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/comfortaa/v5/lZx6C1VViPgSOhCBUP7hXA.ttf",
|
2574 |
-
"700": "http://themes.googleusercontent.com/static/fonts/comfortaa/v5/fND5XPYKrF2tQDwwfWZJIy3USBnSvpkopQaUR-2r7iU.ttf"
|
2575 |
-
}
|
2576 |
-
},
|
2577 |
-
{
|
2578 |
-
"kind": "webfonts#webfont",
|
2579 |
-
"family": "Coming Soon",
|
2580 |
-
"category": "handwriting",
|
2581 |
-
"variants": [
|
2582 |
-
"regular"
|
2583 |
-
],
|
2584 |
-
"subsets": [
|
2585 |
-
"latin"
|
2586 |
-
],
|
2587 |
-
"version": "v4",
|
2588 |
-
"lastModified": "2014-01-07",
|
2589 |
-
"files": {
|
2590 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/comingsoon/v4/Yz2z3IAe2HSQAOWsSG8COKCWcynf_cDxXwCLxiixG1c.ttf"
|
2591 |
-
}
|
2592 |
-
},
|
2593 |
-
{
|
2594 |
-
"kind": "webfonts#webfont",
|
2595 |
-
"family": "Concert One",
|
2596 |
-
"category": "display",
|
2597 |
-
"variants": [
|
2598 |
-
"regular"
|
2599 |
-
],
|
2600 |
-
"subsets": [
|
2601 |
-
"latin",
|
2602 |
-
"latin-ext"
|
2603 |
-
],
|
2604 |
-
"version": "v5",
|
2605 |
-
"lastModified": "2014-01-07",
|
2606 |
-
"files": {
|
2607 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/concertone/v5/N5IWCIGhUNdPZn_efTxKN6CWcynf_cDxXwCLxiixG1c.ttf"
|
2608 |
-
}
|
2609 |
-
},
|
2610 |
-
{
|
2611 |
-
"kind": "webfonts#webfont",
|
2612 |
-
"family": "Condiment",
|
2613 |
-
"category": "handwriting",
|
2614 |
-
"variants": [
|
2615 |
-
"regular"
|
2616 |
-
],
|
2617 |
-
"subsets": [
|
2618 |
-
"latin",
|
2619 |
-
"latin-ext"
|
2620 |
-
],
|
2621 |
-
"version": "v2",
|
2622 |
-
"lastModified": "2014-01-07",
|
2623 |
-
"files": {
|
2624 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/condiment/v2/CstmdiPpgFSV0FUNL5LrJA.ttf"
|
2625 |
-
}
|
2626 |
-
},
|
2627 |
-
{
|
2628 |
-
"kind": "webfonts#webfont",
|
2629 |
-
"family": "Content",
|
2630 |
-
"category": "display",
|
2631 |
-
"variants": [
|
2632 |
-
"regular",
|
2633 |
-
"700"
|
2634 |
-
],
|
2635 |
-
"subsets": [
|
2636 |
-
"khmer"
|
2637 |
-
],
|
2638 |
-
"version": "v6",
|
2639 |
-
"lastModified": "2014-01-07",
|
2640 |
-
"files": {
|
2641 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/content/v6/l8qaLjygvOkDEU2G6-cjfQ.ttf",
|
2642 |
-
"700": "http://themes.googleusercontent.com/static/fonts/content/v6/7PivP8Zvs2qn6F6aNbSQe_esZW2xOQ-xsNqO47m55DA.ttf"
|
2643 |
-
}
|
2644 |
-
},
|
2645 |
-
{
|
2646 |
-
"kind": "webfonts#webfont",
|
2647 |
-
"family": "Contrail One",
|
2648 |
-
"category": "display",
|
2649 |
-
"variants": [
|
2650 |
-
"regular"
|
2651 |
-
],
|
2652 |
-
"subsets": [
|
2653 |
-
"latin"
|
2654 |
-
],
|
2655 |
-
"version": "v4",
|
2656 |
-
"lastModified": "2014-01-07",
|
2657 |
-
"files": {
|
2658 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/contrailone/v4/b41KxjgiyqX-hkggANDU6C3USBnSvpkopQaUR-2r7iU.ttf"
|
2659 |
-
}
|
2660 |
-
},
|
2661 |
-
{
|
2662 |
-
"kind": "webfonts#webfont",
|
2663 |
-
"family": "Convergence",
|
2664 |
-
"category": "sans-serif",
|
2665 |
-
"variants": [
|
2666 |
-
"regular"
|
2667 |
-
],
|
2668 |
-
"subsets": [
|
2669 |
-
"latin"
|
2670 |
-
],
|
2671 |
-
"version": "v3",
|
2672 |
-
"lastModified": "2014-01-07",
|
2673 |
-
"files": {
|
2674 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/convergence/v3/eykrGz1NN_YpQmkAZjW-qKCWcynf_cDxXwCLxiixG1c.ttf"
|
2675 |
-
}
|
2676 |
-
},
|
2677 |
-
{
|
2678 |
-
"kind": "webfonts#webfont",
|
2679 |
-
"family": "Cookie",
|
2680 |
-
"category": "handwriting",
|
2681 |
-
"variants": [
|
2682 |
-
"regular"
|
2683 |
-
],
|
2684 |
-
"subsets": [
|
2685 |
-
"latin"
|
2686 |
-
],
|
2687 |
-
"version": "v5",
|
2688 |
-
"lastModified": "2014-01-07",
|
2689 |
-
"files": {
|
2690 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cookie/v5/HxeUC62y_YdDbiFlze357A.ttf"
|
2691 |
-
}
|
2692 |
-
},
|
2693 |
-
{
|
2694 |
-
"kind": "webfonts#webfont",
|
2695 |
-
"family": "Copse",
|
2696 |
-
"category": "serif",
|
2697 |
-
"variants": [
|
2698 |
-
"regular"
|
2699 |
-
],
|
2700 |
-
"subsets": [
|
2701 |
-
"latin"
|
2702 |
-
],
|
2703 |
-
"version": "v4",
|
2704 |
-
"lastModified": "2014-01-07",
|
2705 |
-
"files": {
|
2706 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/copse/v4/wikLrtPGjZDvZ5w2i5HLWg.ttf"
|
2707 |
-
}
|
2708 |
-
},
|
2709 |
-
{
|
2710 |
-
"kind": "webfonts#webfont",
|
2711 |
-
"family": "Corben",
|
2712 |
-
"category": "display",
|
2713 |
-
"variants": [
|
2714 |
-
"regular",
|
2715 |
-
"700"
|
2716 |
-
],
|
2717 |
-
"subsets": [
|
2718 |
-
"latin"
|
2719 |
-
],
|
2720 |
-
"version": "v6",
|
2721 |
-
"lastModified": "2014-01-07",
|
2722 |
-
"files": {
|
2723 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/corben/v6/tTysMZkt-j8Y5yhkgsoajQ.ttf",
|
2724 |
-
"700": "http://themes.googleusercontent.com/static/fonts/corben/v6/lirJaFSQWdGQuV--fksg5g.ttf"
|
2725 |
-
}
|
2726 |
-
},
|
2727 |
-
{
|
2728 |
-
"kind": "webfonts#webfont",
|
2729 |
-
"family": "Courgette",
|
2730 |
-
"category": "handwriting",
|
2731 |
-
"variants": [
|
2732 |
-
"regular"
|
2733 |
-
],
|
2734 |
-
"subsets": [
|
2735 |
-
"latin",
|
2736 |
-
"latin-ext"
|
2737 |
-
],
|
2738 |
-
"version": "v2",
|
2739 |
-
"lastModified": "2014-01-07",
|
2740 |
-
"files": {
|
2741 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/courgette/v2/2YO0EYtyE9HUPLZprahpZA.ttf"
|
2742 |
-
}
|
2743 |
-
},
|
2744 |
-
{
|
2745 |
-
"kind": "webfonts#webfont",
|
2746 |
-
"family": "Cousine",
|
2747 |
-
|
2748 |
-
"category": "monospace",
|
2749 |
-
"variants": [
|
2750 |
-
"regular",
|
2751 |
-
"italic",
|
2752 |
-
"700",
|
2753 |
-
"700italic"
|
2754 |
-
],
|
2755 |
-
"subsets": [
|
2756 |
-
"latin",
|
2757 |
-
"greek",
|
2758 |
-
"cyrillic",
|
2759 |
-
"vietnamese",
|
2760 |
-
"cyrillic-ext",
|
2761 |
-
"latin-ext",
|
2762 |
-
"greek-ext"
|
2763 |
-
],
|
2764 |
-
"version": "v7",
|
2765 |
-
"lastModified": "2014-03-17",
|
2766 |
-
"files": {
|
2767 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cousine/v7/GYX4bPXObJNJo63QJEUnLg.ttf",
|
2768 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/cousine/v7/1WtIuajLoo8vjVwsrZ3eOg.ttf",
|
2769 |
-
"700": "http://themes.googleusercontent.com/static/fonts/cousine/v7/FXEOnNUcCzhdtoBxiq-lovesZW2xOQ-xsNqO47m55DA.ttf",
|
2770 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/cousine/v7/y_AZ5Sz-FwL1lux2xLSTZS3USBnSvpkopQaUR-2r7iU.ttf"
|
2771 |
-
}
|
2772 |
-
},
|
2773 |
-
{
|
2774 |
-
"kind": "webfonts#webfont",
|
2775 |
-
"family": "Coustard",
|
2776 |
-
"category": "serif",
|
2777 |
-
"variants": [
|
2778 |
-
"regular",
|
2779 |
-
"900"
|
2780 |
-
],
|
2781 |
-
"subsets": [
|
2782 |
-
"latin"
|
2783 |
-
],
|
2784 |
-
"version": "v4",
|
2785 |
-
"lastModified": "2014-01-07",
|
2786 |
-
"files": {
|
2787 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/coustard/v4/iO2Rs5PmqAEAXoU3SkMVBg.ttf",
|
2788 |
-
"900": "http://themes.googleusercontent.com/static/fonts/coustard/v4/W02OCWO6OfMUHz6aVyegQ6CWcynf_cDxXwCLxiixG1c.ttf"
|
2789 |
-
}
|
2790 |
-
},
|
2791 |
-
{
|
2792 |
-
"kind": "webfonts#webfont",
|
2793 |
-
"family": "Covered By Your Grace",
|
2794 |
-
"category": "handwriting",
|
2795 |
-
"variants": [
|
2796 |
-
"regular"
|
2797 |
-
],
|
2798 |
-
"subsets": [
|
2799 |
-
"latin"
|
2800 |
-
],
|
2801 |
-
"version": "v4",
|
2802 |
-
"lastModified": "2014-01-07",
|
2803 |
-
"files": {
|
2804 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/coveredbyyourgrace/v4/6ozZp4BPlrbDRWPe3EBGA6CVUMdvnk-GcAiZQrX9Gek.ttf"
|
2805 |
-
}
|
2806 |
-
},
|
2807 |
-
{
|
2808 |
-
"kind": "webfonts#webfont",
|
2809 |
-
"family": "Crafty Girls",
|
2810 |
-
"category": "handwriting",
|
2811 |
-
"variants": [
|
2812 |
-
"regular"
|
2813 |
-
],
|
2814 |
-
"subsets": [
|
2815 |
-
"latin"
|
2816 |
-
],
|
2817 |
-
"version": "v3",
|
2818 |
-
"lastModified": "2014-01-07",
|
2819 |
-
"files": {
|
2820 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/craftygirls/v3/0Sv8UWFFdhQmesHL32H8oy3USBnSvpkopQaUR-2r7iU.ttf"
|
2821 |
-
}
|
2822 |
-
},
|
2823 |
-
{
|
2824 |
-
"kind": "webfonts#webfont",
|
2825 |
-
"family": "Creepster",
|
2826 |
-
"category": "display",
|
2827 |
-
"variants": [
|
2828 |
-
"regular"
|
2829 |
-
],
|
2830 |
-
"subsets": [
|
2831 |
-
"latin"
|
2832 |
-
],
|
2833 |
-
"version": "v3",
|
2834 |
-
"lastModified": "2014-01-07",
|
2835 |
-
"files": {
|
2836 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/creepster/v3/0vdr5kWJ6aJlOg5JvxnXzQ.ttf"
|
2837 |
-
}
|
2838 |
-
},
|
2839 |
-
{
|
2840 |
-
"kind": "webfonts#webfont",
|
2841 |
-
"family": "Crete Round",
|
2842 |
-
"category": "serif",
|
2843 |
-
"variants": [
|
2844 |
-
"regular",
|
2845 |
-
"italic"
|
2846 |
-
],
|
2847 |
-
"subsets": [
|
2848 |
-
"latin",
|
2849 |
-
"latin-ext"
|
2850 |
-
],
|
2851 |
-
"version": "v3",
|
2852 |
-
"lastModified": "2014-01-07",
|
2853 |
-
"files": {
|
2854 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/creteround/v3/B8EwN421qqOCCT8vOH4wJ6CWcynf_cDxXwCLxiixG1c.ttf",
|
2855 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/creteround/v3/5xAt7XK2vkUdjhGtt98unUeOrDcLawS7-ssYqLr2Xp4.ttf"
|
2856 |
-
}
|
2857 |
-
},
|
2858 |
-
{
|
2859 |
-
"kind": "webfonts#webfont",
|
2860 |
-
"family": "Crimson Text",
|
2861 |
-
"category": "serif",
|
2862 |
-
"variants": [
|
2863 |
-
"regular",
|
2864 |
-
"italic",
|
2865 |
-
"600",
|
2866 |
-
"600italic",
|
2867 |
-
"700",
|
2868 |
-
"700italic"
|
2869 |
-
],
|
2870 |
-
"subsets": [
|
2871 |
-
"latin"
|
2872 |
-
],
|
2873 |
-
"version": "v4",
|
2874 |
-
"lastModified": "2014-01-07",
|
2875 |
-
"files": {
|
2876 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/crimsontext/v4/3IFMwfRa07i-auYR-B-zNS3USBnSvpkopQaUR-2r7iU.ttf",
|
2877 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/crimsontext/v4/a5QZnvmn5amyNI-t2BMkWPMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
2878 |
-
"600": "http://themes.googleusercontent.com/static/fonts/crimsontext/v4/rEy5tGc5HdXy56Xvd4f3I2v8CylhIUtwUiYO7Z2wXbE.ttf",
|
2879 |
-
"600italic": "http://themes.googleusercontent.com/static/fonts/crimsontext/v4/4j4TR-EfnvCt43InYpUNDIR-5-urNOGAobhAyctHvW8.ttf",
|
2880 |
-
"700": "http://themes.googleusercontent.com/static/fonts/crimsontext/v4/rEy5tGc5HdXy56Xvd4f3I0D2ttfZwueP-QU272T9-k4.ttf",
|
2881 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/crimsontext/v4/4j4TR-EfnvCt43InYpUNDPAs9-1nE9qOqhChW0m4nDE.ttf"
|
2882 |
-
}
|
2883 |
-
},
|
2884 |
-
{
|
2885 |
-
"kind": "webfonts#webfont",
|
2886 |
-
"family": "Croissant One",
|
2887 |
-
"category": "display",
|
2888 |
-
"variants": [
|
2889 |
-
"regular"
|
2890 |
-
],
|
2891 |
-
"subsets": [
|
2892 |
-
"latin",
|
2893 |
-
"latin-ext"
|
2894 |
-
],
|
2895 |
-
"version": "v2",
|
2896 |
-
"lastModified": "2014-01-07",
|
2897 |
-
"files": {
|
2898 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/croissantone/v2/mPjsOObnC77fp1cvZlOfIYjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
2899 |
-
}
|
2900 |
-
},
|
2901 |
-
{
|
2902 |
-
"kind": "webfonts#webfont",
|
2903 |
-
"family": "Crushed",
|
2904 |
-
"category": "display",
|
2905 |
-
"variants": [
|
2906 |
-
"regular"
|
2907 |
-
],
|
2908 |
-
"subsets": [
|
2909 |
-
"latin"
|
2910 |
-
],
|
2911 |
-
"version": "v4",
|
2912 |
-
"lastModified": "2014-01-07",
|
2913 |
-
"files": {
|
2914 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/crushed/v4/aHwSejs3Kt0Lg95u7j32jA.ttf"
|
2915 |
-
}
|
2916 |
-
},
|
2917 |
-
{
|
2918 |
-
"kind": "webfonts#webfont",
|
2919 |
-
"family": "Cuprum",
|
2920 |
-
"category": "sans-serif",
|
2921 |
-
"variants": [
|
2922 |
-
"regular",
|
2923 |
-
"italic",
|
2924 |
-
"700",
|
2925 |
-
"700italic"
|
2926 |
-
],
|
2927 |
-
"subsets": [
|
2928 |
-
"latin",
|
2929 |
-
"cyrillic",
|
2930 |
-
"latin-ext"
|
2931 |
-
],
|
2932 |
-
"version": "v5",
|
2933 |
-
"lastModified": "2014-01-07",
|
2934 |
-
"files": {
|
2935 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cuprum/v5/JgXs0F_UiaEdAS74msmFNg.ttf",
|
2936 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/cuprum/v5/cLEz0KV6OxInnktSzpk58g.ttf",
|
2937 |
-
"700": "http://themes.googleusercontent.com/static/fonts/cuprum/v5/6tl3_FkDeXSD72oEHuJh4w.ttf",
|
2938 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/cuprum/v5/bnkXaBfoYvaJ75axRPSwVKCWcynf_cDxXwCLxiixG1c.ttf"
|
2939 |
-
}
|
2940 |
-
},
|
2941 |
-
{
|
2942 |
-
"kind": "webfonts#webfont",
|
2943 |
-
"family": "Cutive",
|
2944 |
-
"category": "serif",
|
2945 |
-
"variants": [
|
2946 |
-
"regular"
|
2947 |
-
],
|
2948 |
-
"subsets": [
|
2949 |
-
"latin",
|
2950 |
-
"latin-ext"
|
2951 |
-
],
|
2952 |
-
"version": "v5",
|
2953 |
-
"lastModified": "2014-01-07",
|
2954 |
-
"files": {
|
2955 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cutive/v5/G2bW-ImyOCwKxBkLyz39YQ.ttf"
|
2956 |
-
}
|
2957 |
-
},
|
2958 |
-
{
|
2959 |
-
"kind": "webfonts#webfont",
|
2960 |
-
"family": "Cutive Mono",
|
2961 |
-
"category": "monospace",
|
2962 |
-
"variants": [
|
2963 |
-
"regular"
|
2964 |
-
],
|
2965 |
-
"subsets": [
|
2966 |
-
"latin",
|
2967 |
-
"latin-ext"
|
2968 |
-
],
|
2969 |
-
"version": "v2",
|
2970 |
-
"lastModified": "2014-03-18",
|
2971 |
-
"files": {
|
2972 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/cutivemono/v2/ncWQtFVKcSs8OW798v30k6CWcynf_cDxXwCLxiixG1c.ttf"
|
2973 |
-
}
|
2974 |
-
},
|
2975 |
-
{
|
2976 |
-
"kind": "webfonts#webfont",
|
2977 |
-
"family": "Damion",
|
2978 |
-
"category": "handwriting",
|
2979 |
-
"variants": [
|
2980 |
-
"regular"
|
2981 |
-
],
|
2982 |
-
"subsets": [
|
2983 |
-
"latin"
|
2984 |
-
],
|
2985 |
-
"version": "v4",
|
2986 |
-
"lastModified": "2014-01-07",
|
2987 |
-
"files": {
|
2988 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/damion/v4/13XtECwKxhD_VrOqXL4SiA.ttf"
|
2989 |
-
}
|
2990 |
-
},
|
2991 |
-
{
|
2992 |
-
"kind": "webfonts#webfont",
|
2993 |
-
"family": "Dancing Script",
|
2994 |
-
"category": "handwriting",
|
2995 |
-
"variants": [
|
2996 |
-
"regular",
|
2997 |
-
"700"
|
2998 |
-
],
|
2999 |
-
"subsets": [
|
3000 |
-
"latin"
|
3001 |
-
],
|
3002 |
-
"version": "v4",
|
3003 |
-
"lastModified": "2014-01-07",
|
3004 |
-
"files": {
|
3005 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/dancingscript/v4/DK0eTGXiZjN6yA8zAEyM2RnpV0hQCek3EmWnCPrvGRM.ttf",
|
3006 |
-
"700": "http://themes.googleusercontent.com/static/fonts/dancingscript/v4/KGBfwabt0ZRLA5W1ywjowb_dAmXiKjTPGCuO6G2MbfA.ttf"
|
3007 |
-
}
|
3008 |
-
},
|
3009 |
-
{
|
3010 |
-
"kind": "webfonts#webfont",
|
3011 |
-
"family": "Dangrek",
|
3012 |
-
"category": "display",
|
3013 |
-
"variants": [
|
3014 |
-
"regular"
|
3015 |
-
],
|
3016 |
-
"subsets": [
|
3017 |
-
"khmer"
|
3018 |
-
],
|
3019 |
-
"version": "v6",
|
3020 |
-
"lastModified": "2014-01-07",
|
3021 |
-
"files": {
|
3022 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/dangrek/v6/LOaFhBT-EHNxZjV8DAW_ew.ttf"
|
3023 |
-
}
|
3024 |
-
},
|
3025 |
-
{
|
3026 |
-
"kind": "webfonts#webfont",
|
3027 |
-
"family": "Dawning of a New Day",
|
3028 |
-
"category": "handwriting",
|
3029 |
-
"variants": [
|
3030 |
-
"regular"
|
3031 |
-
],
|
3032 |
-
"subsets": [
|
3033 |
-
"latin"
|
3034 |
-
],
|
3035 |
-
"version": "v5",
|
3036 |
-
"lastModified": "2014-01-07",
|
3037 |
-
"files": {
|
3038 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/dawningofanewday/v5/JiDsRhiKZt8uz3NJ5xA06gXLnohmOYWQZqo_sW8GLTk.ttf"
|
3039 |
-
}
|
3040 |
-
},
|
3041 |
-
{
|
3042 |
-
"kind": "webfonts#webfont",
|
3043 |
-
"family": "Days One",
|
3044 |
-
"category": "sans-serif",
|
3045 |
-
"variants": [
|
3046 |
-
"regular"
|
3047 |
-
],
|
3048 |
-
"subsets": [
|
3049 |
-
"latin"
|
3050 |
-
],
|
3051 |
-
"version": "v4",
|
3052 |
-
"lastModified": "2014-01-07",
|
3053 |
-
"files": {
|
3054 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/daysone/v4/kzwZjNhc1iabMsrc_hKBIA.ttf"
|
3055 |
-
}
|
3056 |
-
},
|
3057 |
-
{
|
3058 |
-
"kind": "webfonts#webfont",
|
3059 |
-
"family": "Delius",
|
3060 |
-
"category": "handwriting",
|
3061 |
-
"variants": [
|
3062 |
-
"regular"
|
3063 |
-
],
|
3064 |
-
"subsets": [
|
3065 |
-
"latin"
|
3066 |
-
],
|
3067 |
-
"version": "v4",
|
3068 |
-
"lastModified": "2014-01-07",
|
3069 |
-
"files": {
|
3070 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/delius/v4/TQA163qafki2-gV-B6F_ag.ttf"
|
3071 |
-
}
|
3072 |
-
},
|
3073 |
-
{
|
3074 |
-
"kind": "webfonts#webfont",
|
3075 |
-
"family": "Delius Swash Caps",
|
3076 |
-
"category": "handwriting",
|
3077 |
-
"variants": [
|
3078 |
-
"regular"
|
3079 |
-
],
|
3080 |
-
"subsets": [
|
3081 |
-
"latin"
|
3082 |
-
],
|
3083 |
-
"version": "v6",
|
3084 |
-
"lastModified": "2014-01-07",
|
3085 |
-
"files": {
|
3086 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/deliusswashcaps/v6/uXyrEUnoWApxIOICunRq7yIrxb5zDVgU2N3VzXm7zq4.ttf"
|
3087 |
-
}
|
3088 |
-
},
|
3089 |
-
{
|
3090 |
-
"kind": "webfonts#webfont",
|
3091 |
-
"family": "Delius Unicase",
|
3092 |
-
"category": "handwriting",
|
3093 |
-
"variants": [
|
3094 |
-
"regular",
|
3095 |
-
"700"
|
3096 |
-
],
|
3097 |
-
"subsets": [
|
3098 |
-
"latin"
|
3099 |
-
],
|
3100 |
-
"version": "v7",
|
3101 |
-
"lastModified": "2014-01-07",
|
3102 |
-
"files": {
|
3103 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/deliusunicase/v7/b2sKujV3Q48RV2PQ0k1vqu6rPKfVZo7L2bERcf0BDns.ttf",
|
3104 |
-
"700": "http://themes.googleusercontent.com/static/fonts/deliusunicase/v7/7FTMTITcb4dxUp99FAdTqNy5weKXdcrx-wE0cgECMq8.ttf"
|
3105 |
-
}
|
3106 |
-
},
|
3107 |
-
{
|
3108 |
-
"kind": "webfonts#webfont",
|
3109 |
-
"family": "Della Respira",
|
3110 |
-
"category": "serif",
|
3111 |
-
"variants": [
|
3112 |
-
"regular"
|
3113 |
-
],
|
3114 |
-
"subsets": [
|
3115 |
-
"latin"
|
3116 |
-
],
|
3117 |
-
"version": "v2",
|
3118 |
-
"lastModified": "2014-01-07",
|
3119 |
-
"files": {
|
3120 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/dellarespira/v2/F4E6Lo_IZ6L9AJCcbqtDVeDcg5akpSnIcsPhLOFv7l8.ttf"
|
3121 |
-
}
|
3122 |
-
},
|
3123 |
-
{
|
3124 |
-
"kind": "webfonts#webfont",
|
3125 |
-
"family": "Denk One",
|
3126 |
-
"category": "sans-serif",
|
3127 |
-
"variants": [
|
3128 |
-
"regular"
|
3129 |
-
],
|
3130 |
-
"subsets": [
|
3131 |
-
"latin",
|
3132 |
-
"latin-ext"
|
3133 |
-
],
|
3134 |
-
"version": "v2",
|
3135 |
-
"lastModified": "2014-01-07",
|
3136 |
-
"files": {
|
3137 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/denkone/v2/TdXOeA4eA_hEx4W8Sh9wPw.ttf"
|
3138 |
-
}
|
3139 |
-
},
|
3140 |
-
{
|
3141 |
-
"kind": "webfonts#webfont",
|
3142 |
-
"family": "Devonshire",
|
3143 |
-
"category": "handwriting",
|
3144 |
-
"variants": [
|
3145 |
-
"regular"
|
3146 |
-
],
|
3147 |
-
"subsets": [
|
3148 |
-
"latin",
|
3149 |
-
"latin-ext"
|
3150 |
-
],
|
3151 |
-
"version": "v3",
|
3152 |
-
"lastModified": "2014-01-07",
|
3153 |
-
"files": {
|
3154 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/devonshire/v3/I3ct_2t12SYizP8ZC-KFi_esZW2xOQ-xsNqO47m55DA.ttf"
|
3155 |
-
}
|
3156 |
-
},
|
3157 |
-
{
|
3158 |
-
"kind": "webfonts#webfont",
|
3159 |
-
"family": "Didact Gothic",
|
3160 |
-
"category": "sans-serif",
|
3161 |
-
"variants": [
|
3162 |
-
"regular"
|
3163 |
-
],
|
3164 |
-
"subsets": [
|
3165 |
-
"latin",
|
3166 |
-
"greek",
|
3167 |
-
"cyrillic",
|
3168 |
-
"cyrillic-ext",
|
3169 |
-
"latin-ext",
|
3170 |
-
"greek-ext"
|
3171 |
-
],
|
3172 |
-
"version": "v5",
|
3173 |
-
"lastModified": "2014-01-07",
|
3174 |
-
"files": {
|
3175 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/didactgothic/v5/v8_72sD3DYMKyM0dn3LtWotBLojGU5Qdl8-5NL4v70w.ttf"
|
3176 |
-
}
|
3177 |
-
},
|
3178 |
-
{
|
3179 |
-
"kind": "webfonts#webfont",
|
3180 |
-
"family": "Diplomata",
|
3181 |
-
"category": "display",
|
3182 |
-
"variants": [
|
3183 |
-
"regular"
|
3184 |
-
],
|
3185 |
-
"subsets": [
|
3186 |
-
"latin",
|
3187 |
-
"latin-ext"
|
3188 |
-
],
|
3189 |
-
"version": "v4",
|
3190 |
-
"lastModified": "2014-03-27",
|
3191 |
-
"files": {
|
3192 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/diplomata/v4/u-ByBiKgN6rTMA36H3kcKg.ttf"
|
3193 |
-
}
|
3194 |
-
},
|
3195 |
-
{
|
3196 |
-
"kind": "webfonts#webfont",
|
3197 |
-
"family": "Diplomata SC",
|
3198 |
-
"category": "display",
|
3199 |
-
"variants": [
|
3200 |
-
"regular"
|
3201 |
-
],
|
3202 |
-
"subsets": [
|
3203 |
-
"latin",
|
3204 |
-
"latin-ext"
|
3205 |
-
],
|
3206 |
-
"version": "v3",
|
3207 |
-
"lastModified": "2014-01-07",
|
3208 |
-
"files": {
|
3209 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/diplomatasc/v3/JdVwAwfE1a_pahXjk5qpNi3USBnSvpkopQaUR-2r7iU.ttf"
|
3210 |
-
}
|
3211 |
-
},
|
3212 |
-
{
|
3213 |
-
"kind": "webfonts#webfont",
|
3214 |
-
"family": "Domine",
|
3215 |
-
"category": "serif",
|
3216 |
-
"variants": [
|
3217 |
-
"regular",
|
3218 |
-
"700"
|
3219 |
-
],
|
3220 |
-
"subsets": [
|
3221 |
-
"latin",
|
3222 |
-
"latin-ext"
|
3223 |
-
],
|
3224 |
-
"version": "v2",
|
3225 |
-
"lastModified": "2014-01-07",
|
3226 |
-
"files": {
|
3227 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/domine/v2/wfVIgamVFjMNQAEWurCiHA.ttf",
|
3228 |
-
"700": "http://themes.googleusercontent.com/static/fonts/domine/v2/phBcG1ZbQFxUIt18hPVxnw.ttf"
|
3229 |
-
}
|
3230 |
-
},
|
3231 |
-
{
|
3232 |
-
"kind": "webfonts#webfont",
|
3233 |
-
"family": "Donegal One",
|
3234 |
-
"category": "serif",
|
3235 |
-
"variants": [
|
3236 |
-
"regular"
|
3237 |
-
],
|
3238 |
-
"subsets": [
|
3239 |
-
"latin",
|
3240 |
-
"latin-ext"
|
3241 |
-
],
|
3242 |
-
"version": "v2",
|
3243 |
-
"lastModified": "2014-01-07",
|
3244 |
-
"files": {
|
3245 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/donegalone/v2/6kN4-fDxz7T9s5U61HwfF6CWcynf_cDxXwCLxiixG1c.ttf"
|
3246 |
-
}
|
3247 |
-
},
|
3248 |
-
{
|
3249 |
-
"kind": "webfonts#webfont",
|
3250 |
-
"family": "Doppio One",
|
3251 |
-
"category": "sans-serif",
|
3252 |
-
"variants": [
|
3253 |
-
"regular"
|
3254 |
-
],
|
3255 |
-
"subsets": [
|
3256 |
-
"latin",
|
3257 |
-
"latin-ext"
|
3258 |
-
],
|
3259 |
-
"version": "v2",
|
3260 |
-
"lastModified": "2014-01-07",
|
3261 |
-
"files": {
|
3262 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/doppioone/v2/WHZ3HJQotpk_4aSMNBo_t_esZW2xOQ-xsNqO47m55DA.ttf"
|
3263 |
-
}
|
3264 |
-
},
|
3265 |
-
{
|
3266 |
-
"kind": "webfonts#webfont",
|
3267 |
-
"family": "Dorsa",
|
3268 |
-
"category": "sans-serif",
|
3269 |
-
"variants": [
|
3270 |
-
"regular"
|
3271 |
-
],
|
3272 |
-
"subsets": [
|
3273 |
-
"latin"
|
3274 |
-
],
|
3275 |
-
"version": "v5",
|
3276 |
-
"lastModified": "2014-01-07",
|
3277 |
-
"files": {
|
3278 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/dorsa/v5/wCc3cUe6XrmG2LQE6GlIrw.ttf"
|
3279 |
-
}
|
3280 |
-
},
|
3281 |
-
{
|
3282 |
-
"kind": "webfonts#webfont",
|
3283 |
-
"family": "Dosis",
|
3284 |
-
"category": "sans-serif",
|
3285 |
-
"variants": [
|
3286 |
-
"200",
|
3287 |
-
"300",
|
3288 |
-
"regular",
|
3289 |
-
"500",
|
3290 |
-
"600",
|
3291 |
-
"700",
|
3292 |
-
"800"
|
3293 |
-
],
|
3294 |
-
"subsets": [
|
3295 |
-
"latin",
|
3296 |
-
"latin-ext"
|
3297 |
-
],
|
3298 |
-
"version": "v2",
|
3299 |
-
"lastModified": "2014-01-07",
|
3300 |
-
"files": {
|
3301 |
-
"200": "http://themes.googleusercontent.com/static/fonts/dosis/v2/ztftab0r6hcd7AeurUGrSQ.ttf",
|
3302 |
-
"300": "http://themes.googleusercontent.com/static/fonts/dosis/v2/awIB6L0h5mb0plIKorXmuA.ttf",
|
3303 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/dosis/v2/rJRlixu-w0JZ1MyhJpao_Q.ttf",
|
3304 |
-
"500": "http://themes.googleusercontent.com/static/fonts/dosis/v2/ruEXDOFMxDPGnjCBKRqdAQ.ttf",
|
3305 |
-
"600": "http://themes.googleusercontent.com/static/fonts/dosis/v2/KNAswRNwm3tfONddYyidxg.ttf",
|
3306 |
-
"700": "http://themes.googleusercontent.com/static/fonts/dosis/v2/AEEAj0ONidK8NQQMBBlSig.ttf",
|
3307 |
-
"800": "http://themes.googleusercontent.com/static/fonts/dosis/v2/nlrKd8E69vvUU39XGsvR7Q.ttf"
|
3308 |
-
}
|
3309 |
-
},
|
3310 |
-
{
|
3311 |
-
"kind": "webfonts#webfont",
|
3312 |
-
"family": "Dr Sugiyama",
|
3313 |
-
"category": "handwriting",
|
3314 |
-
"variants": [
|
3315 |
-
"regular"
|
3316 |
-
],
|
3317 |
-
"subsets": [
|
3318 |
-
"latin",
|
3319 |
-
"latin-ext"
|
3320 |
-
],
|
3321 |
-
"version": "v3",
|
3322 |
-
"lastModified": "2014-01-07",
|
3323 |
-
"files": {
|
3324 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/drsugiyama/v3/S5Yx3MIckgoyHhhS4C9Tv6CWcynf_cDxXwCLxiixG1c.ttf"
|
3325 |
-
}
|
3326 |
-
},
|
3327 |
-
{
|
3328 |
-
"kind": "webfonts#webfont",
|
3329 |
-
"family": "Droid Sans",
|
3330 |
-
"category": "sans-serif",
|
3331 |
-
"variants": [
|
3332 |
-
"regular",
|
3333 |
-
"700"
|
3334 |
-
],
|
3335 |
-
"subsets": [
|
3336 |
-
"latin"
|
3337 |
-
],
|
3338 |
-
"version": "v4",
|
3339 |
-
"lastModified": "2014-01-07",
|
3340 |
-
"files": {
|
3341 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/droidsans/v4/rS9BT6-asrfjpkcV3DXf__esZW2xOQ-xsNqO47m55DA.ttf",
|
3342 |
-
"700": "http://themes.googleusercontent.com/static/fonts/droidsans/v4/EFpQQyG9GqCrobXxL-KRMQJKKGfqHaYFsRG-T3ceEVo.ttf"
|
3343 |
-
}
|
3344 |
-
},
|
3345 |
-
{
|
3346 |
-
"kind": "webfonts#webfont",
|
3347 |
-
"family": "Droid Sans Mono",
|
3348 |
-
"category": "monospace",
|
3349 |
-
"variants": [
|
3350 |
-
"regular"
|
3351 |
-
],
|
3352 |
-
"subsets": [
|
3353 |
-
"latin"
|
3354 |
-
],
|
3355 |
-
"version": "v5",
|
3356 |
-
"lastModified": "2014-03-18",
|
3357 |
-
"files": {
|
3358 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJcwD6PD0c3_abh9zHKQtbGU.ttf"
|
3359 |
-
}
|
3360 |
-
},
|
3361 |
-
{
|
3362 |
-
"kind": "webfonts#webfont",
|
3363 |
-
"family": "Droid Serif",
|
3364 |
-
"category": "serif",
|
3365 |
-
"variants": [
|
3366 |
-
"regular",
|
3367 |
-
"italic",
|
3368 |
-
"700",
|
3369 |
-
"700italic"
|
3370 |
-
],
|
3371 |
-
"subsets": [
|
3372 |
-
"latin"
|
3373 |
-
],
|
3374 |
-
"version": "v4",
|
3375 |
-
"lastModified": "2014-01-07",
|
3376 |
-
"files": {
|
3377 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/droidserif/v4/DgAtPy6rIVa2Zx3Xh9KaNaCWcynf_cDxXwCLxiixG1c.ttf",
|
3378 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/droidserif/v4/cj2hUnSRBhwmSPr9kS5890eOrDcLawS7-ssYqLr2Xp4.ttf",
|
3379 |
-
"700": "http://themes.googleusercontent.com/static/fonts/droidserif/v4/QQt14e8dY39u-eYBZmppwXe1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
3380 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/droidserif/v4/c92rD_x0V1LslSFt3-QEps_zJjSACmk0BRPxQqhnNLU.ttf"
|
3381 |
-
}
|
3382 |
-
},
|
3383 |
-
{
|
3384 |
-
"kind": "webfonts#webfont",
|
3385 |
-
"family": "Duru Sans",
|
3386 |
-
"category": "sans-serif",
|
3387 |
-
"variants": [
|
3388 |
-
"regular"
|
3389 |
-
],
|
3390 |
-
"subsets": [
|
3391 |
-
"latin",
|
3392 |
-
"latin-ext"
|
3393 |
-
],
|
3394 |
-
"version": "v4",
|
3395 |
-
"lastModified": "2014-01-07",
|
3396 |
-
"files": {
|
3397 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/durusans/v4/R1xHvAOARPh8_so9_UKw1w.ttf"
|
3398 |
-
}
|
3399 |
-
},
|
3400 |
-
{
|
3401 |
-
"kind": "webfonts#webfont",
|
3402 |
-
"family": "Dynalight",
|
3403 |
-
"category": "display",
|
3404 |
-
"variants": [
|
3405 |
-
"regular"
|
3406 |
-
],
|
3407 |
-
"subsets": [
|
3408 |
-
"latin",
|
3409 |
-
"latin-ext"
|
3410 |
-
],
|
3411 |
-
"version": "v3",
|
3412 |
-
"lastModified": "2014-01-07",
|
3413 |
-
"files": {
|
3414 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/dynalight/v3/-CWsIe8OUDWTIHjSAh41kA.ttf"
|
3415 |
-
}
|
3416 |
-
},
|
3417 |
-
{
|
3418 |
-
"kind": "webfonts#webfont",
|
3419 |
-
"family": "EB Garamond",
|
3420 |
-
"category": "serif",
|
3421 |
-
"variants": [
|
3422 |
-
"regular"
|
3423 |
-
],
|
3424 |
-
"subsets": [
|
3425 |
-
"latin",
|
3426 |
-
"cyrillic",
|
3427 |
-
"vietnamese",
|
3428 |
-
"cyrillic-ext",
|
3429 |
-
"latin-ext"
|
3430 |
-
],
|
3431 |
-
"version": "v5",
|
3432 |
-
"lastModified": "2014-01-07",
|
3433 |
-
"files": {
|
3434 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ebgaramond/v5/CDR0kuiFK7I1OZ2hSdR7G6CWcynf_cDxXwCLxiixG1c.ttf"
|
3435 |
-
}
|
3436 |
-
},
|
3437 |
-
{
|
3438 |
-
"kind": "webfonts#webfont",
|
3439 |
-
"family": "Eagle Lake",
|
3440 |
-
"category": "handwriting",
|
3441 |
-
"variants": [
|
3442 |
-
"regular"
|
3443 |
-
],
|
3444 |
-
"subsets": [
|
3445 |
-
"latin",
|
3446 |
-
"latin-ext"
|
3447 |
-
],
|
3448 |
-
"version": "v2",
|
3449 |
-
"lastModified": "2014-01-07",
|
3450 |
-
"files": {
|
3451 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/eaglelake/v2/ZKlYin7caemhx9eSg6RvPfesZW2xOQ-xsNqO47m55DA.ttf"
|
3452 |
-
}
|
3453 |
-
},
|
3454 |
-
{
|
3455 |
-
"kind": "webfonts#webfont",
|
3456 |
-
"family": "Eater",
|
3457 |
-
"category": "display",
|
3458 |
-
"variants": [
|
3459 |
-
"regular"
|
3460 |
-
],
|
3461 |
-
"subsets": [
|
3462 |
-
"latin",
|
3463 |
-
"latin-ext"
|
3464 |
-
],
|
3465 |
-
"version": "v3",
|
3466 |
-
"lastModified": "2014-01-07",
|
3467 |
-
"files": {
|
3468 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/eater/v3/gm6f3OmYEdbs3lPQtUfBkA.ttf"
|
3469 |
-
}
|
3470 |
-
},
|
3471 |
-
{
|
3472 |
-
"kind": "webfonts#webfont",
|
3473 |
-
"family": "Economica",
|
3474 |
-
"category": "sans-serif",
|
3475 |
-
"variants": [
|
3476 |
-
"regular",
|
3477 |
-
"italic",
|
3478 |
-
"700",
|
3479 |
-
"700italic"
|
3480 |
-
],
|
3481 |
-
"subsets": [
|
3482 |
-
"latin",
|
3483 |
-
"latin-ext"
|
3484 |
-
],
|
3485 |
-
"version": "v2",
|
3486 |
-
"lastModified": "2014-01-07",
|
3487 |
-
"files": {
|
3488 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/economica/v2/G4rJRujzZbq9Nxngu9l3hg.ttf",
|
3489 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/economica/v2/p5O9AVeUqx_n35xQRinNYaCWcynf_cDxXwCLxiixG1c.ttf",
|
3490 |
-
"700": "http://themes.googleusercontent.com/static/fonts/economica/v2/UK4l2VEpwjv3gdcwbwXE9C3USBnSvpkopQaUR-2r7iU.ttf",
|
3491 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/economica/v2/ac5dlUsedQ03RqGOeay-3Xe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
3492 |
-
}
|
3493 |
-
},
|
3494 |
-
{
|
3495 |
-
"kind": "webfonts#webfont",
|
3496 |
-
"family": "Electrolize",
|
3497 |
-
"category": "sans-serif",
|
3498 |
-
"variants": [
|
3499 |
-
"regular"
|
3500 |
-
],
|
3501 |
-
"subsets": [
|
3502 |
-
"latin"
|
3503 |
-
],
|
3504 |
-
"version": "v3",
|
3505 |
-
"lastModified": "2014-01-07",
|
3506 |
-
"files": {
|
3507 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/electrolize/v3/yFVu5iokC-nt4B1Cyfxb9aCWcynf_cDxXwCLxiixG1c.ttf"
|
3508 |
-
}
|
3509 |
-
},
|
3510 |
-
{
|
3511 |
-
"kind": "webfonts#webfont",
|
3512 |
-
"family": "Elsie",
|
3513 |
-
"category": "display",
|
3514 |
-
"variants": [
|
3515 |
-
"regular",
|
3516 |
-
"900"
|
3517 |
-
],
|
3518 |
-
"subsets": [
|
3519 |
-
"latin",
|
3520 |
-
"latin-ext"
|
3521 |
-
],
|
3522 |
-
"version": "v2",
|
3523 |
-
"lastModified": "2014-01-07",
|
3524 |
-
"files": {
|
3525 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/elsie/v2/gwspePauE45BJu6Ok1QrfQ.ttf",
|
3526 |
-
"900": "http://themes.googleusercontent.com/static/fonts/elsie/v2/1t-9f0N2NFYwAgN7oaISqg.ttf"
|
3527 |
-
}
|
3528 |
-
},
|
3529 |
-
{
|
3530 |
-
"kind": "webfonts#webfont",
|
3531 |
-
"family": "Elsie Swash Caps",
|
3532 |
-
"category": "display",
|
3533 |
-
"variants": [
|
3534 |
-
"regular",
|
3535 |
-
"900"
|
3536 |
-
],
|
3537 |
-
"subsets": [
|
3538 |
-
"latin",
|
3539 |
-
"latin-ext"
|
3540 |
-
],
|
3541 |
-
"version": "v2",
|
3542 |
-
"lastModified": "2014-01-07",
|
3543 |
-
"files": {
|
3544 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/elsieswashcaps/v2/9L3hIJMPCf6sxCltnxd6X2YeFSdnSpRYv5h9gpdlD1g.ttf",
|
3545 |
-
"900": "http://themes.googleusercontent.com/static/fonts/elsieswashcaps/v2/iZnus9qif0tR5pGaDv5zdKoKBWBozTtxi30NfZDOXXU.ttf"
|
3546 |
-
}
|
3547 |
-
},
|
3548 |
-
{
|
3549 |
-
"kind": "webfonts#webfont",
|
3550 |
-
"family": "Emblema One",
|
3551 |
-
"category": "display",
|
3552 |
-
"variants": [
|
3553 |
-
"regular"
|
3554 |
-
],
|
3555 |
-
"subsets": [
|
3556 |
-
"latin",
|
3557 |
-
"latin-ext"
|
3558 |
-
],
|
3559 |
-
"version": "v3",
|
3560 |
-
"lastModified": "2014-01-07",
|
3561 |
-
"files": {
|
3562 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/emblemaone/v3/7IlBUjBWPIiw7cr_O2IfSaCWcynf_cDxXwCLxiixG1c.ttf"
|
3563 |
-
}
|
3564 |
-
},
|
3565 |
-
{
|
3566 |
-
"kind": "webfonts#webfont",
|
3567 |
-
"family": "Emilys Candy",
|
3568 |
-
"category": "display",
|
3569 |
-
"variants": [
|
3570 |
-
"regular"
|
3571 |
-
],
|
3572 |
-
"subsets": [
|
3573 |
-
"latin",
|
3574 |
-
"latin-ext"
|
3575 |
-
],
|
3576 |
-
"version": "v2",
|
3577 |
-
"lastModified": "2014-01-07",
|
3578 |
-
"files": {
|
3579 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/emilyscandy/v2/PofLVm6v1SwZGOzC8s-I3S3USBnSvpkopQaUR-2r7iU.ttf"
|
3580 |
-
}
|
3581 |
-
},
|
3582 |
-
{
|
3583 |
-
"kind": "webfonts#webfont",
|
3584 |
-
"family": "Engagement",
|
3585 |
-
"category": "handwriting",
|
3586 |
-
"variants": [
|
3587 |
-
"regular"
|
3588 |
-
],
|
3589 |
-
"subsets": [
|
3590 |
-
"latin"
|
3591 |
-
],
|
3592 |
-
"version": "v3",
|
3593 |
-
"lastModified": "2014-01-07",
|
3594 |
-
"files": {
|
3595 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/engagement/v3/4Uz0Jii7oVPcaFRYmbpU6vesZW2xOQ-xsNqO47m55DA.ttf"
|
3596 |
-
}
|
3597 |
-
},
|
3598 |
-
{
|
3599 |
-
"kind": "webfonts#webfont",
|
3600 |
-
"family": "Englebert",
|
3601 |
-
"category": "sans-serif",
|
3602 |
-
"variants": [
|
3603 |
-
"regular"
|
3604 |
-
],
|
3605 |
-
"subsets": [
|
3606 |
-
"latin",
|
3607 |
-
"latin-ext"
|
3608 |
-
],
|
3609 |
-
"version": "v2",
|
3610 |
-
"lastModified": "2014-01-07",
|
3611 |
-
"files": {
|
3612 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/englebert/v2/sll38iOvOuarDTYBchlP3Q.ttf"
|
3613 |
-
}
|
3614 |
-
},
|
3615 |
-
{
|
3616 |
-
"kind": "webfonts#webfont",
|
3617 |
-
"family": "Enriqueta",
|
3618 |
-
"category": "serif",
|
3619 |
-
"variants": [
|
3620 |
-
"regular",
|
3621 |
-
"700"
|
3622 |
-
],
|
3623 |
-
"subsets": [
|
3624 |
-
"latin",
|
3625 |
-
"latin-ext"
|
3626 |
-
],
|
3627 |
-
"version": "v3",
|
3628 |
-
"lastModified": "2014-01-07",
|
3629 |
-
"files": {
|
3630 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/enriqueta/v3/_p90TrIwR1SC-vDKtmrv6A.ttf",
|
3631 |
-
"700": "http://themes.googleusercontent.com/static/fonts/enriqueta/v3/I27Pb-wEGH2ajLYP0QrtSC3USBnSvpkopQaUR-2r7iU.ttf"
|
3632 |
-
}
|
3633 |
-
},
|
3634 |
-
{
|
3635 |
-
"kind": "webfonts#webfont",
|
3636 |
-
"family": "Erica One",
|
3637 |
-
"category": "display",
|
3638 |
-
"variants": [
|
3639 |
-
"regular"
|
3640 |
-
],
|
3641 |
-
"subsets": [
|
3642 |
-
"latin"
|
3643 |
-
],
|
3644 |
-
"version": "v4",
|
3645 |
-
"lastModified": "2014-01-07",
|
3646 |
-
"files": {
|
3647 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ericaone/v4/cIBnH2VAqQMIGYAcE4ufvQ.ttf"
|
3648 |
-
}
|
3649 |
-
},
|
3650 |
-
{
|
3651 |
-
"kind": "webfonts#webfont",
|
3652 |
-
"family": "Esteban",
|
3653 |
-
"category": "serif",
|
3654 |
-
"variants": [
|
3655 |
-
"regular"
|
3656 |
-
],
|
3657 |
-
"subsets": [
|
3658 |
-
"latin",
|
3659 |
-
"latin-ext"
|
3660 |
-
],
|
3661 |
-
"version": "v2",
|
3662 |
-
"lastModified": "2014-01-07",
|
3663 |
-
"files": {
|
3664 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/esteban/v2/ESyhLgqDDyK5JcFPp2svDw.ttf"
|
3665 |
-
}
|
3666 |
-
},
|
3667 |
-
{
|
3668 |
-
"kind": "webfonts#webfont",
|
3669 |
-
"family": "Euphoria Script",
|
3670 |
-
"category": "handwriting",
|
3671 |
-
"variants": [
|
3672 |
-
"regular"
|
3673 |
-
],
|
3674 |
-
"subsets": [
|
3675 |
-
"latin",
|
3676 |
-
"latin-ext"
|
3677 |
-
],
|
3678 |
-
"version": "v2",
|
3679 |
-
"lastModified": "2014-01-07",
|
3680 |
-
"files": {
|
3681 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/euphoriascript/v2/c4XB4Iijj_NvSsCF4I0O2MxLhO8OSNnfAp53LK1_iRs.ttf"
|
3682 |
-
}
|
3683 |
-
},
|
3684 |
-
{
|
3685 |
-
"kind": "webfonts#webfont",
|
3686 |
-
"family": "Ewert",
|
3687 |
-
"category": "display",
|
3688 |
-
"variants": [
|
3689 |
-
"regular"
|
3690 |
-
],
|
3691 |
-
"subsets": [
|
3692 |
-
"latin",
|
3693 |
-
"latin-ext"
|
3694 |
-
],
|
3695 |
-
"version": "v2",
|
3696 |
-
"lastModified": "2014-01-07",
|
3697 |
-
"files": {
|
3698 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ewert/v2/Em8hrzuzSbfHcTVqMjbAQg.ttf"
|
3699 |
-
}
|
3700 |
-
},
|
3701 |
-
{
|
3702 |
-
"kind": "webfonts#webfont",
|
3703 |
-
"family": "Exo",
|
3704 |
-
"category": "sans-serif",
|
3705 |
-
"variants": [
|
3706 |
-
"100",
|
3707 |
-
"100italic",
|
3708 |
-
"200",
|
3709 |
-
"200italic",
|
3710 |
-
"300",
|
3711 |
-
"300italic",
|
3712 |
-
"regular",
|
3713 |
-
"italic",
|
3714 |
-
"500",
|
3715 |
-
"500italic",
|
3716 |
-
"600",
|
3717 |
-
"600italic",
|
3718 |
-
"700",
|
3719 |
-
"700italic",
|
3720 |
-
"800",
|
3721 |
-
"800italic",
|
3722 |
-
"900",
|
3723 |
-
"900italic"
|
3724 |
-
],
|
3725 |
-
"subsets": [
|
3726 |
-
"latin",
|
3727 |
-
"latin-ext"
|
3728 |
-
],
|
3729 |
-
"version": "v2",
|
3730 |
-
"lastModified": "2014-01-07",
|
3731 |
-
"files": {
|
3732 |
-
"100": "http://themes.googleusercontent.com/static/fonts/exo/v2/RI7A9uwjRmPbVp0n8e-Jvg.ttf",
|
3733 |
-
"100italic": "http://themes.googleusercontent.com/static/fonts/exo/v2/qtGyZZlWb2EEvby3ZPosxw.ttf",
|
3734 |
-
"200": "http://themes.googleusercontent.com/static/fonts/exo/v2/F8OfC_swrRRxpFt-tlXZQg.ttf",
|
3735 |
-
"200italic": "http://themes.googleusercontent.com/static/fonts/exo/v2/fr4HBfXHYiIngW2_bhlgRw.ttf",
|
3736 |
-
"300": "http://themes.googleusercontent.com/static/fonts/exo/v2/SBrN7TKUqgGUvfxqHqsnNw.ttf",
|
3737 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/exo/v2/3gmiLjBegIfcDLISjTGA1g.ttf",
|
3738 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/exo/v2/eUEzTFueNXRVhbt4PEB8kQ.ttf",
|
3739 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/exo/v2/cfgolWisMSURhpQeVHl_NA.ttf",
|
3740 |
-
"500": "http://themes.googleusercontent.com/static/fonts/exo/v2/jCg6DmGGXt_OVyp5ofQHPw.ttf",
|
3741 |
-
"500italic": "http://themes.googleusercontent.com/static/fonts/exo/v2/lo5eTdCNJZQVN08p8RnzAQ.ttf",
|
3742 |
-
"600": "http://themes.googleusercontent.com/static/fonts/exo/v2/q_SG5kXUmOcIvFpgtdZnlw.ttf",
|
3743 |
-
"600italic": "http://themes.googleusercontent.com/static/fonts/exo/v2/0cExa8K_pxS2lTuMr68XUA.ttf",
|
3744 |
-
"700": "http://themes.googleusercontent.com/static/fonts/exo/v2/3_jwsL4v9uHjl5Q37G57mw.ttf",
|
3745 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/exo/v2/0me55yJIxd5vyQ9bF7SsiA.ttf",
|
3746 |
-
"800": "http://themes.googleusercontent.com/static/fonts/exo/v2/yLPuxBuV0lzqibRJyooOJg.ttf",
|
3747 |
-
"800italic": "http://themes.googleusercontent.com/static/fonts/exo/v2/n3LejeKVj_8gtZq5fIgNYw.ttf",
|
3748 |
-
"900": "http://themes.googleusercontent.com/static/fonts/exo/v2/97d0nd6Yv4-SA_X92xAuZA.ttf",
|
3749 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/exo/v2/JHTkQVhzyLtkY13Ye95TJQ.ttf"
|
3750 |
-
}
|
3751 |
-
},
|
3752 |
-
{
|
3753 |
-
"kind": "webfonts#webfont",
|
3754 |
-
"family": "Exo 2",
|
3755 |
-
"category": "sans-serif",
|
3756 |
-
"variants": [
|
3757 |
-
"100",
|
3758 |
-
"100italic",
|
3759 |
-
"200",
|
3760 |
-
"200italic",
|
3761 |
-
"300",
|
3762 |
-
"300italic",
|
3763 |
-
"regular",
|
3764 |
-
"italic",
|
3765 |
-
"500",
|
3766 |
-
"500italic",
|
3767 |
-
"600",
|
3768 |
-
"600italic",
|
3769 |
-
"700",
|
3770 |
-
"700italic",
|
3771 |
-
"800",
|
3772 |
-
"800italic",
|
3773 |
-
"900",
|
3774 |
-
"900italic"
|
3775 |
-
],
|
3776 |
-
"subsets": [
|
3777 |
-
"latin",
|
3778 |
-
"cyrillic",
|
3779 |
-
"latin-ext"
|
3780 |
-
],
|
3781 |
-
"version": "v1",
|
3782 |
-
"lastModified": "2013-12-05",
|
3783 |
-
"files": {
|
3784 |
-
"100": "http://themes.googleusercontent.com/static/fonts/exo2/v1/oVOtQy53isv97g4UhBUDqg.ttf",
|
3785 |
-
"100italic": "http://themes.googleusercontent.com/static/fonts/exo2/v1/LNYVgsJcaCxoKFHmd4AZcg.ttf",
|
3786 |
-
"200": "http://themes.googleusercontent.com/static/fonts/exo2/v1/qa-Ci2pBwJdCxciE1ErifQ.ttf",
|
3787 |
-
"200italic": "http://themes.googleusercontent.com/static/fonts/exo2/v1/DCrVxDVvS69n50O-5erZVvesZW2xOQ-xsNqO47m55DA.ttf",
|
3788 |
-
"300": "http://themes.googleusercontent.com/static/fonts/exo2/v1/nLUBdz_lHHoVIPor05Byhw.ttf",
|
3789 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/exo2/v1/iSy9VTeUTiqiurQg2ywtu_esZW2xOQ-xsNqO47m55DA.ttf",
|
3790 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/exo2/v1/Pf_kZuIH5c5WKVkQUaeSWQ.ttf",
|
3791 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/exo2/v1/xxA5ZscX9sTU6U0lZJUlYA.ttf",
|
3792 |
-
"500": "http://themes.googleusercontent.com/static/fonts/exo2/v1/oM0rzUuPqVJpW-VEIpuW5w.ttf",
|
3793 |
-
"500italic": "http://themes.googleusercontent.com/static/fonts/exo2/v1/amzRVCB-gipwdihZZ2LtT_esZW2xOQ-xsNqO47m55DA.ttf",
|
3794 |
-
"600": "http://themes.googleusercontent.com/static/fonts/exo2/v1/YnSn3HsyvyI1feGSdRMYqA.ttf",
|
3795 |
-
"600italic": "http://themes.googleusercontent.com/static/fonts/exo2/v1/Vmo58BiptGwfVFb0teU5gPesZW2xOQ-xsNqO47m55DA.ttf",
|
3796 |
-
"700": "http://themes.googleusercontent.com/static/fonts/exo2/v1/2DiK4XkdTckfTk6we73-bQ.ttf",
|
3797 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/exo2/v1/Sdo-zW-4_--pDkTg6bYrY_esZW2xOQ-xsNqO47m55DA.ttf",
|
3798 |
-
"800": "http://themes.googleusercontent.com/static/fonts/exo2/v1/IVYl_7dJruOg8zKRpC8Hrw.ttf",
|
3799 |
-
"800italic": "http://themes.googleusercontent.com/static/fonts/exo2/v1/p0TA6KeOz1o4rySEbvUxI_esZW2xOQ-xsNqO47m55DA.ttf",
|
3800 |
-
"900": "http://themes.googleusercontent.com/static/fonts/exo2/v1/e8csG8Wnu87AF6uCndkFRQ.ttf",
|
3801 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/exo2/v1/KPhsGCoT2-7Uj6pMlRscH_esZW2xOQ-xsNqO47m55DA.ttf"
|
3802 |
-
}
|
3803 |
-
},
|
3804 |
-
{
|
3805 |
-
"kind": "webfonts#webfont",
|
3806 |
-
"family": "Expletus Sans",
|
3807 |
-
"category": "display",
|
3808 |
-
"variants": [
|
3809 |
-
"regular",
|
3810 |
-
"italic",
|
3811 |
-
"500",
|
3812 |
-
"500italic",
|
3813 |
-
"600",
|
3814 |
-
"600italic",
|
3815 |
-
"700",
|
3816 |
-
"700italic"
|
3817 |
-
],
|
3818 |
-
"subsets": [
|
3819 |
-
"latin"
|
3820 |
-
],
|
3821 |
-
"version": "v5",
|
3822 |
-
"lastModified": "2014-01-07",
|
3823 |
-
"files": {
|
3824 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/expletussans/v5/gegTSDBDs5le3g6uxU1ZsX8f0n03UdmQgF_CLvNR2vg.ttf",
|
3825 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/expletussans/v5/Y-erXmY0b6DU_i2Qu0hTJj4G9C9ttb0Oz5Cvf0qOitE.ttf",
|
3826 |
-
"500": "http://themes.googleusercontent.com/static/fonts/expletussans/v5/cl6rhMY77Ilk8lB_uYRRwAqQmZ7VjhwksfpNVG0pqGc.ttf",
|
3827 |
-
"500italic": "http://themes.googleusercontent.com/static/fonts/expletussans/v5/sRBNtc46w65uJE451UYmW87DCVO6wo6i5LKIyZDzK40.ttf",
|
3828 |
-
"600": "http://themes.googleusercontent.com/static/fonts/expletussans/v5/cl6rhMY77Ilk8lB_uYRRwCvj1tU7IJMS3CS9kCx2B3U.ttf",
|
3829 |
-
"600italic": "http://themes.googleusercontent.com/static/fonts/expletussans/v5/sRBNtc46w65uJE451UYmW8yKH23ZS6zCKOFHG0e_4JE.ttf",
|
3830 |
-
"700": "http://themes.googleusercontent.com/static/fonts/expletussans/v5/cl6rhMY77Ilk8lB_uYRRwFCbmAUID8LN-q3pJpOk3Ys.ttf",
|
3831 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/expletussans/v5/sRBNtc46w65uJE451UYmW5F66r9C4AnxxlBlGd7xY4g.ttf"
|
3832 |
-
}
|
3833 |
-
},
|
3834 |
-
{
|
3835 |
-
"kind": "webfonts#webfont",
|
3836 |
-
"family": "Fanwood Text",
|
3837 |
-
"category": "serif",
|
3838 |
-
"variants": [
|
3839 |
-
"regular",
|
3840 |
-
"italic"
|
3841 |
-
],
|
3842 |
-
"subsets": [
|
3843 |
-
"latin"
|
3844 |
-
],
|
3845 |
-
"version": "v4",
|
3846 |
-
"lastModified": "2014-01-07",
|
3847 |
-
"files": {
|
3848 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fanwoodtext/v4/hDNDHUlsSb8bgnEmDp4T_i3USBnSvpkopQaUR-2r7iU.ttf",
|
3849 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/fanwoodtext/v4/0J3SBbkMZqBV-3iGxs5E9_MZXuCXbOrAvx5R0IT5Oyo.ttf"
|
3850 |
-
}
|
3851 |
-
},
|
3852 |
-
{
|
3853 |
-
"kind": "webfonts#webfont",
|
3854 |
-
"family": "Fascinate",
|
3855 |
-
"category": "display",
|
3856 |
-
"variants": [
|
3857 |
-
"regular"
|
3858 |
-
],
|
3859 |
-
"subsets": [
|
3860 |
-
"latin"
|
3861 |
-
],
|
3862 |
-
"version": "v3",
|
3863 |
-
"lastModified": "2014-01-07",
|
3864 |
-
"files": {
|
3865 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fascinate/v3/ZE0637WWkBPKt1AmFaqD3Q.ttf"
|
3866 |
-
}
|
3867 |
-
},
|
3868 |
-
{
|
3869 |
-
"kind": "webfonts#webfont",
|
3870 |
-
"family": "Fascinate Inline",
|
3871 |
-
"category": "display",
|
3872 |
-
"variants": [
|
3873 |
-
"regular"
|
3874 |
-
],
|
3875 |
-
"subsets": [
|
3876 |
-
"latin"
|
3877 |
-
],
|
3878 |
-
"version": "v4",
|
3879 |
-
"lastModified": "2014-01-07",
|
3880 |
-
"files": {
|
3881 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fascinateinline/v4/lRguYfMfWArflkm5aOQ5QJmp8DTZ6iHear7UV05iykg.ttf"
|
3882 |
-
}
|
3883 |
-
},
|
3884 |
-
{
|
3885 |
-
"kind": "webfonts#webfont",
|
3886 |
-
"family": "Faster One",
|
3887 |
-
"category": "display",
|
3888 |
-
"variants": [
|
3889 |
-
"regular"
|
3890 |
-
],
|
3891 |
-
"subsets": [
|
3892 |
-
"latin"
|
3893 |
-
],
|
3894 |
-
"version": "v2",
|
3895 |
-
"lastModified": "2014-01-07",
|
3896 |
-
"files": {
|
3897 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fasterone/v2/YxTOW2sf56uxD1T7byP5K_esZW2xOQ-xsNqO47m55DA.ttf"
|
3898 |
-
}
|
3899 |
-
},
|
3900 |
-
{
|
3901 |
-
"kind": "webfonts#webfont",
|
3902 |
-
"family": "Fasthand",
|
3903 |
-
"category": "serif",
|
3904 |
-
"variants": [
|
3905 |
-
"regular"
|
3906 |
-
],
|
3907 |
-
"subsets": [
|
3908 |
-
"khmer"
|
3909 |
-
],
|
3910 |
-
"version": "v5",
|
3911 |
-
"lastModified": "2014-01-07",
|
3912 |
-
"files": {
|
3913 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fasthand/v5/6XAagHH_KmpZL67wTvsETQ.ttf"
|
3914 |
-
}
|
3915 |
-
},
|
3916 |
-
{
|
3917 |
-
"kind": "webfonts#webfont",
|
3918 |
-
"family": "Fauna One",
|
3919 |
-
"category": "serif",
|
3920 |
-
"variants": [
|
3921 |
-
"regular"
|
3922 |
-
],
|
3923 |
-
"subsets": [
|
3924 |
-
"latin",
|
3925 |
-
"latin-ext"
|
3926 |
-
],
|
3927 |
-
"version": "v2",
|
3928 |
-
"lastModified": "2014-01-07",
|
3929 |
-
"files": {
|
3930 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/faunaone/v2/8kL-wpAPofcAMELI_5NRnQ.ttf"
|
3931 |
-
}
|
3932 |
-
},
|
3933 |
-
{
|
3934 |
-
"kind": "webfonts#webfont",
|
3935 |
-
"family": "Federant",
|
3936 |
-
"category": "display",
|
3937 |
-
"variants": [
|
3938 |
-
"regular"
|
3939 |
-
],
|
3940 |
-
"subsets": [
|
3941 |
-
"latin"
|
3942 |
-
],
|
3943 |
-
"version": "v5",
|
3944 |
-
"lastModified": "2014-01-07",
|
3945 |
-
"files": {
|
3946 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/federant/v5/tddZFSiGvxICNOGra0i5aA.ttf"
|
3947 |
-
}
|
3948 |
-
},
|
3949 |
-
{
|
3950 |
-
"kind": "webfonts#webfont",
|
3951 |
-
"family": "Federo",
|
3952 |
-
"category": "sans-serif",
|
3953 |
-
"variants": [
|
3954 |
-
"regular"
|
3955 |
-
],
|
3956 |
-
"subsets": [
|
3957 |
-
"latin"
|
3958 |
-
],
|
3959 |
-
"version": "v6",
|
3960 |
-
"lastModified": "2014-01-07",
|
3961 |
-
"files": {
|
3962 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/federo/v6/JPhe1S2tujeyaR79gXBLeQ.ttf"
|
3963 |
-
}
|
3964 |
-
},
|
3965 |
-
{
|
3966 |
-
"kind": "webfonts#webfont",
|
3967 |
-
"family": "Felipa",
|
3968 |
-
"category": "handwriting",
|
3969 |
-
"variants": [
|
3970 |
-
"regular"
|
3971 |
-
],
|
3972 |
-
"subsets": [
|
3973 |
-
"latin",
|
3974 |
-
"latin-ext"
|
3975 |
-
],
|
3976 |
-
"version": "v2",
|
3977 |
-
"lastModified": "2014-01-07",
|
3978 |
-
"files": {
|
3979 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/felipa/v2/SeyfyFZY7abAQXGrOIYnYg.ttf"
|
3980 |
-
}
|
3981 |
-
},
|
3982 |
-
{
|
3983 |
-
"kind": "webfonts#webfont",
|
3984 |
-
"family": "Fenix",
|
3985 |
-
"category": "serif",
|
3986 |
-
"variants": [
|
3987 |
-
"regular"
|
3988 |
-
],
|
3989 |
-
"subsets": [
|
3990 |
-
"latin",
|
3991 |
-
"latin-ext"
|
3992 |
-
],
|
3993 |
-
"version": "v2",
|
3994 |
-
"lastModified": "2014-01-07",
|
3995 |
-
"files": {
|
3996 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fenix/v2/Ak8wR3VSlAN7VN_eMeJj7Q.ttf"
|
3997 |
-
}
|
3998 |
-
},
|
3999 |
-
{
|
4000 |
-
"kind": "webfonts#webfont",
|
4001 |
-
"family": "Finger Paint",
|
4002 |
-
"category": "display",
|
4003 |
-
"variants": [
|
4004 |
-
"regular"
|
4005 |
-
],
|
4006 |
-
"subsets": [
|
4007 |
-
"latin"
|
4008 |
-
],
|
4009 |
-
"version": "v2",
|
4010 |
-
"lastModified": "2014-01-07",
|
4011 |
-
"files": {
|
4012 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fingerpaint/v2/m_ZRbiY-aPb13R3DWPBGXy3USBnSvpkopQaUR-2r7iU.ttf"
|
4013 |
-
}
|
4014 |
-
},
|
4015 |
-
{
|
4016 |
-
"kind": "webfonts#webfont",
|
4017 |
-
"family": "Fjalla One",
|
4018 |
-
"category": "sans-serif",
|
4019 |
-
"variants": [
|
4020 |
-
"regular"
|
4021 |
-
],
|
4022 |
-
"subsets": [
|
4023 |
-
"latin",
|
4024 |
-
"latin-ext"
|
4025 |
-
],
|
4026 |
-
"version": "v2",
|
4027 |
-
"lastModified": "2014-01-07",
|
4028 |
-
"files": {
|
4029 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fjallaone/v2/3b7vWCfOZsU53vMa8LWsf_esZW2xOQ-xsNqO47m55DA.ttf"
|
4030 |
-
}
|
4031 |
-
},
|
4032 |
-
{
|
4033 |
-
"kind": "webfonts#webfont",
|
4034 |
-
"family": "Fjord One",
|
4035 |
-
"category": "serif",
|
4036 |
-
"variants": [
|
4037 |
-
"regular"
|
4038 |
-
],
|
4039 |
-
"subsets": [
|
4040 |
-
"latin"
|
4041 |
-
],
|
4042 |
-
"version": "v3",
|
4043 |
-
"lastModified": "2014-01-07",
|
4044 |
-
"files": {
|
4045 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fjordone/v3/R_YHK8au2uFPw5tNu5N7zw.ttf"
|
4046 |
-
}
|
4047 |
-
},
|
4048 |
-
{
|
4049 |
-
"kind": "webfonts#webfont",
|
4050 |
-
"family": "Flamenco",
|
4051 |
-
"category": "display",
|
4052 |
-
"variants": [
|
4053 |
-
"300",
|
4054 |
-
"regular"
|
4055 |
-
],
|
4056 |
-
"subsets": [
|
4057 |
-
"latin"
|
4058 |
-
],
|
4059 |
-
"version": "v4",
|
4060 |
-
"lastModified": "2014-01-07",
|
4061 |
-
"files": {
|
4062 |
-
"300": "http://themes.googleusercontent.com/static/fonts/flamenco/v4/x9iI5CogvuZVCGoRHwXuo6CWcynf_cDxXwCLxiixG1c.ttf",
|
4063 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/flamenco/v4/HC0ugfLLgt26I5_BWD1PZA.ttf"
|
4064 |
-
}
|
4065 |
-
},
|
4066 |
-
{
|
4067 |
-
"kind": "webfonts#webfont",
|
4068 |
-
"family": "Flavors",
|
4069 |
-
"category": "display",
|
4070 |
-
"variants": [
|
4071 |
-
"regular"
|
4072 |
-
],
|
4073 |
-
"subsets": [
|
4074 |
-
"latin"
|
4075 |
-
],
|
4076 |
-
"version": "v3",
|
4077 |
-
"lastModified": "2014-01-07",
|
4078 |
-
"files": {
|
4079 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/flavors/v3/SPJi5QclATvon8ExcKGRvQ.ttf"
|
4080 |
-
}
|
4081 |
-
},
|
4082 |
-
{
|
4083 |
-
"kind": "webfonts#webfont",
|
4084 |
-
"family": "Fondamento",
|
4085 |
-
"category": "handwriting",
|
4086 |
-
"variants": [
|
4087 |
-
"regular",
|
4088 |
-
"italic"
|
4089 |
-
],
|
4090 |
-
"subsets": [
|
4091 |
-
"latin",
|
4092 |
-
"latin-ext"
|
4093 |
-
],
|
4094 |
-
"version": "v3",
|
4095 |
-
"lastModified": "2014-01-07",
|
4096 |
-
"files": {
|
4097 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fondamento/v3/6LWXcjT1B7bnWluAOSNfMPesZW2xOQ-xsNqO47m55DA.ttf",
|
4098 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/fondamento/v3/y6TmwhSbZ8rYq7OTFyo7OS3USBnSvpkopQaUR-2r7iU.ttf"
|
4099 |
-
}
|
4100 |
-
},
|
4101 |
-
{
|
4102 |
-
"kind": "webfonts#webfont",
|
4103 |
-
"family": "Fontdiner Swanky",
|
4104 |
-
"category": "display",
|
4105 |
-
"variants": [
|
4106 |
-
"regular"
|
4107 |
-
],
|
4108 |
-
"subsets": [
|
4109 |
-
"latin"
|
4110 |
-
],
|
4111 |
-
"version": "v4",
|
4112 |
-
"lastModified": "2014-01-07",
|
4113 |
-
"files": {
|
4114 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fontdinerswanky/v4/8_GxIO5ixMtn5P6COsF3TlBjMPLzPAFJwRBn-s1U7kA.ttf"
|
4115 |
-
}
|
4116 |
-
},
|
4117 |
-
{
|
4118 |
-
"kind": "webfonts#webfont",
|
4119 |
-
"family": "Forum",
|
4120 |
-
"category": "display",
|
4121 |
-
"variants": [
|
4122 |
-
"regular"
|
4123 |
-
],
|
4124 |
-
"subsets": [
|
4125 |
-
"latin",
|
4126 |
-
"cyrillic",
|
4127 |
-
"cyrillic-ext",
|
4128 |
-
"latin-ext"
|
4129 |
-
],
|
4130 |
-
"version": "v5",
|
4131 |
-
"lastModified": "2014-01-07",
|
4132 |
-
"files": {
|
4133 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/forum/v5/MZUpsq1VfLrqv8eSDcbrrQ.ttf"
|
4134 |
-
}
|
4135 |
-
},
|
4136 |
-
{
|
4137 |
-
"kind": "webfonts#webfont",
|
4138 |
-
"family": "Francois One",
|
4139 |
-
"category": "sans-serif",
|
4140 |
-
"variants": [
|
4141 |
-
"regular"
|
4142 |
-
],
|
4143 |
-
"subsets": [
|
4144 |
-
"latin",
|
4145 |
-
"latin-ext"
|
4146 |
-
],
|
4147 |
-
"version": "v7",
|
4148 |
-
"lastModified": "2014-01-07",
|
4149 |
-
"files": {
|
4150 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/francoisone/v7/bYbkq2nU2TSx4SwFbz5sCC3USBnSvpkopQaUR-2r7iU.ttf"
|
4151 |
-
}
|
4152 |
-
},
|
4153 |
-
{
|
4154 |
-
"kind": "webfonts#webfont",
|
4155 |
-
"family": "Freckle Face",
|
4156 |
-
"category": "display",
|
4157 |
-
"variants": [
|
4158 |
-
"regular"
|
4159 |
-
],
|
4160 |
-
"subsets": [
|
4161 |
-
"latin",
|
4162 |
-
"latin-ext"
|
4163 |
-
],
|
4164 |
-
"version": "v2",
|
4165 |
-
"lastModified": "2014-01-07",
|
4166 |
-
"files": {
|
4167 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/freckleface/v2/7-B8j9BPJgazdHIGqPNv8y3USBnSvpkopQaUR-2r7iU.ttf"
|
4168 |
-
}
|
4169 |
-
},
|
4170 |
-
{
|
4171 |
-
"kind": "webfonts#webfont",
|
4172 |
-
"family": "Fredericka the Great",
|
4173 |
-
"category": "display",
|
4174 |
-
"variants": [
|
4175 |
-
"regular"
|
4176 |
-
],
|
4177 |
-
"subsets": [
|
4178 |
-
"latin"
|
4179 |
-
],
|
4180 |
-
"version": "v3",
|
4181 |
-
"lastModified": "2014-01-07",
|
4182 |
-
"files": {
|
4183 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/frederickathegreat/v3/7Es8Lxoku-e5eOZWpxw18nrnet6gXN1McwdQxS1dVrI.ttf"
|
4184 |
-
}
|
4185 |
-
},
|
4186 |
-
{
|
4187 |
-
"kind": "webfonts#webfont",
|
4188 |
-
"family": "Fredoka One",
|
4189 |
-
"category": "display",
|
4190 |
-
"variants": [
|
4191 |
-
"regular"
|
4192 |
-
],
|
4193 |
-
"subsets": [
|
4194 |
-
"latin"
|
4195 |
-
],
|
4196 |
-
"version": "v2",
|
4197 |
-
"lastModified": "2014-01-07",
|
4198 |
-
"files": {
|
4199 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fredokaone/v2/QKfwXi-z-KtJAlnO2ethYqCWcynf_cDxXwCLxiixG1c.ttf"
|
4200 |
-
}
|
4201 |
-
},
|
4202 |
-
{
|
4203 |
-
"kind": "webfonts#webfont",
|
4204 |
-
"family": "Freehand",
|
4205 |
-
"category": "display",
|
4206 |
-
"variants": [
|
4207 |
-
"regular"
|
4208 |
-
],
|
4209 |
-
"subsets": [
|
4210 |
-
"khmer"
|
4211 |
-
],
|
4212 |
-
"version": "v6",
|
4213 |
-
"lastModified": "2014-01-07",
|
4214 |
-
"files": {
|
4215 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/freehand/v6/uEBQxvA0lnn_BrD6krlxMw.ttf"
|
4216 |
-
}
|
4217 |
-
},
|
4218 |
-
{
|
4219 |
-
"kind": "webfonts#webfont",
|
4220 |
-
"family": "Fresca",
|
4221 |
-
"category": "sans-serif",
|
4222 |
-
"variants": [
|
4223 |
-
"regular"
|
4224 |
-
],
|
4225 |
-
"subsets": [
|
4226 |
-
"latin",
|
4227 |
-
"latin-ext"
|
4228 |
-
],
|
4229 |
-
"version": "v3",
|
4230 |
-
"lastModified": "2014-01-07",
|
4231 |
-
"files": {
|
4232 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fresca/v3/2q7Qm9sCo1tWvVgSDVWNIw.ttf"
|
4233 |
-
}
|
4234 |
-
},
|
4235 |
-
{
|
4236 |
-
"kind": "webfonts#webfont",
|
4237 |
-
"family": "Frijole",
|
4238 |
-
"category": "display",
|
4239 |
-
"variants": [
|
4240 |
-
"regular"
|
4241 |
-
],
|
4242 |
-
"subsets": [
|
4243 |
-
"latin"
|
4244 |
-
],
|
4245 |
-
"version": "v3",
|
4246 |
-
"lastModified": "2014-01-07",
|
4247 |
-
"files": {
|
4248 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/frijole/v3/L2MfZse-2gCascuD-nLhWg.ttf"
|
4249 |
-
}
|
4250 |
-
},
|
4251 |
-
{
|
4252 |
-
"kind": "webfonts#webfont",
|
4253 |
-
"family": "Fruktur",
|
4254 |
-
"category": "display",
|
4255 |
-
"variants": [
|
4256 |
-
"regular"
|
4257 |
-
],
|
4258 |
-
"subsets": [
|
4259 |
-
"latin",
|
4260 |
-
"latin-ext"
|
4261 |
-
],
|
4262 |
-
"version": "v3",
|
4263 |
-
"lastModified": "2014-01-07",
|
4264 |
-
"files": {
|
4265 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fruktur/v3/PnQvfEi1LssAvhJsCwH__w.ttf"
|
4266 |
-
}
|
4267 |
-
},
|
4268 |
-
{
|
4269 |
-
"kind": "webfonts#webfont",
|
4270 |
-
"family": "Fugaz One",
|
4271 |
-
"category": "display",
|
4272 |
-
"variants": [
|
4273 |
-
"regular"
|
4274 |
-
],
|
4275 |
-
"subsets": [
|
4276 |
-
"latin"
|
4277 |
-
],
|
4278 |
-
"version": "v4",
|
4279 |
-
"lastModified": "2014-01-07",
|
4280 |
-
"files": {
|
4281 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/fugazone/v4/5tteVDCwxsr8-5RuSiRWOw.ttf"
|
4282 |
-
}
|
4283 |
-
},
|
4284 |
-
{
|
4285 |
-
"kind": "webfonts#webfont",
|
4286 |
-
"family": "GFS Didot",
|
4287 |
-
"category": "serif",
|
4288 |
-
"variants": [
|
4289 |
-
"regular"
|
4290 |
-
],
|
4291 |
-
"subsets": [
|
4292 |
-
"greek"
|
4293 |
-
],
|
4294 |
-
"version": "v4",
|
4295 |
-
"lastModified": "2014-01-07",
|
4296 |
-
"files": {
|
4297 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gfsdidot/v4/jQKxZy2RU-h9tkPZcRVluA.ttf"
|
4298 |
-
}
|
4299 |
-
},
|
4300 |
-
{
|
4301 |
-
"kind": "webfonts#webfont",
|
4302 |
-
"family": "GFS Neohellenic",
|
4303 |
-
"category": "sans-serif",
|
4304 |
-
"variants": [
|
4305 |
-
"regular",
|
4306 |
-
"italic",
|
4307 |
-
"700",
|
4308 |
-
"700italic"
|
4309 |
-
],
|
4310 |
-
"subsets": [
|
4311 |
-
"greek"
|
4312 |
-
],
|
4313 |
-
"version": "v5",
|
4314 |
-
"lastModified": "2014-01-07",
|
4315 |
-
"files": {
|
4316 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gfsneohellenic/v5/B4xRqbn-tANVqVgamMsSDiayCZa0z7CpFzlkqoCHztc.ttf",
|
4317 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/gfsneohellenic/v5/KnaWrO4awITAqigQIIYXKkCTdomiyJpIzPbEbIES3rU.ttf",
|
4318 |
-
"700": "http://themes.googleusercontent.com/static/fonts/gfsneohellenic/v5/7HwjPQa7qNiOsnUce2h4448_BwCLZY3eDSV6kppAwI8.ttf",
|
4319 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/gfsneohellenic/v5/FwWjoX6XqT-szJFyqsu_GYFF0fM4h-krcpQk7emtCpE.ttf"
|
4320 |
-
}
|
4321 |
-
},
|
4322 |
-
{
|
4323 |
-
"kind": "webfonts#webfont",
|
4324 |
-
"family": "Gabriela",
|
4325 |
-
"category": "serif",
|
4326 |
-
"variants": [
|
4327 |
-
"regular"
|
4328 |
-
],
|
4329 |
-
"subsets": [
|
4330 |
-
"latin",
|
4331 |
-
"latin-ext"
|
4332 |
-
],
|
4333 |
-
"version": "v2",
|
4334 |
-
"lastModified": "2014-01-07",
|
4335 |
-
"files": {
|
4336 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gabriela/v2/B-2ZfbAO3HDrxqV6lR5tdA.ttf"
|
4337 |
-
}
|
4338 |
-
},
|
4339 |
-
{
|
4340 |
-
"kind": "webfonts#webfont",
|
4341 |
-
"family": "Gafata",
|
4342 |
-
"category": "sans-serif",
|
4343 |
-
"variants": [
|
4344 |
-
"regular"
|
4345 |
-
],
|
4346 |
-
"subsets": [
|
4347 |
-
"latin",
|
4348 |
-
"latin-ext"
|
4349 |
-
],
|
4350 |
-
"version": "v3",
|
4351 |
-
"lastModified": "2014-01-07",
|
4352 |
-
"files": {
|
4353 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gafata/v3/aTFqlki_3Dc3geo-FxHTvQ.ttf"
|
4354 |
-
}
|
4355 |
-
},
|
4356 |
-
{
|
4357 |
-
"kind": "webfonts#webfont",
|
4358 |
-
"family": "Galdeano",
|
4359 |
-
"category": "sans-serif",
|
4360 |
-
"variants": [
|
4361 |
-
"regular"
|
4362 |
-
],
|
4363 |
-
"subsets": [
|
4364 |
-
"latin"
|
4365 |
-
],
|
4366 |
-
"version": "v4",
|
4367 |
-
"lastModified": "2014-01-07",
|
4368 |
-
"files": {
|
4369 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/galdeano/v4/ZKFMQI6HxEG1jOT0UGSZUg.ttf"
|
4370 |
-
}
|
4371 |
-
},
|
4372 |
-
{
|
4373 |
-
"kind": "webfonts#webfont",
|
4374 |
-
"family": "Galindo",
|
4375 |
-
"category": "display",
|
4376 |
-
"variants": [
|
4377 |
-
"regular"
|
4378 |
-
],
|
4379 |
-
"subsets": [
|
4380 |
-
"latin",
|
4381 |
-
"latin-ext"
|
4382 |
-
],
|
4383 |
-
"version": "v2",
|
4384 |
-
"lastModified": "2014-01-07",
|
4385 |
-
"files": {
|
4386 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/galindo/v2/2lafAS_ZEfB33OJryhXDUg.ttf"
|
4387 |
-
}
|
4388 |
-
},
|
4389 |
-
{
|
4390 |
-
"kind": "webfonts#webfont",
|
4391 |
-
"family": "Gentium Basic",
|
4392 |
-
"category": "serif",
|
4393 |
-
"variants": [
|
4394 |
-
"regular",
|
4395 |
-
"italic",
|
4396 |
-
"700",
|
4397 |
-
"700italic"
|
4398 |
-
],
|
4399 |
-
"subsets": [
|
4400 |
-
"latin",
|
4401 |
-
"latin-ext"
|
4402 |
-
],
|
4403 |
-
"version": "v5",
|
4404 |
-
"lastModified": "2014-01-07",
|
4405 |
-
"files": {
|
4406 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gentiumbasic/v5/KCktj43blvLkhOTolFn-MYtBLojGU5Qdl8-5NL4v70w.ttf",
|
4407 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/gentiumbasic/v5/qoFz4NSMaYC2UmsMAG3lyTj3mvXnCeAk09uTtmkJGRc.ttf",
|
4408 |
-
"700": "http://themes.googleusercontent.com/static/fonts/gentiumbasic/v5/2qL6yulgGf0wwgOp-UqGyLNuTeOOLg3nUymsEEGmdO0.ttf",
|
4409 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/gentiumbasic/v5/8N9-c_aQDJ8LbI1NGVMrwtswO1vWwP9exiF8s0wqW10.ttf"
|
4410 |
-
}
|
4411 |
-
},
|
4412 |
-
{
|
4413 |
-
"kind": "webfonts#webfont",
|
4414 |
-
"family": "Gentium Book Basic",
|
4415 |
-
"category": "serif",
|
4416 |
-
"variants": [
|
4417 |
-
"regular",
|
4418 |
-
"italic",
|
4419 |
-
"700",
|
4420 |
-
"700italic"
|
4421 |
-
],
|
4422 |
-
"subsets": [
|
4423 |
-
"latin",
|
4424 |
-
"latin-ext"
|
4425 |
-
],
|
4426 |
-
"version": "v4",
|
4427 |
-
"lastModified": "2014-01-07",
|
4428 |
-
"files": {
|
4429 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gentiumbookbasic/v4/IRFxB2matTxrjZt6a3FUnrWDjKAyldGEr6eEi2MBNeY.ttf",
|
4430 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/gentiumbookbasic/v4/qHqW2lwKO8-uTfIkh8FsUfXfjMwrYnmPVsQth2IcAPY.ttf",
|
4431 |
-
"700": "http://themes.googleusercontent.com/static/fonts/gentiumbookbasic/v4/T2vUYmWzlqUtgLYdlemGnaWESMHIjnSjm9UUxYtEOko.ttf",
|
4432 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/gentiumbookbasic/v4/632u7TMIoFDWQYUaHFUp5PA2A9KyRZEkn4TZVuhsWRM.ttf"
|
4433 |
-
}
|
4434 |
-
},
|
4435 |
-
{
|
4436 |
-
"kind": "webfonts#webfont",
|
4437 |
-
"family": "Geo",
|
4438 |
-
"category": "sans-serif",
|
4439 |
-
"variants": [
|
4440 |
-
"regular",
|
4441 |
-
"italic"
|
4442 |
-
],
|
4443 |
-
"subsets": [
|
4444 |
-
"latin"
|
4445 |
-
],
|
4446 |
-
"version": "v6",
|
4447 |
-
"lastModified": "2014-01-07",
|
4448 |
-
"files": {
|
4449 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/geo/v6/mJuJYk5Pww84B4uHAQ1XaA.ttf",
|
4450 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/geo/v6/8_r1wToF7nPdDuX1qxel6Q.ttf"
|
4451 |
-
}
|
4452 |
-
},
|
4453 |
-
{
|
4454 |
-
"kind": "webfonts#webfont",
|
4455 |
-
"family": "Geostar",
|
4456 |
-
"category": "display",
|
4457 |
-
"variants": [
|
4458 |
-
"regular"
|
4459 |
-
],
|
4460 |
-
"subsets": [
|
4461 |
-
"latin"
|
4462 |
-
],
|
4463 |
-
"version": "v4",
|
4464 |
-
"lastModified": "2014-01-07",
|
4465 |
-
"files": {
|
4466 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/geostar/v4/A8WQbhQbpYx3GWWaShJ9GA.ttf"
|
4467 |
-
}
|
4468 |
-
},
|
4469 |
-
{
|
4470 |
-
"kind": "webfonts#webfont",
|
4471 |
-
"family": "Geostar Fill",
|
4472 |
-
"category": "display",
|
4473 |
-
"variants": [
|
4474 |
-
"regular"
|
4475 |
-
],
|
4476 |
-
"subsets": [
|
4477 |
-
"latin"
|
4478 |
-
],
|
4479 |
-
"version": "v4",
|
4480 |
-
"lastModified": "2014-01-07",
|
4481 |
-
"files": {
|
4482 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/geostarfill/v4/Y5ovXPPOHYTfQzK2aM-hui3USBnSvpkopQaUR-2r7iU.ttf"
|
4483 |
-
}
|
4484 |
-
},
|
4485 |
-
{
|
4486 |
-
"kind": "webfonts#webfont",
|
4487 |
-
"family": "Germania One",
|
4488 |
-
"category": "display",
|
4489 |
-
"variants": [
|
4490 |
-
"regular"
|
4491 |
-
],
|
4492 |
-
"subsets": [
|
4493 |
-
"latin"
|
4494 |
-
],
|
4495 |
-
"version": "v2",
|
4496 |
-
"lastModified": "2014-01-07",
|
4497 |
-
"files": {
|
4498 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/germaniaone/v2/3_6AyUql_-FbDi1e68jHdC3USBnSvpkopQaUR-2r7iU.ttf"
|
4499 |
-
}
|
4500 |
-
},
|
4501 |
-
{
|
4502 |
-
"kind": "webfonts#webfont",
|
4503 |
-
"family": "Gilda Display",
|
4504 |
-
"category": "serif",
|
4505 |
-
"variants": [
|
4506 |
-
"regular"
|
4507 |
-
],
|
4508 |
-
"subsets": [
|
4509 |
-
"latin",
|
4510 |
-
"latin-ext"
|
4511 |
-
],
|
4512 |
-
"version": "v2",
|
4513 |
-
"lastModified": "2014-01-07",
|
4514 |
-
"files": {
|
4515 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gildadisplay/v2/8yAVUZLLZ3wb7dSsjix0CADHmap7fRWINAsw8-RaxNg.ttf"
|
4516 |
-
}
|
4517 |
-
},
|
4518 |
-
{
|
4519 |
-
"kind": "webfonts#webfont",
|
4520 |
-
"family": "Give You Glory",
|
4521 |
-
"category": "handwriting",
|
4522 |
-
"variants": [
|
4523 |
-
"regular"
|
4524 |
-
],
|
4525 |
-
"subsets": [
|
4526 |
-
"latin"
|
4527 |
-
],
|
4528 |
-
"version": "v4",
|
4529 |
-
"lastModified": "2014-01-07",
|
4530 |
-
"files": {
|
4531 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/giveyouglory/v4/DFEWZFgGmfseyIdGRJAxuBwwkpSPZdvjnMtysdqprfI.ttf"
|
4532 |
-
}
|
4533 |
-
},
|
4534 |
-
{
|
4535 |
-
"kind": "webfonts#webfont",
|
4536 |
-
"family": "Glass Antiqua",
|
4537 |
-
"category": "display",
|
4538 |
-
"variants": [
|
4539 |
-
"regular"
|
4540 |
-
],
|
4541 |
-
"subsets": [
|
4542 |
-
"latin",
|
4543 |
-
"latin-ext"
|
4544 |
-
],
|
4545 |
-
"version": "v2",
|
4546 |
-
"lastModified": "2014-01-07",
|
4547 |
-
"files": {
|
4548 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/glassantiqua/v2/0yLrXKplgdUDIMz5TnCHNODcg5akpSnIcsPhLOFv7l8.ttf"
|
4549 |
-
}
|
4550 |
-
},
|
4551 |
-
{
|
4552 |
-
"kind": "webfonts#webfont",
|
4553 |
-
"family": "Glegoo",
|
4554 |
-
"category": "serif",
|
4555 |
-
"variants": [
|
4556 |
-
"regular"
|
4557 |
-
],
|
4558 |
-
"subsets": [
|
4559 |
-
"latin",
|
4560 |
-
"latin-ext"
|
4561 |
-
],
|
4562 |
-
"version": "v2",
|
4563 |
-
"lastModified": "2014-01-07",
|
4564 |
-
"files": {
|
4565 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/glegoo/v2/2tf-h3n2A_SNYXEO0C8bKw.ttf"
|
4566 |
-
}
|
4567 |
-
},
|
4568 |
-
{
|
4569 |
-
"kind": "webfonts#webfont",
|
4570 |
-
"family": "Gloria Hallelujah",
|
4571 |
-
"category": "handwriting",
|
4572 |
-
"variants": [
|
4573 |
-
"regular"
|
4574 |
-
],
|
4575 |
-
"subsets": [
|
4576 |
-
"latin"
|
4577 |
-
],
|
4578 |
-
"version": "v5",
|
4579 |
-
"lastModified": "2014-01-07",
|
4580 |
-
"files": {
|
4581 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gloriahallelujah/v5/CA1k7SlXcY5kvI81M_R28Q3RdPdyebSUyJECJouPsvA.ttf"
|
4582 |
-
}
|
4583 |
-
},
|
4584 |
-
{
|
4585 |
-
"kind": "webfonts#webfont",
|
4586 |
-
"family": "Goblin One",
|
4587 |
-
"category": "display",
|
4588 |
-
"variants": [
|
4589 |
-
"regular"
|
4590 |
-
],
|
4591 |
-
"subsets": [
|
4592 |
-
"latin"
|
4593 |
-
],
|
4594 |
-
"version": "v4",
|
4595 |
-
"lastModified": "2014-01-07",
|
4596 |
-
"files": {
|
4597 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/goblinone/v4/331XtzoXgpVEvNTVcBJ_C_esZW2xOQ-xsNqO47m55DA.ttf"
|
4598 |
-
}
|
4599 |
-
},
|
4600 |
-
{
|
4601 |
-
"kind": "webfonts#webfont",
|
4602 |
-
"family": "Gochi Hand",
|
4603 |
-
"category": "handwriting",
|
4604 |
-
"variants": [
|
4605 |
-
"regular"
|
4606 |
-
],
|
4607 |
-
"subsets": [
|
4608 |
-
"latin"
|
4609 |
-
],
|
4610 |
-
"version": "v5",
|
4611 |
-
"lastModified": "2014-01-07",
|
4612 |
-
"files": {
|
4613 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gochihand/v5/KT1-WxgHsittJ34_20IfAPesZW2xOQ-xsNqO47m55DA.ttf"
|
4614 |
-
}
|
4615 |
-
},
|
4616 |
-
{
|
4617 |
-
"kind": "webfonts#webfont",
|
4618 |
-
"family": "Gorditas",
|
4619 |
-
"category": "display",
|
4620 |
-
"variants": [
|
4621 |
-
"regular",
|
4622 |
-
"700"
|
4623 |
-
],
|
4624 |
-
"subsets": [
|
4625 |
-
"latin"
|
4626 |
-
],
|
4627 |
-
"version": "v2",
|
4628 |
-
"lastModified": "2014-01-07",
|
4629 |
-
"files": {
|
4630 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gorditas/v2/uMgZhXUyH6qNGF3QsjQT5Q.ttf",
|
4631 |
-
"700": "http://themes.googleusercontent.com/static/fonts/gorditas/v2/6-XCeknmxaon8AUqVkMnHaCWcynf_cDxXwCLxiixG1c.ttf"
|
4632 |
-
}
|
4633 |
-
},
|
4634 |
-
{
|
4635 |
-
"kind": "webfonts#webfont",
|
4636 |
-
"family": "Goudy Bookletter 1911",
|
4637 |
-
"category": "serif",
|
4638 |
-
"variants": [
|
4639 |
-
"regular"
|
4640 |
-
],
|
4641 |
-
"subsets": [
|
4642 |
-
"latin"
|
4643 |
-
],
|
4644 |
-
"version": "v4",
|
4645 |
-
"lastModified": "2014-01-07",
|
4646 |
-
"files": {
|
4647 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/goudybookletter1911/v4/l5lwlGTN3pEY5Bf-rQEuIIjNDsyURsIKu4GSfvSE4mA.ttf"
|
4648 |
-
}
|
4649 |
-
},
|
4650 |
-
{
|
4651 |
-
"kind": "webfonts#webfont",
|
4652 |
-
"family": "Graduate",
|
4653 |
-
"category": "display",
|
4654 |
-
"variants": [
|
4655 |
-
"regular"
|
4656 |
-
],
|
4657 |
-
"subsets": [
|
4658 |
-
"latin"
|
4659 |
-
],
|
4660 |
-
"version": "v2",
|
4661 |
-
"lastModified": "2014-01-07",
|
4662 |
-
"files": {
|
4663 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/graduate/v2/JpAmYLHqcIh9_Ff35HHwiA.ttf"
|
4664 |
-
}
|
4665 |
-
},
|
4666 |
-
{
|
4667 |
-
"kind": "webfonts#webfont",
|
4668 |
-
"family": "Grand Hotel",
|
4669 |
-
"category": "handwriting",
|
4670 |
-
"variants": [
|
4671 |
-
"regular"
|
4672 |
-
],
|
4673 |
-
"subsets": [
|
4674 |
-
"latin",
|
4675 |
-
"latin-ext"
|
4676 |
-
],
|
4677 |
-
"version": "v2",
|
4678 |
-
"lastModified": "2014-01-07",
|
4679 |
-
"files": {
|
4680 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/grandhotel/v2/C_A8HiFZjXPpnMt38XnK7qCWcynf_cDxXwCLxiixG1c.ttf"
|
4681 |
-
}
|
4682 |
-
},
|
4683 |
-
{
|
4684 |
-
"kind": "webfonts#webfont",
|
4685 |
-
"family": "Gravitas One",
|
4686 |
-
"category": "display",
|
4687 |
-
"variants": [
|
4688 |
-
"regular"
|
4689 |
-
],
|
4690 |
-
"subsets": [
|
4691 |
-
"latin"
|
4692 |
-
],
|
4693 |
-
"version": "v4",
|
4694 |
-
"lastModified": "2014-01-07",
|
4695 |
-
"files": {
|
4696 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gravitasone/v4/nBHdBv6zVNU8MtP6w9FwTS3USBnSvpkopQaUR-2r7iU.ttf"
|
4697 |
-
}
|
4698 |
-
},
|
4699 |
-
{
|
4700 |
-
"kind": "webfonts#webfont",
|
4701 |
-
"family": "Great Vibes",
|
4702 |
-
"category": "handwriting",
|
4703 |
-
"variants": [
|
4704 |
-
"regular"
|
4705 |
-
],
|
4706 |
-
"subsets": [
|
4707 |
-
"latin",
|
4708 |
-
"latin-ext"
|
4709 |
-
],
|
4710 |
-
"version": "v2",
|
4711 |
-
"lastModified": "2014-01-07",
|
4712 |
-
"files": {
|
4713 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/greatvibes/v2/4Mi5RG_9LjQYrTU55GN_L6CWcynf_cDxXwCLxiixG1c.ttf"
|
4714 |
-
}
|
4715 |
-
},
|
4716 |
-
{
|
4717 |
-
"kind": "webfonts#webfont",
|
4718 |
-
"family": "Griffy",
|
4719 |
-
"category": "display",
|
4720 |
-
"variants": [
|
4721 |
-
"regular"
|
4722 |
-
],
|
4723 |
-
"subsets": [
|
4724 |
-
"latin",
|
4725 |
-
"latin-ext"
|
4726 |
-
],
|
4727 |
-
"version": "v2",
|
4728 |
-
"lastModified": "2014-01-07",
|
4729 |
-
"files": {
|
4730 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/griffy/v2/vWkyYGBSyE5xjnShNtJtzw.ttf"
|
4731 |
-
}
|
4732 |
-
},
|
4733 |
-
{
|
4734 |
-
"kind": "webfonts#webfont",
|
4735 |
-
"family": "Gruppo",
|
4736 |
-
"category": "display",
|
4737 |
-
"variants": [
|
4738 |
-
"regular"
|
4739 |
-
],
|
4740 |
-
"subsets": [
|
4741 |
-
"latin",
|
4742 |
-
"latin-ext"
|
4743 |
-
],
|
4744 |
-
"version": "v5",
|
4745 |
-
"lastModified": "2014-01-07",
|
4746 |
-
"files": {
|
4747 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gruppo/v5/pS_JM0cK_piBZve-lfUq9w.ttf"
|
4748 |
-
}
|
4749 |
-
},
|
4750 |
-
{
|
4751 |
-
"kind": "webfonts#webfont",
|
4752 |
-
"family": "Gudea",
|
4753 |
-
"category": "sans-serif",
|
4754 |
-
"variants": [
|
4755 |
-
"regular",
|
4756 |
-
"italic",
|
4757 |
-
"700"
|
4758 |
-
],
|
4759 |
-
"subsets": [
|
4760 |
-
"latin",
|
4761 |
-
"latin-ext"
|
4762 |
-
],
|
4763 |
-
"version": "v2",
|
4764 |
-
"lastModified": "2014-01-07",
|
4765 |
-
"files": {
|
4766 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/gudea/v2/S-4QqBlkMPiiA3jNeCR5yw.ttf",
|
4767 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/gudea/v2/7mNgsGw_vfS-uUgRVXNDSw.ttf",
|
4768 |
-
"700": "http://themes.googleusercontent.com/static/fonts/gudea/v2/lsip4aiWhJ9bx172Y9FN_w.ttf"
|
4769 |
-
}
|
4770 |
-
},
|
4771 |
-
{
|
4772 |
-
"kind": "webfonts#webfont",
|
4773 |
-
"family": "Habibi",
|
4774 |
-
"category": "serif",
|
4775 |
-
"variants": [
|
4776 |
-
"regular"
|
4777 |
-
],
|
4778 |
-
"subsets": [
|
4779 |
-
"latin",
|
4780 |
-
"latin-ext"
|
4781 |
-
],
|
4782 |
-
"version": "v3",
|
4783 |
-
"lastModified": "2014-01-07",
|
4784 |
-
"files": {
|
4785 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/habibi/v3/YYyqXF6pWpL7kmKgS_2iUA.ttf"
|
4786 |
-
}
|
4787 |
-
},
|
4788 |
-
{
|
4789 |
-
"kind": "webfonts#webfont",
|
4790 |
-
"family": "Hammersmith One",
|
4791 |
-
"category": "sans-serif",
|
4792 |
-
"variants": [
|
4793 |
-
"regular"
|
4794 |
-
],
|
4795 |
-
"subsets": [
|
4796 |
-
"latin",
|
4797 |
-
"latin-ext"
|
4798 |
-
],
|
4799 |
-
"version": "v5",
|
4800 |
-
"lastModified": "2014-01-07",
|
4801 |
-
"files": {
|
4802 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/hammersmithone/v5/FWNn6ITYqL6or7ZTmBxRhjjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
4803 |
-
}
|
4804 |
-
},
|
4805 |
-
{
|
4806 |
-
"kind": "webfonts#webfont",
|
4807 |
-
"family": "Hanalei",
|
4808 |
-
"category": "display",
|
4809 |
-
"variants": [
|
4810 |
-
"regular"
|
4811 |
-
],
|
4812 |
-
"subsets": [
|
4813 |
-
"latin",
|
4814 |
-
"latin-ext"
|
4815 |
-
],
|
4816 |
-
"version": "v3",
|
4817 |
-
"lastModified": "2014-01-07",
|
4818 |
-
"files": {
|
4819 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/hanalei/v3/Sx8vVMBnXSQyK6Cn0CBJ3A.ttf"
|
4820 |
-
}
|
4821 |
-
},
|
4822 |
-
{
|
4823 |
-
"kind": "webfonts#webfont",
|
4824 |
-
"family": "Hanalei Fill",
|
4825 |
-
"category": "display",
|
4826 |
-
"variants": [
|
4827 |
-
"regular"
|
4828 |
-
],
|
4829 |
-
"subsets": [
|
4830 |
-
"latin",
|
4831 |
-
"latin-ext"
|
4832 |
-
],
|
4833 |
-
"version": "v2",
|
4834 |
-
"lastModified": "2014-01-07",
|
4835 |
-
"files": {
|
4836 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/hanaleifill/v2/5uPeWLnaDdtm4UBG26Ds6C3USBnSvpkopQaUR-2r7iU.ttf"
|
4837 |
-
}
|
4838 |
-
},
|
4839 |
-
{
|
4840 |
-
"kind": "webfonts#webfont",
|
4841 |
-
"family": "Handlee",
|
4842 |
-
"category": "handwriting",
|
4843 |
-
"variants": [
|
4844 |
-
"regular"
|
4845 |
-
],
|
4846 |
-
"subsets": [
|
4847 |
-
"latin"
|
4848 |
-
],
|
4849 |
-
"version": "v3",
|
4850 |
-
"lastModified": "2014-01-07",
|
4851 |
-
"files": {
|
4852 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/handlee/v3/6OfkXkyC0E5NZN80ED8u3A.ttf"
|
4853 |
-
}
|
4854 |
-
},
|
4855 |
-
{
|
4856 |
-
"kind": "webfonts#webfont",
|
4857 |
-
"family": "Hanuman",
|
4858 |
-
"category": "serif",
|
4859 |
-
"variants": [
|
4860 |
-
"regular",
|
4861 |
-
"700"
|
4862 |
-
],
|
4863 |
-
"subsets": [
|
4864 |
-
"khmer"
|
4865 |
-
],
|
4866 |
-
"version": "v6",
|
4867 |
-
"lastModified": "2014-01-07",
|
4868 |
-
"files": {
|
4869 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/hanuman/v6/hRhwOGGmElJSl6KSPvEnOQ.ttf",
|
4870 |
-
"700": "http://themes.googleusercontent.com/static/fonts/hanuman/v6/lzzXZ2l84x88giDrbfq76vesZW2xOQ-xsNqO47m55DA.ttf"
|
4871 |
-
}
|
4872 |
-
},
|
4873 |
-
{
|
4874 |
-
"kind": "webfonts#webfont",
|
4875 |
-
"family": "Happy Monkey",
|
4876 |
-
"category": "display",
|
4877 |
-
"variants": [
|
4878 |
-
"regular"
|
4879 |
-
],
|
4880 |
-
"subsets": [
|
4881 |
-
"latin",
|
4882 |
-
"latin-ext"
|
4883 |
-
],
|
4884 |
-
"version": "v3",
|
4885 |
-
"lastModified": "2014-01-07",
|
4886 |
-
"files": {
|
4887 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/happymonkey/v3/c2o0ps8nkBmaOYctqBq1rS3USBnSvpkopQaUR-2r7iU.ttf"
|
4888 |
-
}
|
4889 |
-
},
|
4890 |
-
{
|
4891 |
-
"kind": "webfonts#webfont",
|
4892 |
-
"family": "Headland One",
|
4893 |
-
"category": "serif",
|
4894 |
-
"variants": [
|
4895 |
-
"regular"
|
4896 |
-
],
|
4897 |
-
"subsets": [
|
4898 |
-
"latin",
|
4899 |
-
"latin-ext"
|
4900 |
-
],
|
4901 |
-
"version": "v2",
|
4902 |
-
"lastModified": "2014-01-07",
|
4903 |
-
"files": {
|
4904 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/headlandone/v2/iGmBeOvQGfq9DSbjJ8jDVy3USBnSvpkopQaUR-2r7iU.ttf"
|
4905 |
-
}
|
4906 |
-
},
|
4907 |
-
{
|
4908 |
-
"kind": "webfonts#webfont",
|
4909 |
-
"family": "Henny Penny",
|
4910 |
-
"category": "display",
|
4911 |
-
"variants": [
|
4912 |
-
"regular"
|
4913 |
-
],
|
4914 |
-
"subsets": [
|
4915 |
-
"latin"
|
4916 |
-
],
|
4917 |
-
"version": "v2",
|
4918 |
-
"lastModified": "2014-01-07",
|
4919 |
-
"files": {
|
4920 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/hennypenny/v2/XRgo3ogXyi3tpsFfjImRF6CWcynf_cDxXwCLxiixG1c.ttf"
|
4921 |
-
}
|
4922 |
-
},
|
4923 |
-
{
|
4924 |
-
"kind": "webfonts#webfont",
|
4925 |
-
"family": "Herr Von Muellerhoff",
|
4926 |
-
"category": "handwriting",
|
4927 |
-
"variants": [
|
4928 |
-
"regular"
|
4929 |
-
],
|
4930 |
-
"subsets": [
|
4931 |
-
"latin",
|
4932 |
-
"latin-ext"
|
4933 |
-
],
|
4934 |
-
"version": "v4",
|
4935 |
-
"lastModified": "2014-01-07",
|
4936 |
-
"files": {
|
4937 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/herrvonmuellerhoff/v4/mmy24EUmk4tjm4gAEjUd7NLGIYrUsBdh-JWHYgiDiMU.ttf"
|
4938 |
-
}
|
4939 |
-
},
|
4940 |
-
{
|
4941 |
-
"kind": "webfonts#webfont",
|
4942 |
-
"family": "Holtwood One SC",
|
4943 |
-
"category": "serif",
|
4944 |
-
"variants": [
|
4945 |
-
"regular"
|
4946 |
-
],
|
4947 |
-
"subsets": [
|
4948 |
-
"latin"
|
4949 |
-
],
|
4950 |
-
"version": "v5",
|
4951 |
-
"lastModified": "2014-01-07",
|
4952 |
-
"files": {
|
4953 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/holtwoodonesc/v5/sToOq3cIxbfnhbEkgYNuBbAgSRh1LpJXlLfl8IbsmHg.ttf"
|
4954 |
-
}
|
4955 |
-
},
|
4956 |
-
{
|
4957 |
-
"kind": "webfonts#webfont",
|
4958 |
-
"family": "Homemade Apple",
|
4959 |
-
"category": "handwriting",
|
4960 |
-
"variants": [
|
4961 |
-
"regular"
|
4962 |
-
],
|
4963 |
-
"subsets": [
|
4964 |
-
"latin"
|
4965 |
-
],
|
4966 |
-
"version": "v4",
|
4967 |
-
"lastModified": "2014-01-07",
|
4968 |
-
"files": {
|
4969 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/homemadeapple/v4/yg3UMEsefgZ8IHz_ryz86BiPOmFWYV1WlrJkRafc4c0.ttf"
|
4970 |
-
}
|
4971 |
-
},
|
4972 |
-
{
|
4973 |
-
"kind": "webfonts#webfont",
|
4974 |
-
"family": "Homenaje",
|
4975 |
-
"category": "sans-serif",
|
4976 |
-
"variants": [
|
4977 |
-
"regular"
|
4978 |
-
],
|
4979 |
-
"subsets": [
|
4980 |
-
"latin",
|
4981 |
-
"latin-ext"
|
4982 |
-
],
|
4983 |
-
"version": "v3",
|
4984 |
-
"lastModified": "2014-01-07",
|
4985 |
-
"files": {
|
4986 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/homenaje/v3/v0YBU0iBRrGdVjDNQILxtA.ttf"
|
4987 |
-
}
|
4988 |
-
},
|
4989 |
-
{
|
4990 |
-
"kind": "webfonts#webfont",
|
4991 |
-
"family": "IM Fell DW Pica",
|
4992 |
-
"category": "serif",
|
4993 |
-
"variants": [
|
4994 |
-
"regular",
|
4995 |
-
"italic"
|
4996 |
-
],
|
4997 |
-
"subsets": [
|
4998 |
-
"latin"
|
4999 |
-
],
|
5000 |
-
"version": "v4",
|
5001 |
-
"lastModified": "2014-01-07",
|
5002 |
-
"files": {
|
5003 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/imfelldwpica/v4/W81bfaWiUicLSPbJhW-ATsA5qm663gJGVdtpamafG5A.ttf",
|
5004 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/imfelldwpica/v4/alQJ8SK5aSOZVaelYoyT4PL2asmh5DlYQYCosKo6yQs.ttf"
|
5005 |
-
}
|
5006 |
-
},
|
5007 |
-
{
|
5008 |
-
"kind": "webfonts#webfont",
|
5009 |
-
"family": "IM Fell DW Pica SC",
|
5010 |
-
"category": "serif",
|
5011 |
-
"variants": [
|
5012 |
-
"regular"
|
5013 |
-
],
|
5014 |
-
"subsets": [
|
5015 |
-
"latin"
|
5016 |
-
],
|
5017 |
-
"version": "v4",
|
5018 |
-
"lastModified": "2014-01-07",
|
5019 |
-
"files": {
|
5020 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/imfelldwpicasc/v4/xBKKJV4z2KsrtQnmjGO17JZ9RBdEL0H9o5qzT1Rtof4.ttf"
|
5021 |
-
}
|
5022 |
-
},
|
5023 |
-
{
|
5024 |
-
"kind": "webfonts#webfont",
|
5025 |
-
"family": "IM Fell Double Pica",
|
5026 |
-
"category": "serif",
|
5027 |
-
"variants": [
|
5028 |
-
"regular",
|
5029 |
-
"italic"
|
5030 |
-
],
|
5031 |
-
"subsets": [
|
5032 |
-
"latin"
|
5033 |
-
],
|
5034 |
-
"version": "v4",
|
5035 |
-
"lastModified": "2014-01-07",
|
5036 |
-
"files": {
|
5037 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/imfelldoublepica/v4/yN1wY_01BkQnO0LYAhXdUol14jEdVOhEmvtCMCVwYak.ttf",
|
5038 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/imfelldoublepica/v4/64odUh2hAw8D9dkFKTlWYq0AWwkgdQfsRHec8TYi4mI.ttf"
|
5039 |
-
}
|
5040 |
-
},
|
5041 |
-
{
|
5042 |
-
"kind": "webfonts#webfont",
|
5043 |
-
"family": "IM Fell Double Pica SC",
|
5044 |
-
"category": "serif",
|
5045 |
-
"variants": [
|
5046 |
-
"regular"
|
5047 |
-
],
|
5048 |
-
"subsets": [
|
5049 |
-
"latin"
|
5050 |
-
],
|
5051 |
-
"version": "v4",
|
5052 |
-
"lastModified": "2014-01-07",
|
5053 |
-
"files": {
|
5054 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/imfelldoublepicasc/v4/jkrUtrLFpMw4ZazhfkKsGwc4LoC4OJUqLw9omnT3VOU.ttf"
|
5055 |
-
}
|
5056 |
-
},
|
5057 |
-
{
|
5058 |
-
"kind": "webfonts#webfont",
|
5059 |
-
"family": "IM Fell English",
|
5060 |
-
"category": "serif",
|
5061 |
-
"variants": [
|
5062 |
-
"regular",
|
5063 |
-
"italic"
|
5064 |
-
],
|
5065 |
-
"subsets": [
|
5066 |
-
"latin"
|
5067 |
-
],
|
5068 |
-
"version": "v4",
|
5069 |
-
"lastModified": "2014-01-07",
|
5070 |
-
"files": {
|
5071 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/imfellenglish/v4/xwIisCqGFi8pff-oa9uSVHGNmx1fDm-u2eBJHQkdrmk.ttf",
|
5072 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/imfellenglish/v4/Z3cnIAI_L3XTRfz4JuZKbuewladMPCWTthtMv9cPS-c.ttf"
|
5073 |
-
}
|
5074 |
-
},
|
5075 |
-
{
|
5076 |
-
"kind": "webfonts#webfont",
|
5077 |
-
"family": "IM Fell English SC",
|
5078 |
-
"category": "serif",
|
5079 |
-
"variants": [
|
5080 |
-
"regular"
|
5081 |
-
],
|
5082 |
-
"subsets": [
|
5083 |
-
"latin"
|
5084 |
-
],
|
5085 |
-
"version": "v4",
|
5086 |
-
"lastModified": "2014-01-07",
|
5087 |
-
"files": {
|
5088 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/imfellenglishsc/v4/h3Tn6yWfw4b5qaLD1RWvz5ATixNthKRRR1XVH3rJNiw.ttf"
|
5089 |
-
}
|
5090 |
-
},
|
5091 |
-
{
|
5092 |
-
"kind": "webfonts#webfont",
|
5093 |
-
"family": "IM Fell French Canon",
|
5094 |
-
"category": "serif",
|
5095 |
-
"variants": [
|
5096 |
-
"regular",
|
5097 |
-
"italic"
|
5098 |
-
],
|
5099 |
-
"subsets": [
|
5100 |
-
"latin"
|
5101 |
-
],
|
5102 |
-
"version": "v4",
|
5103 |
-
"lastModified": "2014-01-07",
|
5104 |
-
"files": {
|
5105 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/imfellfrenchcanon/v4/iKB0WL1BagSpNPz3NLMdsJ3V2FNpBrlLSvqUnERhBP8.ttf",
|
5106 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/imfellfrenchcanon/v4/owCuNQkLLFW7TBBPJbMnhRa-QL94KdW80H29tcyld2A.ttf"
|
5107 |
-
}
|
5108 |
-
},
|
5109 |
-
{
|
5110 |
-
"kind": "webfonts#webfont",
|
5111 |
-
"family": "IM Fell French Canon SC",
|
5112 |
-
"category": "serif",
|
5113 |
-
"variants": [
|
5114 |
-
"regular"
|
5115 |
-
],
|
5116 |
-
"subsets": [
|
5117 |
-
"latin"
|
5118 |
-
],
|
5119 |
-
"version": "v4",
|
5120 |
-
"lastModified": "2014-01-07",
|
5121 |
-
"files": {
|
5122 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/imfellfrenchcanonsc/v4/kA3bS19-tQbeT_iG32EZmaiyyzHwYrAbmNulTz423iM.ttf"
|
5123 |
-
}
|
5124 |
-
},
|
5125 |
-
{
|
5126 |
-
"kind": "webfonts#webfont",
|
5127 |
-
"family": "IM Fell Great Primer",
|
5128 |
-
"category": "serif",
|
5129 |
-
"variants": [
|
5130 |
-
"regular",
|
5131 |
-
"italic"
|
5132 |
-
],
|
5133 |
-
"subsets": [
|
5134 |
-
"latin"
|
5135 |
-
],
|
5136 |
-
"version": "v4",
|
5137 |
-
"lastModified": "2014-01-07",
|
5138 |
-
"files": {
|
5139 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/imfellgreatprimer/v4/AL8ALGNthei20f9Cu3e93rgeX3ROgtTz44CitKAxzKI.ttf",
|
5140 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/imfellgreatprimer/v4/1a-artkXMVg682r7TTxVY1_YG2SFv8Ma7CxRl1S3o7g.ttf"
|
5141 |
-
}
|
5142 |
-
},
|
5143 |
-
{
|
5144 |
-
"kind": "webfonts#webfont",
|
5145 |
-
"family": "IM Fell Great Primer SC",
|
5146 |
-
"category": "serif",
|
5147 |
-
"variants": [
|
5148 |
-
"regular"
|
5149 |
-
],
|
5150 |
-
"subsets": [
|
5151 |
-
"latin"
|
5152 |
-
],
|
5153 |
-
"version": "v4",
|
5154 |
-
"lastModified": "2014-01-07",
|
5155 |
-
"files": {
|
5156 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/imfellgreatprimersc/v4/A313vRj97hMMGFjt6rgSJtRg-ciw1Y27JeXb2Zv4lZQ.ttf"
|
5157 |
-
}
|
5158 |
-
},
|
5159 |
-
{
|
5160 |
-
"kind": "webfonts#webfont",
|
5161 |
-
"family": "Iceberg",
|
5162 |
-
"category": "display",
|
5163 |
-
"variants": [
|
5164 |
-
"regular"
|
5165 |
-
],
|
5166 |
-
"subsets": [
|
5167 |
-
"latin"
|
5168 |
-
],
|
5169 |
-
"version": "v2",
|
5170 |
-
"lastModified": "2014-01-07",
|
5171 |
-
"files": {
|
5172 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/iceberg/v2/p2XVm4M-N0AOEEOymFKC5w.ttf"
|
5173 |
-
}
|
5174 |
-
},
|
5175 |
-
{
|
5176 |
-
"kind": "webfonts#webfont",
|
5177 |
-
"family": "Iceland",
|
5178 |
-
"category": "display",
|
5179 |
-
"variants": [
|
5180 |
-
"regular"
|
5181 |
-
],
|
5182 |
-
"subsets": [
|
5183 |
-
"latin"
|
5184 |
-
],
|
5185 |
-
"version": "v3",
|
5186 |
-
"lastModified": "2014-01-07",
|
5187 |
-
"files": {
|
5188 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/iceland/v3/kq3uTMGgvzWGNi39B_WxGA.ttf"
|
5189 |
-
}
|
5190 |
-
},
|
5191 |
-
{
|
5192 |
-
"kind": "webfonts#webfont",
|
5193 |
-
"family": "Imprima",
|
5194 |
-
"category": "sans-serif",
|
5195 |
-
"variants": [
|
5196 |
-
"regular"
|
5197 |
-
],
|
5198 |
-
"subsets": [
|
5199 |
-
"latin",
|
5200 |
-
"latin-ext"
|
5201 |
-
],
|
5202 |
-
"version": "v2",
|
5203 |
-
"lastModified": "2014-01-07",
|
5204 |
-
"files": {
|
5205 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/imprima/v2/eRjquWLjwLGnTEhLH7u3kA.ttf"
|
5206 |
-
}
|
5207 |
-
},
|
5208 |
-
{
|
5209 |
-
"kind": "webfonts#webfont",
|
5210 |
-
"family": "Inconsolata",
|
5211 |
-
"category": "monospace",
|
5212 |
-
"variants": [
|
5213 |
-
"regular",
|
5214 |
-
"700"
|
5215 |
-
],
|
5216 |
-
"subsets": [
|
5217 |
-
"latin",
|
5218 |
-
"latin-ext"
|
5219 |
-
],
|
5220 |
-
"version": "v7",
|
5221 |
-
"lastModified": "2014-03-18",
|
5222 |
-
"files": {
|
5223 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/inconsolata/v7/7bMKuoy6Nh0ft0SHnIGMuaCWcynf_cDxXwCLxiixG1c.ttf",
|
5224 |
-
"700": "http://themes.googleusercontent.com/static/fonts/inconsolata/v7/AIed271kqQlcIRSOnQH0yXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
5225 |
-
}
|
5226 |
-
},
|
5227 |
-
{
|
5228 |
-
"kind": "webfonts#webfont",
|
5229 |
-
"family": "Inder",
|
5230 |
-
"category": "sans-serif",
|
5231 |
-
"variants": [
|
5232 |
-
"regular"
|
5233 |
-
],
|
5234 |
-
"subsets": [
|
5235 |
-
"latin",
|
5236 |
-
"latin-ext"
|
5237 |
-
],
|
5238 |
-
"version": "v3",
|
5239 |
-
"lastModified": "2014-01-07",
|
5240 |
-
"files": {
|
5241 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/inder/v3/C38TwecLTfKxIHDc_Adcrw.ttf"
|
5242 |
-
}
|
5243 |
-
},
|
5244 |
-
{
|
5245 |
-
"kind": "webfonts#webfont",
|
5246 |
-
"family": "Indie Flower",
|
5247 |
-
"category": "handwriting",
|
5248 |
-
"variants": [
|
5249 |
-
"regular"
|
5250 |
-
],
|
5251 |
-
"subsets": [
|
5252 |
-
"latin"
|
5253 |
-
],
|
5254 |
-
"version": "v5",
|
5255 |
-
"lastModified": "2014-01-07",
|
5256 |
-
"files": {
|
5257 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/indieflower/v5/10JVD_humAd5zP2yrFqw6i3USBnSvpkopQaUR-2r7iU.ttf"
|
5258 |
-
}
|
5259 |
-
},
|
5260 |
-
{
|
5261 |
-
"kind": "webfonts#webfont",
|
5262 |
-
"family": "Inika",
|
5263 |
-
"category": "serif",
|
5264 |
-
"variants": [
|
5265 |
-
"regular",
|
5266 |
-
"700"
|
5267 |
-
],
|
5268 |
-
"subsets": [
|
5269 |
-
"latin",
|
5270 |
-
"latin-ext"
|
5271 |
-
],
|
5272 |
-
"version": "v2",
|
5273 |
-
"lastModified": "2014-01-07",
|
5274 |
-
"files": {
|
5275 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/inika/v2/eZCrULQGaIxkrRoGz_DjhQ.ttf",
|
5276 |
-
"700": "http://themes.googleusercontent.com/static/fonts/inika/v2/bl3ZoTyrWsFun2zYbsgJrA.ttf"
|
5277 |
-
}
|
5278 |
-
},
|
5279 |
-
{
|
5280 |
-
"kind": "webfonts#webfont",
|
5281 |
-
"family": "Irish Grover",
|
5282 |
-
"category": "display",
|
5283 |
-
"variants": [
|
5284 |
-
"regular"
|
5285 |
-
],
|
5286 |
-
"subsets": [
|
5287 |
-
"latin"
|
5288 |
-
],
|
5289 |
-
"version": "v4",
|
5290 |
-
"lastModified": "2014-01-07",
|
5291 |
-
"files": {
|
5292 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/irishgrover/v4/kUp7uUPooL-KsLGzeVJbBC3USBnSvpkopQaUR-2r7iU.ttf"
|
5293 |
-
}
|
5294 |
-
},
|
5295 |
-
{
|
5296 |
-
"kind": "webfonts#webfont",
|
5297 |
-
"family": "Istok Web",
|
5298 |
-
"category": "sans-serif",
|
5299 |
-
"variants": [
|
5300 |
-
"regular",
|
5301 |
-
"italic",
|
5302 |
-
"700",
|
5303 |
-
"700italic"
|
5304 |
-
],
|
5305 |
-
"subsets": [
|
5306 |
-
"latin",
|
5307 |
-
"cyrillic",
|
5308 |
-
"cyrillic-ext",
|
5309 |
-
"latin-ext"
|
5310 |
-
],
|
5311 |
-
"version": "v6",
|
5312 |
-
"lastModified": "2014-01-07",
|
5313 |
-
"files": {
|
5314 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/istokweb/v6/RYLSjEXQ0nNtLLc4n7--dQ.ttf",
|
5315 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/istokweb/v6/kvcT2SlTjmGbC3YlZxmrl6CWcynf_cDxXwCLxiixG1c.ttf",
|
5316 |
-
"700": "http://themes.googleusercontent.com/static/fonts/istokweb/v6/2koEo4AKFSvK4B52O_Mwai3USBnSvpkopQaUR-2r7iU.ttf",
|
5317 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/istokweb/v6/ycQ3g52ELrh3o_HYCNNUw3e1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
5318 |
-
}
|
5319 |
-
},
|
5320 |
-
{
|
5321 |
-
"kind": "webfonts#webfont",
|
5322 |
-
"family": "Italiana",
|
5323 |
-
"category": "serif",
|
5324 |
-
"variants": [
|
5325 |
-
"regular"
|
5326 |
-
],
|
5327 |
-
"subsets": [
|
5328 |
-
"latin"
|
5329 |
-
],
|
5330 |
-
"version": "v2",
|
5331 |
-
"lastModified": "2014-01-07",
|
5332 |
-
"files": {
|
5333 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/italiana/v2/dt95fkCSTOF-c6QNjwSycA.ttf"
|
5334 |
-
}
|
5335 |
-
},
|
5336 |
-
{
|
5337 |
-
"kind": "webfonts#webfont",
|
5338 |
-
"family": "Italianno",
|
5339 |
-
"category": "handwriting",
|
5340 |
-
"variants": [
|
5341 |
-
"regular"
|
5342 |
-
],
|
5343 |
-
"subsets": [
|
5344 |
-
"latin",
|
5345 |
-
"latin-ext"
|
5346 |
-
],
|
5347 |
-
"version": "v4",
|
5348 |
-
"lastModified": "2014-01-07",
|
5349 |
-
"files": {
|
5350 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/italianno/v4/HsyHnLpKf8uP7aMpDQHZmg.ttf"
|
5351 |
-
}
|
5352 |
-
},
|
5353 |
-
{
|
5354 |
-
"kind": "webfonts#webfont",
|
5355 |
-
"family": "Jacques Francois",
|
5356 |
-
"category": "serif",
|
5357 |
-
"variants": [
|
5358 |
-
"regular"
|
5359 |
-
],
|
5360 |
-
"subsets": [
|
5361 |
-
"latin"
|
5362 |
-
],
|
5363 |
-
"version": "v2",
|
5364 |
-
"lastModified": "2014-01-07",
|
5365 |
-
"files": {
|
5366 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/jacquesfrancois/v2/_-0XWPQIW6tOzTHg4KaJ_M13D_4KM32Q4UmTSjpuNGQ.ttf"
|
5367 |
-
}
|
5368 |
-
},
|
5369 |
-
{
|
5370 |
-
"kind": "webfonts#webfont",
|
5371 |
-
"family": "Jacques Francois Shadow",
|
5372 |
-
"category": "display",
|
5373 |
-
"variants": [
|
5374 |
-
"regular"
|
5375 |
-
],
|
5376 |
-
"subsets": [
|
5377 |
-
"latin"
|
5378 |
-
],
|
5379 |
-
"version": "v2",
|
5380 |
-
"lastModified": "2014-01-07",
|
5381 |
-
"files": {
|
5382 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/jacquesfrancoisshadow/v2/V14y0H3vq56fY9SV4OL_FASt0D_oLVawA8L8b9iKjbs.ttf"
|
5383 |
-
}
|
5384 |
-
},
|
5385 |
-
{
|
5386 |
-
"kind": "webfonts#webfont",
|
5387 |
-
"family": "Jim Nightshade",
|
5388 |
-
"category": "handwriting",
|
5389 |
-
"variants": [
|
5390 |
-
"regular"
|
5391 |
-
],
|
5392 |
-
"subsets": [
|
5393 |
-
"latin",
|
5394 |
-
"latin-ext"
|
5395 |
-
],
|
5396 |
-
"version": "v2",
|
5397 |
-
"lastModified": "2014-01-07",
|
5398 |
-
"files": {
|
5399 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/jimnightshade/v2/_n43lYHXVWNgXegdYRIK9CF1W_bo0EdycfH0kHciIic.ttf"
|
5400 |
-
}
|
5401 |
-
},
|
5402 |
-
{
|
5403 |
-
"kind": "webfonts#webfont",
|
5404 |
-
"family": "Jockey One",
|
5405 |
-
"category": "sans-serif",
|
5406 |
-
"variants": [
|
5407 |
-
"regular"
|
5408 |
-
],
|
5409 |
-
"subsets": [
|
5410 |
-
"latin",
|
5411 |
-
"latin-ext"
|
5412 |
-
],
|
5413 |
-
"version": "v4",
|
5414 |
-
"lastModified": "2014-01-07",
|
5415 |
-
"files": {
|
5416 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/jockeyone/v4/cAucnOZLvFo07w2AbufBCfesZW2xOQ-xsNqO47m55DA.ttf"
|
5417 |
-
}
|
5418 |
-
},
|
5419 |
-
{
|
5420 |
-
"kind": "webfonts#webfont",
|
5421 |
-
"family": "Jolly Lodger",
|
5422 |
-
"category": "display",
|
5423 |
-
"variants": [
|
5424 |
-
"regular"
|
5425 |
-
],
|
5426 |
-
"subsets": [
|
5427 |
-
"latin",
|
5428 |
-
"latin-ext"
|
5429 |
-
],
|
5430 |
-
"version": "v2",
|
5431 |
-
"lastModified": "2014-01-07",
|
5432 |
-
"files": {
|
5433 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/jollylodger/v2/RX8HnkBgaEKQSHQyP9itiS3USBnSvpkopQaUR-2r7iU.ttf"
|
5434 |
-
}
|
5435 |
-
},
|
5436 |
-
{
|
5437 |
-
"kind": "webfonts#webfont",
|
5438 |
-
"family": "Josefin Sans",
|
5439 |
-
"category": "sans-serif",
|
5440 |
-
"variants": [
|
5441 |
-
"100",
|
5442 |
-
"100italic",
|
5443 |
-
"300",
|
5444 |
-
"300italic",
|
5445 |
-
"regular",
|
5446 |
-
"italic",
|
5447 |
-
"600",
|
5448 |
-
"600italic",
|
5449 |
-
"700",
|
5450 |
-
"700italic"
|
5451 |
-
],
|
5452 |
-
"subsets": [
|
5453 |
-
"latin"
|
5454 |
-
],
|
5455 |
-
"version": "v4",
|
5456 |
-
"lastModified": "2014-01-07",
|
5457 |
-
"files": {
|
5458 |
-
"100": "http://themes.googleusercontent.com/static/fonts/josefinsans/v4/q9w3H4aeBxj0hZ8Osfi3d8SVQ0giZ-l_NELu3lgGyYw.ttf",
|
5459 |
-
"100italic": "http://themes.googleusercontent.com/static/fonts/josefinsans/v4/s7-P1gqRNRNn-YWdOYnAOXXcj1rQwlNLIS625o-SrL0.ttf",
|
5460 |
-
"300": "http://themes.googleusercontent.com/static/fonts/josefinsans/v4/C6HYlRF50SGJq1XyXj04z6cQoVhARpoaILP7amxE_8g.ttf",
|
5461 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/josefinsans/v4/ppse0J9fKSaoxCIIJb33Gyna0FLWfcB-J_SAYmcAXaI.ttf",
|
5462 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/josefinsans/v4/xgzbb53t8j-Mo-vYa23n5i3USBnSvpkopQaUR-2r7iU.ttf",
|
5463 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/josefinsans/v4/q9w3H4aeBxj0hZ8Osfi3d_MZXuCXbOrAvx5R0IT5Oyo.ttf",
|
5464 |
-
"600": "http://themes.googleusercontent.com/static/fonts/josefinsans/v4/C6HYlRF50SGJq1XyXj04z2v8CylhIUtwUiYO7Z2wXbE.ttf",
|
5465 |
-
"600italic": "http://themes.googleusercontent.com/static/fonts/josefinsans/v4/ppse0J9fKSaoxCIIJb33G4R-5-urNOGAobhAyctHvW8.ttf",
|
5466 |
-
"700": "http://themes.googleusercontent.com/static/fonts/josefinsans/v4/C6HYlRF50SGJq1XyXj04z0D2ttfZwueP-QU272T9-k4.ttf",
|
5467 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/josefinsans/v4/ppse0J9fKSaoxCIIJb33G_As9-1nE9qOqhChW0m4nDE.ttf"
|
5468 |
-
}
|
5469 |
-
},
|
5470 |
-
{
|
5471 |
-
"kind": "webfonts#webfont",
|
5472 |
-
"family": "Josefin Slab",
|
5473 |
-
"category": "serif",
|
5474 |
-
"variants": [
|
5475 |
-
"100",
|
5476 |
-
"100italic",
|
5477 |
-
"300",
|
5478 |
-
"300italic",
|
5479 |
-
"regular",
|
5480 |
-
"italic",
|
5481 |
-
"600",
|
5482 |
-
"600italic",
|
5483 |
-
"700",
|
5484 |
-
"700italic"
|
5485 |
-
],
|
5486 |
-
"subsets": [
|
5487 |
-
"latin"
|
5488 |
-
],
|
5489 |
-
"version": "v4",
|
5490 |
-
"lastModified": "2014-01-07",
|
5491 |
-
"files": {
|
5492 |
-
"100": "http://themes.googleusercontent.com/static/fonts/josefinslab/v4/etsUjZYO8lTLU85lDhZwUsSVQ0giZ-l_NELu3lgGyYw.ttf",
|
5493 |
-
"100italic": "http://themes.googleusercontent.com/static/fonts/josefinslab/v4/8BjDChqLgBF3RJKfwHIYh3Xcj1rQwlNLIS625o-SrL0.ttf",
|
5494 |
-
"300": "http://themes.googleusercontent.com/static/fonts/josefinslab/v4/NbE6ykYuM2IyEwxQxOIi2KcQoVhARpoaILP7amxE_8g.ttf",
|
5495 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/josefinslab/v4/af9sBoKGPbGO0r21xJulyyna0FLWfcB-J_SAYmcAXaI.ttf",
|
5496 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/josefinslab/v4/46aYWdgz-1oFX11flmyEfS3USBnSvpkopQaUR-2r7iU.ttf",
|
5497 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/josefinslab/v4/etsUjZYO8lTLU85lDhZwUvMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
5498 |
-
"600": "http://themes.googleusercontent.com/static/fonts/josefinslab/v4/NbE6ykYuM2IyEwxQxOIi2Gv8CylhIUtwUiYO7Z2wXbE.ttf",
|
5499 |
-
"600italic": "http://themes.googleusercontent.com/static/fonts/josefinslab/v4/af9sBoKGPbGO0r21xJuly4R-5-urNOGAobhAyctHvW8.ttf",
|
5500 |
-
"700": "http://themes.googleusercontent.com/static/fonts/josefinslab/v4/NbE6ykYuM2IyEwxQxOIi2ED2ttfZwueP-QU272T9-k4.ttf",
|
5501 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/josefinslab/v4/af9sBoKGPbGO0r21xJuly_As9-1nE9qOqhChW0m4nDE.ttf"
|
5502 |
-
}
|
5503 |
-
},
|
5504 |
-
{
|
5505 |
-
"kind": "webfonts#webfont",
|
5506 |
-
"family": "Joti One",
|
5507 |
-
"category": "display",
|
5508 |
-
"variants": [
|
5509 |
-
"regular"
|
5510 |
-
],
|
5511 |
-
"subsets": [
|
5512 |
-
"latin",
|
5513 |
-
"latin-ext"
|
5514 |
-
],
|
5515 |
-
"version": "v2",
|
5516 |
-
"lastModified": "2014-01-07",
|
5517 |
-
"files": {
|
5518 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/jotione/v2/P3r_Th0ESHJdzunsvWgUfQ.ttf"
|
5519 |
-
}
|
5520 |
-
},
|
5521 |
-
{
|
5522 |
-
"kind": "webfonts#webfont",
|
5523 |
-
"family": "Judson",
|
5524 |
-
"category": "serif",
|
5525 |
-
"variants": [
|
5526 |
-
"regular",
|
5527 |
-
"italic",
|
5528 |
-
"700"
|
5529 |
-
],
|
5530 |
-
"subsets": [
|
5531 |
-
"latin"
|
5532 |
-
],
|
5533 |
-
"version": "v5",
|
5534 |
-
"lastModified": "2014-01-07",
|
5535 |
-
"files": {
|
5536 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/judson/v5/znM1AAs0eytUaJzf1CrYZQ.ttf",
|
5537 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/judson/v5/GVqQW9P52ygW-ySq-CLwAA.ttf",
|
5538 |
-
"700": "http://themes.googleusercontent.com/static/fonts/judson/v5/he4a2LwiPJc7r8x0oKCKiA.ttf"
|
5539 |
-
}
|
5540 |
-
},
|
5541 |
-
{
|
5542 |
-
"kind": "webfonts#webfont",
|
5543 |
-
"family": "Julee",
|
5544 |
-
"category": "handwriting",
|
5545 |
-
"variants": [
|
5546 |
-
"regular"
|
5547 |
-
],
|
5548 |
-
"subsets": [
|
5549 |
-
"latin"
|
5550 |
-
],
|
5551 |
-
"version": "v4",
|
5552 |
-
"lastModified": "2014-01-07",
|
5553 |
-
"files": {
|
5554 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/julee/v4/CAib-jsUsSO8SvVRnE9fHA.ttf"
|
5555 |
-
}
|
5556 |
-
},
|
5557 |
-
{
|
5558 |
-
"kind": "webfonts#webfont",
|
5559 |
-
"family": "Julius Sans One",
|
5560 |
-
"category": "sans-serif",
|
5561 |
-
"variants": [
|
5562 |
-
"regular"
|
5563 |
-
],
|
5564 |
-
"subsets": [
|
5565 |
-
"latin",
|
5566 |
-
"latin-ext"
|
5567 |
-
],
|
5568 |
-
"version": "v2",
|
5569 |
-
"lastModified": "2014-01-07",
|
5570 |
-
"files": {
|
5571 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/juliussansone/v2/iU65JP9acQHPDLkdalCF7jjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
5572 |
-
}
|
5573 |
-
},
|
5574 |
-
{
|
5575 |
-
"kind": "webfonts#webfont",
|
5576 |
-
"family": "Junge",
|
5577 |
-
"category": "serif",
|
5578 |
-
"variants": [
|
5579 |
-
"regular"
|
5580 |
-
],
|
5581 |
-
"subsets": [
|
5582 |
-
"latin"
|
5583 |
-
],
|
5584 |
-
"version": "v2",
|
5585 |
-
"lastModified": "2014-01-07",
|
5586 |
-
"files": {
|
5587 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/junge/v2/j4IXCXtxrw9qIBheercp3A.ttf"
|
5588 |
-
}
|
5589 |
-
},
|
5590 |
-
{
|
5591 |
-
"kind": "webfonts#webfont",
|
5592 |
-
"family": "Jura",
|
5593 |
-
"category": "sans-serif",
|
5594 |
-
"variants": [
|
5595 |
-
"300",
|
5596 |
-
"regular",
|
5597 |
-
"500",
|
5598 |
-
"600"
|
5599 |
-
],
|
5600 |
-
"subsets": [
|
5601 |
-
"latin",
|
5602 |
-
"greek",
|
5603 |
-
"cyrillic",
|
5604 |
-
"cyrillic-ext",
|
5605 |
-
"latin-ext",
|
5606 |
-
"greek-ext"
|
5607 |
-
],
|
5608 |
-
"version": "v5",
|
5609 |
-
"lastModified": "2014-01-07",
|
5610 |
-
"files": {
|
5611 |
-
"300": "http://themes.googleusercontent.com/static/fonts/jura/v5/Rqx_xy1UnN0C7wD3FUSyPQ.ttf",
|
5612 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/jura/v5/YAWMwF3sN0KCbynMq-Yr_Q.ttf",
|
5613 |
-
"500": "http://themes.googleusercontent.com/static/fonts/jura/v5/16xhfjHCiaLj3tsqqgmtGg.ttf",
|
5614 |
-
"600": "http://themes.googleusercontent.com/static/fonts/jura/v5/iwseduOwJSdY8wQ1Y6CJdA.ttf"
|
5615 |
-
}
|
5616 |
-
},
|
5617 |
-
{
|
5618 |
-
"kind": "webfonts#webfont",
|
5619 |
-
"family": "Just Another Hand",
|
5620 |
-
"category": "handwriting",
|
5621 |
-
"variants": [
|
5622 |
-
"regular"
|
5623 |
-
],
|
5624 |
-
"subsets": [
|
5625 |
-
"latin"
|
5626 |
-
],
|
5627 |
-
"version": "v5",
|
5628 |
-
"lastModified": "2014-01-07",
|
5629 |
-
"files": {
|
5630 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/justanotherhand/v5/fKV8XYuRNNagXr38eqbRf99BnJIEGrvoojniP57E51c.ttf"
|
5631 |
-
}
|
5632 |
-
},
|
5633 |
-
{
|
5634 |
-
"kind": "webfonts#webfont",
|
5635 |
-
"family": "Just Me Again Down Here",
|
5636 |
-
"category": "handwriting",
|
5637 |
-
"variants": [
|
5638 |
-
"regular"
|
5639 |
-
],
|
5640 |
-
"subsets": [
|
5641 |
-
"latin",
|
5642 |
-
"latin-ext"
|
5643 |
-
],
|
5644 |
-
"version": "v6",
|
5645 |
-
"lastModified": "2014-01-07",
|
5646 |
-
"files": {
|
5647 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/justmeagaindownhere/v6/sN06iTc9ITubLTgXoG-kc3M9eVLpVTSK6TqZTIgBrWQ.ttf"
|
5648 |
-
}
|
5649 |
-
},
|
5650 |
-
{
|
5651 |
-
"kind": "webfonts#webfont",
|
5652 |
-
"family": "Kameron",
|
5653 |
-
"category": "serif",
|
5654 |
-
"variants": [
|
5655 |
-
"regular",
|
5656 |
-
"700"
|
5657 |
-
],
|
5658 |
-
"subsets": [
|
5659 |
-
"latin"
|
5660 |
-
],
|
5661 |
-
"version": "v5",
|
5662 |
-
"lastModified": "2014-01-07",
|
5663 |
-
"files": {
|
5664 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kameron/v5/9r8HYhqDSwcq9WMjupL82A.ttf",
|
5665 |
-
"700": "http://themes.googleusercontent.com/static/fonts/kameron/v5/rabVVbzlflqvmXJUFlKnu_esZW2xOQ-xsNqO47m55DA.ttf"
|
5666 |
-
}
|
5667 |
-
},
|
5668 |
-
{
|
5669 |
-
"kind": "webfonts#webfont",
|
5670 |
-
"family": "Kantumruy",
|
5671 |
-
"category": "sans-serif",
|
5672 |
-
"variants": [
|
5673 |
-
"300",
|
5674 |
-
"regular",
|
5675 |
-
"700"
|
5676 |
-
],
|
5677 |
-
"subsets": [
|
5678 |
-
"khmer"
|
5679 |
-
],
|
5680 |
-
"version": "v1",
|
5681 |
-
"lastModified": "2013-12-05",
|
5682 |
-
"files": {
|
5683 |
-
"300": "http://themes.googleusercontent.com/static/fonts/kantumruy/v1/ERRwQE0WG5uanaZWmOFXNi3USBnSvpkopQaUR-2r7iU.ttf",
|
5684 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kantumruy/v1/kQfXNYElQxr5dS8FyjD39Q.ttf",
|
5685 |
-
"700": "http://themes.googleusercontent.com/static/fonts/kantumruy/v1/gie_zErpGf_rNzs920C2Ji3USBnSvpkopQaUR-2r7iU.ttf"
|
5686 |
-
}
|
5687 |
-
},
|
5688 |
-
{
|
5689 |
-
"kind": "webfonts#webfont",
|
5690 |
-
"family": "Karla",
|
5691 |
-
"category": "sans-serif",
|
5692 |
-
"variants": [
|
5693 |
-
"regular",
|
5694 |
-
"italic",
|
5695 |
-
"700",
|
5696 |
-
"700italic"
|
5697 |
-
],
|
5698 |
-
"subsets": [
|
5699 |
-
"latin",
|
5700 |
-
"latin-ext"
|
5701 |
-
],
|
5702 |
-
"version": "v3",
|
5703 |
-
"lastModified": "2014-01-07",
|
5704 |
-
"files": {
|
5705 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/karla/v3/78UgGRwJFkhqaoFimqoKpQ.ttf",
|
5706 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/karla/v3/51UBKly9RQOnOkj95ZwEFw.ttf",
|
5707 |
-
"700": "http://themes.googleusercontent.com/static/fonts/karla/v3/JS501sZLxZ4zraLQdncOUA.ttf",
|
5708 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/karla/v3/3YDyi09gQjCRh-5-SVhTTvesZW2xOQ-xsNqO47m55DA.ttf"
|
5709 |
-
}
|
5710 |
-
},
|
5711 |
-
{
|
5712 |
-
"kind": "webfonts#webfont",
|
5713 |
-
"family": "Kaushan Script",
|
5714 |
-
"category": "handwriting",
|
5715 |
-
"variants": [
|
5716 |
-
"regular"
|
5717 |
-
],
|
5718 |
-
"subsets": [
|
5719 |
-
"latin",
|
5720 |
-
"latin-ext"
|
5721 |
-
],
|
5722 |
-
"version": "v2",
|
5723 |
-
"lastModified": "2014-01-07",
|
5724 |
-
"files": {
|
5725 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kaushanscript/v2/qx1LSqts-NtiKcLw4N03IBnpV0hQCek3EmWnCPrvGRM.ttf"
|
5726 |
-
}
|
5727 |
-
},
|
5728 |
-
{
|
5729 |
-
"kind": "webfonts#webfont",
|
5730 |
-
"family": "Kavoon",
|
5731 |
-
"category": "display",
|
5732 |
-
"variants": [
|
5733 |
-
"regular"
|
5734 |
-
],
|
5735 |
-
"subsets": [
|
5736 |
-
"latin",
|
5737 |
-
"latin-ext"
|
5738 |
-
],
|
5739 |
-
"version": "v2",
|
5740 |
-
"lastModified": "2014-01-07",
|
5741 |
-
"files": {
|
5742 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kavoon/v2/382m-6baKXqJFQjEgobt6Q.ttf"
|
5743 |
-
}
|
5744 |
-
},
|
5745 |
-
{
|
5746 |
-
"kind": "webfonts#webfont",
|
5747 |
-
"family": "Kdam Thmor",
|
5748 |
-
"category": "display",
|
5749 |
-
"variants": [
|
5750 |
-
"regular"
|
5751 |
-
],
|
5752 |
-
"subsets": [
|
5753 |
-
"khmer"
|
5754 |
-
],
|
5755 |
-
"version": "v1",
|
5756 |
-
"lastModified": "2013-12-05",
|
5757 |
-
"files": {
|
5758 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kdamthmor/v1/otCdP6UU-VBIrBfVDWBQJ_esZW2xOQ-xsNqO47m55DA.ttf"
|
5759 |
-
}
|
5760 |
-
},
|
5761 |
-
{
|
5762 |
-
"kind": "webfonts#webfont",
|
5763 |
-
"family": "Keania One",
|
5764 |
-
"category": "display",
|
5765 |
-
"variants": [
|
5766 |
-
"regular"
|
5767 |
-
],
|
5768 |
-
"subsets": [
|
5769 |
-
"latin",
|
5770 |
-
"latin-ext"
|
5771 |
-
],
|
5772 |
-
"version": "v2",
|
5773 |
-
"lastModified": "2014-01-07",
|
5774 |
-
"files": {
|
5775 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/keaniaone/v2/PACrDKZWngXzgo-ucl6buvesZW2xOQ-xsNqO47m55DA.ttf"
|
5776 |
-
}
|
5777 |
-
},
|
5778 |
-
{
|
5779 |
-
"kind": "webfonts#webfont",
|
5780 |
-
"family": "Kelly Slab",
|
5781 |
-
"category": "display",
|
5782 |
-
"variants": [
|
5783 |
-
"regular"
|
5784 |
-
],
|
5785 |
-
"subsets": [
|
5786 |
-
"latin",
|
5787 |
-
"cyrillic",
|
5788 |
-
"latin-ext"
|
5789 |
-
],
|
5790 |
-
"version": "v4",
|
5791 |
-
"lastModified": "2014-01-07",
|
5792 |
-
"files": {
|
5793 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kellyslab/v4/F_2oS1e9XdYx1MAi8XEVefesZW2xOQ-xsNqO47m55DA.ttf"
|
5794 |
-
}
|
5795 |
-
},
|
5796 |
-
{
|
5797 |
-
"kind": "webfonts#webfont",
|
5798 |
-
"family": "Kenia",
|
5799 |
-
"category": "display",
|
5800 |
-
"variants": [
|
5801 |
-
"regular"
|
5802 |
-
],
|
5803 |
-
"subsets": [
|
5804 |
-
"latin"
|
5805 |
-
],
|
5806 |
-
"version": "v6",
|
5807 |
-
"lastModified": "2014-01-07",
|
5808 |
-
"files": {
|
5809 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kenia/v6/OLM9-XfITK9PsTLKbGBrwg.ttf"
|
5810 |
-
}
|
5811 |
-
},
|
5812 |
-
{
|
5813 |
-
"kind": "webfonts#webfont",
|
5814 |
-
"family": "Khmer",
|
5815 |
-
"category": "display",
|
5816 |
-
"variants": [
|
5817 |
-
"regular"
|
5818 |
-
],
|
5819 |
-
"subsets": [
|
5820 |
-
"khmer"
|
5821 |
-
],
|
5822 |
-
"version": "v7",
|
5823 |
-
"lastModified": "2014-01-07",
|
5824 |
-
"files": {
|
5825 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/khmer/v7/vWaBJIbaQuBNz02ALIKJ3A.ttf"
|
5826 |
-
}
|
5827 |
-
},
|
5828 |
-
{
|
5829 |
-
"kind": "webfonts#webfont",
|
5830 |
-
"family": "Kite One",
|
5831 |
-
"category": "sans-serif",
|
5832 |
-
"variants": [
|
5833 |
-
"regular"
|
5834 |
-
],
|
5835 |
-
"subsets": [
|
5836 |
-
"latin"
|
5837 |
-
],
|
5838 |
-
"version": "v2",
|
5839 |
-
"lastModified": "2014-01-07",
|
5840 |
-
"files": {
|
5841 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kiteone/v2/8ojWmgUc97m0f_i6sTqLoQ.ttf"
|
5842 |
-
}
|
5843 |
-
},
|
5844 |
-
{
|
5845 |
-
"kind": "webfonts#webfont",
|
5846 |
-
"family": "Knewave",
|
5847 |
-
"category": "display",
|
5848 |
-
"variants": [
|
5849 |
-
"regular"
|
5850 |
-
],
|
5851 |
-
"subsets": [
|
5852 |
-
"latin",
|
5853 |
-
"latin-ext"
|
5854 |
-
],
|
5855 |
-
"version": "v3",
|
5856 |
-
"lastModified": "2014-01-07",
|
5857 |
-
"files": {
|
5858 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/knewave/v3/KGHM4XWr4iKnBMqzZLkPBg.ttf"
|
5859 |
-
}
|
5860 |
-
},
|
5861 |
-
{
|
5862 |
-
"kind": "webfonts#webfont",
|
5863 |
-
"family": "Kotta One",
|
5864 |
-
"category": "serif",
|
5865 |
-
"variants": [
|
5866 |
-
"regular"
|
5867 |
-
],
|
5868 |
-
"subsets": [
|
5869 |
-
"latin",
|
5870 |
-
"latin-ext"
|
5871 |
-
],
|
5872 |
-
"version": "v2",
|
5873 |
-
"lastModified": "2014-01-07",
|
5874 |
-
"files": {
|
5875 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kottaone/v2/AB2Q7hVw6niJYDgLvFXu5w.ttf"
|
5876 |
-
}
|
5877 |
-
},
|
5878 |
-
{
|
5879 |
-
"kind": "webfonts#webfont",
|
5880 |
-
"family": "Koulen",
|
5881 |
-
"category": "display",
|
5882 |
-
"variants": [
|
5883 |
-
"regular"
|
5884 |
-
],
|
5885 |
-
"subsets": [
|
5886 |
-
"khmer"
|
5887 |
-
],
|
5888 |
-
"version": "v7",
|
5889 |
-
"lastModified": "2014-01-07",
|
5890 |
-
"files": {
|
5891 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/koulen/v7/AAYOK8RSRO7FTskTzFuzNw.ttf"
|
5892 |
-
}
|
5893 |
-
},
|
5894 |
-
{
|
5895 |
-
"kind": "webfonts#webfont",
|
5896 |
-
"family": "Kranky",
|
5897 |
-
"category": "display",
|
5898 |
-
"variants": [
|
5899 |
-
"regular"
|
5900 |
-
],
|
5901 |
-
"subsets": [
|
5902 |
-
"latin"
|
5903 |
-
],
|
5904 |
-
"version": "v4",
|
5905 |
-
"lastModified": "2014-01-07",
|
5906 |
-
"files": {
|
5907 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kranky/v4/C8dxxTS99-fZ84vWk8SDrg.ttf"
|
5908 |
-
}
|
5909 |
-
},
|
5910 |
-
{
|
5911 |
-
"kind": "webfonts#webfont",
|
5912 |
-
"family": "Kreon",
|
5913 |
-
"category": "serif",
|
5914 |
-
"variants": [
|
5915 |
-
"300",
|
5916 |
-
"regular",
|
5917 |
-
"700"
|
5918 |
-
],
|
5919 |
-
"subsets": [
|
5920 |
-
"latin"
|
5921 |
-
],
|
5922 |
-
"version": "v7",
|
5923 |
-
"lastModified": "2014-01-07",
|
5924 |
-
"files": {
|
5925 |
-
"300": "http://themes.googleusercontent.com/static/fonts/kreon/v7/HKtJRiq5C2zbq5N1IX32sA.ttf",
|
5926 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kreon/v7/zA_IZt0u0S3cvHJu-n1oEg.ttf",
|
5927 |
-
"700": "http://themes.googleusercontent.com/static/fonts/kreon/v7/jh0dSmaPodjxISiblIUTkw.ttf"
|
5928 |
-
}
|
5929 |
-
},
|
5930 |
-
{
|
5931 |
-
"kind": "webfonts#webfont",
|
5932 |
-
"family": "Kristi",
|
5933 |
-
"category": "handwriting",
|
5934 |
-
"variants": [
|
5935 |
-
"regular"
|
5936 |
-
],
|
5937 |
-
"subsets": [
|
5938 |
-
"latin"
|
5939 |
-
],
|
5940 |
-
"version": "v5",
|
5941 |
-
"lastModified": "2014-01-07",
|
5942 |
-
"files": {
|
5943 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kristi/v5/aRsgBQrkQkMlu4UPSnJyOQ.ttf"
|
5944 |
-
}
|
5945 |
-
},
|
5946 |
-
{
|
5947 |
-
"kind": "webfonts#webfont",
|
5948 |
-
"family": "Krona One",
|
5949 |
-
"category": "sans-serif",
|
5950 |
-
"variants": [
|
5951 |
-
"regular"
|
5952 |
-
],
|
5953 |
-
"subsets": [
|
5954 |
-
"latin",
|
5955 |
-
"latin-ext"
|
5956 |
-
],
|
5957 |
-
"version": "v2",
|
5958 |
-
"lastModified": "2014-01-07",
|
5959 |
-
"files": {
|
5960 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/kronaone/v2/zcQj4ljqTo166AdourlF9w.ttf"
|
5961 |
-
}
|
5962 |
-
},
|
5963 |
-
{
|
5964 |
-
"kind": "webfonts#webfont",
|
5965 |
-
"family": "La Belle Aurore",
|
5966 |
-
"category": "handwriting",
|
5967 |
-
"variants": [
|
5968 |
-
"regular"
|
5969 |
-
],
|
5970 |
-
"subsets": [
|
5971 |
-
"latin"
|
5972 |
-
],
|
5973 |
-
"version": "v4",
|
5974 |
-
"lastModified": "2014-01-07",
|
5975 |
-
"files": {
|
5976 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/labelleaurore/v4/Irdbc4ASuUoWDjd_Wc3md123K2iuuhwZgaKapkyRTY8.ttf"
|
5977 |
-
}
|
5978 |
-
},
|
5979 |
-
{
|
5980 |
-
"kind": "webfonts#webfont",
|
5981 |
-
"family": "Lancelot",
|
5982 |
-
"category": "display",
|
5983 |
-
"variants": [
|
5984 |
-
"regular"
|
5985 |
-
],
|
5986 |
-
"subsets": [
|
5987 |
-
"latin"
|
5988 |
-
],
|
5989 |
-
"version": "v3",
|
5990 |
-
"lastModified": "2014-01-07",
|
5991 |
-
"files": {
|
5992 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lancelot/v3/XMT7T_oo_MQUGAnU2v-sdA.ttf"
|
5993 |
-
}
|
5994 |
-
},
|
5995 |
-
{
|
5996 |
-
"kind": "webfonts#webfont",
|
5997 |
-
"family": "Lato",
|
5998 |
-
"category": "sans-serif",
|
5999 |
-
"variants": [
|
6000 |
-
"100",
|
6001 |
-
"100italic",
|
6002 |
-
"300",
|
6003 |
-
"300italic",
|
6004 |
-
"regular",
|
6005 |
-
"italic",
|
6006 |
-
"700",
|
6007 |
-
"700italic",
|
6008 |
-
"900",
|
6009 |
-
"900italic"
|
6010 |
-
],
|
6011 |
-
"subsets": [
|
6012 |
-
"latin"
|
6013 |
-
],
|
6014 |
-
"version": "v7",
|
6015 |
-
"lastModified": "2014-01-07",
|
6016 |
-
"files": {
|
6017 |
-
"100": "http://themes.googleusercontent.com/static/fonts/lato/v7/Upp-ka9rLQmHYCsFgwL-eg.ttf",
|
6018 |
-
"100italic": "http://themes.googleusercontent.com/static/fonts/lato/v7/zLegi10uS_9-fnUDISl0KA.ttf",
|
6019 |
-
"300": "http://themes.googleusercontent.com/static/fonts/lato/v7/Ja02qOppOVq9jeRjWekbHg.ttf",
|
6020 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/lato/v7/dVebFcn7EV7wAKwgYestUg.ttf",
|
6021 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lato/v7/h7rISIcQapZBpei-sXwIwg.ttf",
|
6022 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/lato/v7/P_dJOFJylV3A870UIOtr0w.ttf",
|
6023 |
-
"700": "http://themes.googleusercontent.com/static/fonts/lato/v7/iX_QxBBZLhNj5JHlTzHQzg.ttf",
|
6024 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/lato/v7/WFcZakHrrCKeUJxHA4T_gw.ttf",
|
6025 |
-
"900": "http://themes.googleusercontent.com/static/fonts/lato/v7/8TPEV6NbYWZlNsXjbYVv7w.ttf",
|
6026 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/lato/v7/draWperrI7n2xi35Cl08fA.ttf"
|
6027 |
-
}
|
6028 |
-
},
|
6029 |
-
{
|
6030 |
-
"kind": "webfonts#webfont",
|
6031 |
-
"family": "League Script",
|
6032 |
-
"category": "handwriting",
|
6033 |
-
"variants": [
|
6034 |
-
"regular"
|
6035 |
-
],
|
6036 |
-
"subsets": [
|
6037 |
-
"latin"
|
6038 |
-
],
|
6039 |
-
"version": "v5",
|
6040 |
-
"lastModified": "2014-01-07",
|
6041 |
-
"files": {
|
6042 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/leaguescript/v5/wnRFLvfabWK_DauqppD6vSeUSrabuTpOsMEiRLtKwk0.ttf"
|
6043 |
-
}
|
6044 |
-
},
|
6045 |
-
{
|
6046 |
-
"kind": "webfonts#webfont",
|
6047 |
-
"family": "Leckerli One",
|
6048 |
-
"category": "handwriting",
|
6049 |
-
"variants": [
|
6050 |
-
"regular"
|
6051 |
-
],
|
6052 |
-
"subsets": [
|
6053 |
-
"latin"
|
6054 |
-
],
|
6055 |
-
"version": "v5",
|
6056 |
-
"lastModified": "2014-01-07",
|
6057 |
-
"files": {
|
6058 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/leckerlione/v5/S2Y_iLrItTu8kIJTkS7DrC3USBnSvpkopQaUR-2r7iU.ttf"
|
6059 |
-
}
|
6060 |
-
},
|
6061 |
-
{
|
6062 |
-
"kind": "webfonts#webfont",
|
6063 |
-
"family": "Ledger",
|
6064 |
-
"category": "serif",
|
6065 |
-
"variants": [
|
6066 |
-
"regular"
|
6067 |
-
],
|
6068 |
-
"subsets": [
|
6069 |
-
"latin",
|
6070 |
-
"cyrillic",
|
6071 |
-
"latin-ext"
|
6072 |
-
],
|
6073 |
-
"version": "v2",
|
6074 |
-
"lastModified": "2014-01-07",
|
6075 |
-
"files": {
|
6076 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ledger/v2/G432jp-tahOfWHbCYkI0jw.ttf"
|
6077 |
-
}
|
6078 |
-
},
|
6079 |
-
{
|
6080 |
-
"kind": "webfonts#webfont",
|
6081 |
-
"family": "Lekton",
|
6082 |
-
"category": "sans-serif",
|
6083 |
-
"variants": [
|
6084 |
-
"regular",
|
6085 |
-
"italic",
|
6086 |
-
"700"
|
6087 |
-
],
|
6088 |
-
"subsets": [
|
6089 |
-
"latin",
|
6090 |
-
"latin-ext"
|
6091 |
-
],
|
6092 |
-
"version": "v5",
|
6093 |
-
"lastModified": "2014-01-07",
|
6094 |
-
"files": {
|
6095 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lekton/v5/r483JYmxf5PjIm4jVAm8Yg.ttf",
|
6096 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/lekton/v5/_UbDIPBA1wDqSbhp-OED7A.ttf",
|
6097 |
-
"700": "http://themes.googleusercontent.com/static/fonts/lekton/v5/WZw-uL8WTkx3SBVfTlevXQ.ttf"
|
6098 |
-
}
|
6099 |
-
},
|
6100 |
-
{
|
6101 |
-
"kind": "webfonts#webfont",
|
6102 |
-
"family": "Lemon",
|
6103 |
-
"category": "display",
|
6104 |
-
"variants": [
|
6105 |
-
"regular"
|
6106 |
-
],
|
6107 |
-
"subsets": [
|
6108 |
-
"latin"
|
6109 |
-
],
|
6110 |
-
"version": "v3",
|
6111 |
-
"lastModified": "2014-01-07",
|
6112 |
-
"files": {
|
6113 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lemon/v3/wed1nNu4LNSu-3RoRVUhUw.ttf"
|
6114 |
-
}
|
6115 |
-
},
|
6116 |
-
{
|
6117 |
-
"kind": "webfonts#webfont",
|
6118 |
-
"family": "Libre Baskerville",
|
6119 |
-
"category": "serif",
|
6120 |
-
"variants": [
|
6121 |
-
"regular",
|
6122 |
-
"italic",
|
6123 |
-
"700"
|
6124 |
-
],
|
6125 |
-
"subsets": [
|
6126 |
-
"latin",
|
6127 |
-
"latin-ext"
|
6128 |
-
],
|
6129 |
-
"version": "v2",
|
6130 |
-
"lastModified": "2014-01-07",
|
6131 |
-
"files": {
|
6132 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/librebaskerville/v2/pR0sBQVcY0JZc_ciXjFsKyyZRYCSvpCzQKuMWnP5NDY.ttf",
|
6133 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/librebaskerville/v2/QHIOz1iKF3bIEzRdDFaf5QnhapNS5Oi8FPrBRDLbsW4.ttf",
|
6134 |
-
"700": "http://themes.googleusercontent.com/static/fonts/librebaskerville/v2/kH7K4InNTm7mmOXXjrA5v-xuswJKUVpBRfYFpz0W3Iw.ttf"
|
6135 |
-
}
|
6136 |
-
},
|
6137 |
-
{
|
6138 |
-
"kind": "webfonts#webfont",
|
6139 |
-
"family": "Life Savers",
|
6140 |
-
"category": "display",
|
6141 |
-
"variants": [
|
6142 |
-
"regular",
|
6143 |
-
"700"
|
6144 |
-
],
|
6145 |
-
"subsets": [
|
6146 |
-
"latin",
|
6147 |
-
"latin-ext"
|
6148 |
-
],
|
6149 |
-
"version": "v4",
|
6150 |
-
"lastModified": "2014-01-07",
|
6151 |
-
"files": {
|
6152 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lifesavers/v4/g49cUDk4Y1P0G5NMkMAm7qCWcynf_cDxXwCLxiixG1c.ttf",
|
6153 |
-
"700": "http://themes.googleusercontent.com/static/fonts/lifesavers/v4/THQKqChyYUm97rNPVFdGGXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
6154 |
-
}
|
6155 |
-
},
|
6156 |
-
{
|
6157 |
-
"kind": "webfonts#webfont",
|
6158 |
-
"family": "Lilita One",
|
6159 |
-
"category": "display",
|
6160 |
-
"variants": [
|
6161 |
-
"regular"
|
6162 |
-
],
|
6163 |
-
"subsets": [
|
6164 |
-
"latin",
|
6165 |
-
"latin-ext"
|
6166 |
-
],
|
6167 |
-
"version": "v2",
|
6168 |
-
"lastModified": "2014-01-07",
|
6169 |
-
"files": {
|
6170 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lilitaone/v2/vTxJQjbNV6BCBHx8sGDCVvesZW2xOQ-xsNqO47m55DA.ttf"
|
6171 |
-
}
|
6172 |
-
},
|
6173 |
-
{
|
6174 |
-
"kind": "webfonts#webfont",
|
6175 |
-
"family": "Lily Script One",
|
6176 |
-
"category": "display",
|
6177 |
-
"variants": [
|
6178 |
-
"regular"
|
6179 |
-
],
|
6180 |
-
"subsets": [
|
6181 |
-
"latin",
|
6182 |
-
"latin-ext"
|
6183 |
-
],
|
6184 |
-
"version": "v2",
|
6185 |
-
"lastModified": "2014-01-07",
|
6186 |
-
"files": {
|
6187 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lilyscriptone/v2/uPWsLVW8uiXqIBnE8ZwGPDjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
6188 |
-
}
|
6189 |
-
},
|
6190 |
-
{
|
6191 |
-
"kind": "webfonts#webfont",
|
6192 |
-
"family": "Limelight",
|
6193 |
-
"category": "display",
|
6194 |
-
"variants": [
|
6195 |
-
"regular"
|
6196 |
-
],
|
6197 |
-
"subsets": [
|
6198 |
-
"latin",
|
6199 |
-
"latin-ext"
|
6200 |
-
],
|
6201 |
-
"version": "v5",
|
6202 |
-
"lastModified": "2014-01-07",
|
6203 |
-
"files": {
|
6204 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/limelight/v5/5dTfN6igsXjLjOy8QQShcg.ttf"
|
6205 |
-
}
|
6206 |
-
},
|
6207 |
-
{
|
6208 |
-
"kind": "webfonts#webfont",
|
6209 |
-
"family": "Linden Hill",
|
6210 |
-
"category": "serif",
|
6211 |
-
"variants": [
|
6212 |
-
"regular",
|
6213 |
-
"italic"
|
6214 |
-
],
|
6215 |
-
"subsets": [
|
6216 |
-
"latin"
|
6217 |
-
],
|
6218 |
-
"version": "v4",
|
6219 |
-
"lastModified": "2014-01-07",
|
6220 |
-
"files": {
|
6221 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lindenhill/v4/UgsC0txqd-E1yjvjutwm_KCWcynf_cDxXwCLxiixG1c.ttf",
|
6222 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/lindenhill/v4/OcS3bZcu8vJvIDH8Zic83keOrDcLawS7-ssYqLr2Xp4.ttf"
|
6223 |
-
}
|
6224 |
-
},
|
6225 |
-
{
|
6226 |
-
"kind": "webfonts#webfont",
|
6227 |
-
"family": "Lobster",
|
6228 |
-
"category": "display",
|
6229 |
-
"variants": [
|
6230 |
-
"regular"
|
6231 |
-
],
|
6232 |
-
"subsets": [
|
6233 |
-
"latin",
|
6234 |
-
"cyrillic",
|
6235 |
-
"cyrillic-ext",
|
6236 |
-
"latin-ext"
|
6237 |
-
],
|
6238 |
-
"version": "v8",
|
6239 |
-
"lastModified": "2014-03-20",
|
6240 |
-
"files": {
|
6241 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lobster/v8/9LpJGtNuM1D8FAZ2BkJH2Q.ttf"
|
6242 |
-
}
|
6243 |
-
},
|
6244 |
-
{
|
6245 |
-
"kind": "webfonts#webfont",
|
6246 |
-
"family": "Lobster Two",
|
6247 |
-
"category": "display",
|
6248 |
-
"variants": [
|
6249 |
-
"regular",
|
6250 |
-
"italic",
|
6251 |
-
"700",
|
6252 |
-
"700italic"
|
6253 |
-
],
|
6254 |
-
"subsets": [
|
6255 |
-
"latin"
|
6256 |
-
],
|
6257 |
-
"version": "v5",
|
6258 |
-
"lastModified": "2014-01-07",
|
6259 |
-
"files": {
|
6260 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lobstertwo/v5/xb9aY4w9ceh8JRzobID1naCWcynf_cDxXwCLxiixG1c.ttf",
|
6261 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/lobstertwo/v5/Ul_16MSbfayQv1I4QhLEoEeOrDcLawS7-ssYqLr2Xp4.ttf",
|
6262 |
-
"700": "http://themes.googleusercontent.com/static/fonts/lobstertwo/v5/bmdxOflBqMqjEC0-kGsIiHe1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
6263 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/lobstertwo/v5/LEkN2_no_6kFvRfiBZ8xpM_zJjSACmk0BRPxQqhnNLU.ttf"
|
6264 |
-
}
|
6265 |
-
},
|
6266 |
-
{
|
6267 |
-
"kind": "webfonts#webfont",
|
6268 |
-
"family": "Londrina Outline",
|
6269 |
-
"category": "display",
|
6270 |
-
"variants": [
|
6271 |
-
"regular"
|
6272 |
-
],
|
6273 |
-
"subsets": [
|
6274 |
-
"latin"
|
6275 |
-
],
|
6276 |
-
"version": "v3",
|
6277 |
-
"lastModified": "2014-01-07",
|
6278 |
-
"files": {
|
6279 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/londrinaoutline/v3/lls08GOa1eT74p072l1AWJmp8DTZ6iHear7UV05iykg.ttf"
|
6280 |
-
}
|
6281 |
-
},
|
6282 |
-
{
|
6283 |
-
"kind": "webfonts#webfont",
|
6284 |
-
"family": "Londrina Shadow",
|
6285 |
-
"category": "display",
|
6286 |
-
"variants": [
|
6287 |
-
"regular"
|
6288 |
-
],
|
6289 |
-
"subsets": [
|
6290 |
-
"latin"
|
6291 |
-
],
|
6292 |
-
"version": "v2",
|
6293 |
-
"lastModified": "2014-01-07",
|
6294 |
-
"files": {
|
6295 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/londrinashadow/v2/dNYuzPS_7eYgXFJBzMoKdbw6Z3rVA5KDSi7aQxS92Nk.ttf"
|
6296 |
-
}
|
6297 |
-
},
|
6298 |
-
{
|
6299 |
-
"kind": "webfonts#webfont",
|
6300 |
-
"family": "Londrina Sketch",
|
6301 |
-
"category": "display",
|
6302 |
-
"variants": [
|
6303 |
-
"regular"
|
6304 |
-
],
|
6305 |
-
"subsets": [
|
6306 |
-
"latin"
|
6307 |
-
],
|
6308 |
-
"version": "v2",
|
6309 |
-
"lastModified": "2014-01-07",
|
6310 |
-
"files": {
|
6311 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/londrinasketch/v2/p7Ai06aT1Ycp_D2fyE3z69d6z_uhFGnpCOifUY1fJQo.ttf"
|
6312 |
-
}
|
6313 |
-
},
|
6314 |
-
{
|
6315 |
-
"kind": "webfonts#webfont",
|
6316 |
-
"family": "Londrina Solid",
|
6317 |
-
"category": "display",
|
6318 |
-
"variants": [
|
6319 |
-
"regular"
|
6320 |
-
],
|
6321 |
-
"subsets": [
|
6322 |
-
"latin"
|
6323 |
-
],
|
6324 |
-
"version": "v2",
|
6325 |
-
"lastModified": "2014-01-07",
|
6326 |
-
"files": {
|
6327 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/londrinasolid/v2/yysorIEiYSBb0ylZjg791MR125CwGqh8XBqkBzea0LA.ttf"
|
6328 |
-
}
|
6329 |
-
},
|
6330 |
-
{
|
6331 |
-
"kind": "webfonts#webfont",
|
6332 |
-
"family": "Lora",
|
6333 |
-
"category": "serif",
|
6334 |
-
"variants": [
|
6335 |
-
"regular",
|
6336 |
-
"italic",
|
6337 |
-
"700",
|
6338 |
-
"700italic"
|
6339 |
-
],
|
6340 |
-
"subsets": [
|
6341 |
-
"latin",
|
6342 |
-
"cyrillic",
|
6343 |
-
"latin-ext"
|
6344 |
-
],
|
6345 |
-
"version": "v7",
|
6346 |
-
"lastModified": "2014-01-07",
|
6347 |
-
"files": {
|
6348 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lora/v7/aXJ7KVIGcejEy1abawZazg.ttf",
|
6349 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/lora/v7/AN2EZaj2tFRpyveuNn9BOg.ttf",
|
6350 |
-
"700": "http://themes.googleusercontent.com/static/fonts/lora/v7/enKND5SfzQKkggBA_VnT1A.ttf",
|
6351 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/lora/v7/ivs9j3kYU65pR9QD9YFdzQ.ttf"
|
6352 |
-
}
|
6353 |
-
},
|
6354 |
-
{
|
6355 |
-
"kind": "webfonts#webfont",
|
6356 |
-
"family": "Love Ya Like A Sister",
|
6357 |
-
"category": "display",
|
6358 |
-
"variants": [
|
6359 |
-
"regular"
|
6360 |
-
],
|
6361 |
-
"subsets": [
|
6362 |
-
"latin"
|
6363 |
-
],
|
6364 |
-
"version": "v5",
|
6365 |
-
"lastModified": "2014-01-07",
|
6366 |
-
"files": {
|
6367 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/loveyalikeasister/v5/LzkxWS-af0Br2Sk_YgSJY-ad1xEP8DQfgfY8MH9aBUg.ttf"
|
6368 |
-
}
|
6369 |
-
},
|
6370 |
-
{
|
6371 |
-
"kind": "webfonts#webfont",
|
6372 |
-
"family": "Loved by the King",
|
6373 |
-
"category": "handwriting",
|
6374 |
-
"variants": [
|
6375 |
-
"regular"
|
6376 |
-
],
|
6377 |
-
"subsets": [
|
6378 |
-
"latin"
|
6379 |
-
],
|
6380 |
-
"version": "v4",
|
6381 |
-
"lastModified": "2014-01-07",
|
6382 |
-
"files": {
|
6383 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lovedbytheking/v4/wg03xD4cWigj4YDufLBSr8io2AFEwwMpu7y5KyiyAJc.ttf"
|
6384 |
-
}
|
6385 |
-
},
|
6386 |
-
{
|
6387 |
-
"kind": "webfonts#webfont",
|
6388 |
-
"family": "Lovers Quarrel",
|
6389 |
-
"category": "handwriting",
|
6390 |
-
"variants": [
|
6391 |
-
"regular"
|
6392 |
-
],
|
6393 |
-
"subsets": [
|
6394 |
-
"latin",
|
6395 |
-
"latin-ext"
|
6396 |
-
],
|
6397 |
-
"version": "v2",
|
6398 |
-
"lastModified": "2014-01-07",
|
6399 |
-
"files": {
|
6400 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/loversquarrel/v2/gipdZ8b7pKb89MzQLAtJHLHLxci2ElvNEmOB303HLk0.ttf"
|
6401 |
-
}
|
6402 |
-
},
|
6403 |
-
{
|
6404 |
-
"kind": "webfonts#webfont",
|
6405 |
-
"family": "Luckiest Guy",
|
6406 |
-
"category": "display",
|
6407 |
-
"variants": [
|
6408 |
-
"regular"
|
6409 |
-
],
|
6410 |
-
"subsets": [
|
6411 |
-
"latin"
|
6412 |
-
],
|
6413 |
-
"version": "v4",
|
6414 |
-
"lastModified": "2014-01-07",
|
6415 |
-
"files": {
|
6416 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/luckiestguy/v4/5718gH8nDy3hFVihOpkY5C3USBnSvpkopQaUR-2r7iU.ttf"
|
6417 |
-
}
|
6418 |
-
},
|
6419 |
-
{
|
6420 |
-
"kind": "webfonts#webfont",
|
6421 |
-
"family": "Lusitana",
|
6422 |
-
"category": "serif",
|
6423 |
-
"variants": [
|
6424 |
-
"regular",
|
6425 |
-
"700"
|
6426 |
-
],
|
6427 |
-
"subsets": [
|
6428 |
-
"latin"
|
6429 |
-
],
|
6430 |
-
"version": "v2",
|
6431 |
-
"lastModified": "2014-01-07",
|
6432 |
-
"files": {
|
6433 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lusitana/v2/l1h9VDomkwbdzbPdmLcUIw.ttf",
|
6434 |
-
"700": "http://themes.googleusercontent.com/static/fonts/lusitana/v2/GWtZyUsONxgkdl3Mc1P7FKCWcynf_cDxXwCLxiixG1c.ttf"
|
6435 |
-
}
|
6436 |
-
},
|
6437 |
-
{
|
6438 |
-
"kind": "webfonts#webfont",
|
6439 |
-
"family": "Lustria",
|
6440 |
-
"category": "serif",
|
6441 |
-
"variants": [
|
6442 |
-
"regular"
|
6443 |
-
],
|
6444 |
-
"subsets": [
|
6445 |
-
"latin"
|
6446 |
-
],
|
6447 |
-
"version": "v2",
|
6448 |
-
"lastModified": "2014-01-07",
|
6449 |
-
"files": {
|
6450 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/lustria/v2/gXAk0s4ai0X-TAOhYzZd1w.ttf"
|
6451 |
-
}
|
6452 |
-
},
|
6453 |
-
{
|
6454 |
-
"kind": "webfonts#webfont",
|
6455 |
-
"family": "Macondo",
|
6456 |
-
"category": "display",
|
6457 |
-
"variants": [
|
6458 |
-
"regular"
|
6459 |
-
],
|
6460 |
-
"subsets": [
|
6461 |
-
"latin"
|
6462 |
-
],
|
6463 |
-
"version": "v3",
|
6464 |
-
"lastModified": "2014-01-07",
|
6465 |
-
"files": {
|
6466 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/macondo/v3/G6yPNUscRPQ8ufBXs_8yRQ.ttf"
|
6467 |
-
}
|
6468 |
-
},
|
6469 |
-
{
|
6470 |
-
"kind": "webfonts#webfont",
|
6471 |
-
"family": "Macondo Swash Caps",
|
6472 |
-
"category": "display",
|
6473 |
-
"variants": [
|
6474 |
-
"regular"
|
6475 |
-
],
|
6476 |
-
"subsets": [
|
6477 |
-
"latin"
|
6478 |
-
],
|
6479 |
-
"version": "v2",
|
6480 |
-
"lastModified": "2014-01-07",
|
6481 |
-
"files": {
|
6482 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/macondoswashcaps/v2/SsSR706z-MlvEH7_LS6JAPkkgYRHs6GSG949m-K6x2k.ttf"
|
6483 |
-
}
|
6484 |
-
},
|
6485 |
-
{
|
6486 |
-
"kind": "webfonts#webfont",
|
6487 |
-
"family": "Magra",
|
6488 |
-
"category": "sans-serif",
|
6489 |
-
"variants": [
|
6490 |
-
"regular",
|
6491 |
-
"700"
|
6492 |
-
],
|
6493 |
-
"subsets": [
|
6494 |
-
"latin",
|
6495 |
-
"latin-ext"
|
6496 |
-
],
|
6497 |
-
"version": "v2",
|
6498 |
-
"lastModified": "2014-01-07",
|
6499 |
-
"files": {
|
6500 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/magra/v2/hoZ13bwCXBxuGZqAudgc5A.ttf",
|
6501 |
-
"700": "http://themes.googleusercontent.com/static/fonts/magra/v2/6fOM5sq5cIn8D0RjX8Lztw.ttf"
|
6502 |
-
}
|
6503 |
-
},
|
6504 |
-
{
|
6505 |
-
"kind": "webfonts#webfont",
|
6506 |
-
"family": "Maiden Orange",
|
6507 |
-
"category": "display",
|
6508 |
-
"variants": [
|
6509 |
-
"regular"
|
6510 |
-
],
|
6511 |
-
"subsets": [
|
6512 |
-
"latin"
|
6513 |
-
],
|
6514 |
-
"version": "v4",
|
6515 |
-
"lastModified": "2014-01-07",
|
6516 |
-
"files": {
|
6517 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/maidenorange/v4/ZhKIA2SPisEwdhW7g0RUWojjx0o0jr6fNXxPgYh_a8Q.ttf"
|
6518 |
-
}
|
6519 |
-
},
|
6520 |
-
{
|
6521 |
-
"kind": "webfonts#webfont",
|
6522 |
-
"family": "Mako",
|
6523 |
-
"category": "sans-serif",
|
6524 |
-
"variants": [
|
6525 |
-
"regular"
|
6526 |
-
],
|
6527 |
-
"subsets": [
|
6528 |
-
"latin"
|
6529 |
-
],
|
6530 |
-
"version": "v5",
|
6531 |
-
"lastModified": "2014-01-07",
|
6532 |
-
"files": {
|
6533 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/mako/v5/z5zSLmfPlv1uTVAdmJBLXg.ttf"
|
6534 |
-
}
|
6535 |
-
},
|
6536 |
-
{
|
6537 |
-
"kind": "webfonts#webfont",
|
6538 |
-
"family": "Marcellus",
|
6539 |
-
"category": "serif",
|
6540 |
-
"variants": [
|
6541 |
-
"regular"
|
6542 |
-
],
|
6543 |
-
"subsets": [
|
6544 |
-
"latin",
|
6545 |
-
"latin-ext"
|
6546 |
-
],
|
6547 |
-
"version": "v2",
|
6548 |
-
"lastModified": "2014-01-07",
|
6549 |
-
"files": {
|
6550 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/marcellus/v2/UjiLZzumxWC9whJ86UtaYw.ttf"
|
6551 |
-
}
|
6552 |
-
},
|
6553 |
-
{
|
6554 |
-
"kind": "webfonts#webfont",
|
6555 |
-
"family": "Marcellus SC",
|
6556 |
-
"category": "serif",
|
6557 |
-
"variants": [
|
6558 |
-
"regular"
|
6559 |
-
],
|
6560 |
-
"subsets": [
|
6561 |
-
"latin",
|
6562 |
-
"latin-ext"
|
6563 |
-
],
|
6564 |
-
"version": "v2",
|
6565 |
-
"lastModified": "2014-01-07",
|
6566 |
-
"files": {
|
6567 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/marcellussc/v2/_jugwxhkkynrvsfrxVx8gS3USBnSvpkopQaUR-2r7iU.ttf"
|
6568 |
-
}
|
6569 |
-
},
|
6570 |
-
{
|
6571 |
-
"kind": "webfonts#webfont",
|
6572 |
-
"family": "Marck Script",
|
6573 |
-
"category": "handwriting",
|
6574 |
-
"variants": [
|
6575 |
-
"regular"
|
6576 |
-
],
|
6577 |
-
"subsets": [
|
6578 |
-
"latin",
|
6579 |
-
"cyrillic",
|
6580 |
-
"latin-ext"
|
6581 |
-
],
|
6582 |
-
"version": "v5",
|
6583 |
-
"lastModified": "2014-01-07",
|
6584 |
-
"files": {
|
6585 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/marckscript/v5/O_D1NAZVOFOobLbVtW3bci3USBnSvpkopQaUR-2r7iU.ttf"
|
6586 |
-
}
|
6587 |
-
},
|
6588 |
-
{
|
6589 |
-
"kind": "webfonts#webfont",
|
6590 |
-
"family": "Margarine",
|
6591 |
-
"category": "display",
|
6592 |
-
"variants": [
|
6593 |
-
"regular"
|
6594 |
-
],
|
6595 |
-
"subsets": [
|
6596 |
-
"latin",
|
6597 |
-
"latin-ext"
|
6598 |
-
],
|
6599 |
-
"version": "v2",
|
6600 |
-
"lastModified": "2014-01-07",
|
6601 |
-
"files": {
|
6602 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/margarine/v2/DJnJwIrcO_cGkjSzY3MERw.ttf"
|
6603 |
-
}
|
6604 |
-
},
|
6605 |
-
{
|
6606 |
-
"kind": "webfonts#webfont",
|
6607 |
-
"family": "Marko One",
|
6608 |
-
"category": "serif",
|
6609 |
-
"variants": [
|
6610 |
-
"regular"
|
6611 |
-
],
|
6612 |
-
"subsets": [
|
6613 |
-
"latin"
|
6614 |
-
],
|
6615 |
-
"version": "v4",
|
6616 |
-
"lastModified": "2014-01-07",
|
6617 |
-
"files": {
|
6618 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/markoone/v4/hpP7j861sOAco43iDc4n4w.ttf"
|
6619 |
-
}
|
6620 |
-
},
|
6621 |
-
{
|
6622 |
-
"kind": "webfonts#webfont",
|
6623 |
-
"family": "Marmelad",
|
6624 |
-
"category": "sans-serif",
|
6625 |
-
"variants": [
|
6626 |
-
"regular"
|
6627 |
-
],
|
6628 |
-
"subsets": [
|
6629 |
-
"latin",
|
6630 |
-
"cyrillic",
|
6631 |
-
"latin-ext"
|
6632 |
-
|
6633 |
-
],
|
6634 |
-
"version": "v4",
|
6635 |
-
"lastModified": "2014-01-07",
|
6636 |
-
"files": {
|
6637 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/marmelad/v4/jI0_FBlSOIRLL0ePWOhOwQ.ttf"
|
6638 |
-
}
|
6639 |
-
},
|
6640 |
-
{
|
6641 |
-
"kind": "webfonts#webfont",
|
6642 |
-
"family": "Marvel",
|
6643 |
-
"category": "sans-serif",
|
6644 |
-
"variants": [
|
6645 |
-
"regular",
|
6646 |
-
"italic",
|
6647 |
-
"700",
|
6648 |
-
"700italic"
|
6649 |
-
],
|
6650 |
-
"subsets": [
|
6651 |
-
"latin"
|
6652 |
-
],
|
6653 |
-
"version": "v4",
|
6654 |
-
"lastModified": "2014-01-07",
|
6655 |
-
"files": {
|
6656 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/marvel/v4/Fg1dO8tWVb-MlyqhsbXEkg.ttf",
|
6657 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/marvel/v4/HzyjFB-oR5usrc7Lxz9g8w.ttf",
|
6658 |
-
"700": "http://themes.googleusercontent.com/static/fonts/marvel/v4/WrHDBL1RupWGo2UcdgxB3Q.ttf",
|
6659 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/marvel/v4/Gzf5NT09Y6xskdQRj2kz1qCWcynf_cDxXwCLxiixG1c.ttf"
|
6660 |
-
}
|
6661 |
-
},
|
6662 |
-
{
|
6663 |
-
"kind": "webfonts#webfont",
|
6664 |
-
"family": "Mate",
|
6665 |
-
"category": "serif",
|
6666 |
-
"variants": [
|
6667 |
-
"regular",
|
6668 |
-
"italic"
|
6669 |
-
],
|
6670 |
-
"subsets": [
|
6671 |
-
"latin"
|
6672 |
-
],
|
6673 |
-
"version": "v3",
|
6674 |
-
"lastModified": "2014-01-07",
|
6675 |
-
"files": {
|
6676 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/mate/v3/ooFviPcJ6hZP5bAE71Cawg.ttf",
|
6677 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/mate/v3/5XwW6_cbisGvCX5qmNiqfA.ttf"
|
6678 |
-
}
|
6679 |
-
},
|
6680 |
-
{
|
6681 |
-
"kind": "webfonts#webfont",
|
6682 |
-
"family": "Mate SC",
|
6683 |
-
"category": "serif",
|
6684 |
-
"variants": [
|
6685 |
-
"regular"
|
6686 |
-
],
|
6687 |
-
"subsets": [
|
6688 |
-
"latin"
|
6689 |
-
],
|
6690 |
-
"version": "v3",
|
6691 |
-
"lastModified": "2014-01-07",
|
6692 |
-
"files": {
|
6693 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/matesc/v3/-YkIT2TZoPZF6pawKzDpWw.ttf"
|
6694 |
-
}
|
6695 |
-
},
|
6696 |
-
{
|
6697 |
-
"kind": "webfonts#webfont",
|
6698 |
-
"family": "Maven Pro",
|
6699 |
-
"category": "sans-serif",
|
6700 |
-
"variants": [
|
6701 |
-
"regular",
|
6702 |
-
"500",
|
6703 |
-
"700",
|
6704 |
-
"900"
|
6705 |
-
],
|
6706 |
-
"subsets": [
|
6707 |
-
"latin"
|
6708 |
-
],
|
6709 |
-
"version": "v5",
|
6710 |
-
"lastModified": "2014-01-07",
|
6711 |
-
"files": {
|
6712 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/mavenpro/v5/sqPJIFG4gqsjl-0q_46Gbw.ttf",
|
6713 |
-
"500": "http://themes.googleusercontent.com/static/fonts/mavenpro/v5/SQVfzoJBbj9t3aVcmbspRi3USBnSvpkopQaUR-2r7iU.ttf",
|
6714 |
-
"700": "http://themes.googleusercontent.com/static/fonts/mavenpro/v5/uDssvmXgp7Nj3i336k_dSi3USBnSvpkopQaUR-2r7iU.ttf",
|
6715 |
-
"900": "http://themes.googleusercontent.com/static/fonts/mavenpro/v5/-91TwiFzqeL1F7Kh91APwS3USBnSvpkopQaUR-2r7iU.ttf"
|
6716 |
-
}
|
6717 |
-
},
|
6718 |
-
{
|
6719 |
-
"kind": "webfonts#webfont",
|
6720 |
-
"family": "McLaren",
|
6721 |
-
"category": "display",
|
6722 |
-
"variants": [
|
6723 |
-
"regular"
|
6724 |
-
],
|
6725 |
-
"subsets": [
|
6726 |
-
"latin",
|
6727 |
-
"latin-ext"
|
6728 |
-
],
|
6729 |
-
"version": "v2",
|
6730 |
-
"lastModified": "2014-01-07",
|
6731 |
-
"files": {
|
6732 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/mclaren/v2/OprvTGxaiINBKW_1_U0eoQ.ttf"
|
6733 |
-
}
|
6734 |
-
},
|
6735 |
-
{
|
6736 |
-
"kind": "webfonts#webfont",
|
6737 |
-
"family": "Meddon",
|
6738 |
-
"category": "handwriting",
|
6739 |
-
"variants": [
|
6740 |
-
"regular"
|
6741 |
-
],
|
6742 |
-
"subsets": [
|
6743 |
-
"latin"
|
6744 |
-
],
|
6745 |
-
"version": "v5",
|
6746 |
-
"lastModified": "2014-01-07",
|
6747 |
-
"files": {
|
6748 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/meddon/v5/f8zJO98uu2EtSj9p7ci9RA.ttf"
|
6749 |
-
}
|
6750 |
-
},
|
6751 |
-
{
|
6752 |
-
"kind": "webfonts#webfont",
|
6753 |
-
"family": "MedievalSharp",
|
6754 |
-
"category": "display",
|
6755 |
-
"variants": [
|
6756 |
-
"regular"
|
6757 |
-
],
|
6758 |
-
"subsets": [
|
6759 |
-
"latin",
|
6760 |
-
"latin-ext"
|
6761 |
-
],
|
6762 |
-
"version": "v6",
|
6763 |
-
"lastModified": "2014-01-07",
|
6764 |
-
"files": {
|
6765 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/medievalsharp/v6/85X_PjV6tftJ0-rX7KYQkOe45sJkivqprK7VkUlzfg0.ttf"
|
6766 |
-
}
|
6767 |
-
},
|
6768 |
-
{
|
6769 |
-
"kind": "webfonts#webfont",
|
6770 |
-
"family": "Medula One",
|
6771 |
-
"category": "display",
|
6772 |
-
"variants": [
|
6773 |
-
"regular"
|
6774 |
-
],
|
6775 |
-
"subsets": [
|
6776 |
-
"latin"
|
6777 |
-
],
|
6778 |
-
"version": "v4",
|
6779 |
-
"lastModified": "2014-01-07",
|
6780 |
-
"files": {
|
6781 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/medulaone/v4/AasPgDQak81dsTGQHc5zUPesZW2xOQ-xsNqO47m55DA.ttf"
|
6782 |
-
}
|
6783 |
-
},
|
6784 |
-
{
|
6785 |
-
"kind": "webfonts#webfont",
|
6786 |
-
"family": "Megrim",
|
6787 |
-
"category": "display",
|
6788 |
-
"variants": [
|
6789 |
-
"regular"
|
6790 |
-
],
|
6791 |
-
"subsets": [
|
6792 |
-
"latin"
|
6793 |
-
],
|
6794 |
-
"version": "v5",
|
6795 |
-
"lastModified": "2014-01-07",
|
6796 |
-
"files": {
|
6797 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/megrim/v5/e-9jVUC9lv1zxaFQARuftw.ttf"
|
6798 |
-
}
|
6799 |
-
},
|
6800 |
-
{
|
6801 |
-
"kind": "webfonts#webfont",
|
6802 |
-
"family": "Meie Script",
|
6803 |
-
"category": "handwriting",
|
6804 |
-
"variants": [
|
6805 |
-
"regular"
|
6806 |
-
],
|
6807 |
-
"subsets": [
|
6808 |
-
"latin",
|
6809 |
-
"latin-ext"
|
6810 |
-
],
|
6811 |
-
"version": "v2",
|
6812 |
-
"lastModified": "2014-01-07",
|
6813 |
-
"files": {
|
6814 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/meiescript/v2/oTIWE5MmPye-rCyVp_6KEqCWcynf_cDxXwCLxiixG1c.ttf"
|
6815 |
-
}
|
6816 |
-
},
|
6817 |
-
{
|
6818 |
-
"kind": "webfonts#webfont",
|
6819 |
-
"family": "Merienda",
|
6820 |
-
"category": "handwriting",
|
6821 |
-
"variants": [
|
6822 |
-
"regular",
|
6823 |
-
"700"
|
6824 |
-
],
|
6825 |
-
"subsets": [
|
6826 |
-
"latin",
|
6827 |
-
"latin-ext"
|
6828 |
-
],
|
6829 |
-
"version": "v2",
|
6830 |
-
"lastModified": "2014-01-07",
|
6831 |
-
"files": {
|
6832 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/merienda/v2/MYY6Og1qZlOQtPW2G95Y3A.ttf",
|
6833 |
-
"700": "http://themes.googleusercontent.com/static/fonts/merienda/v2/GlwcvRLlgiVE2MBFQ4r0sKCWcynf_cDxXwCLxiixG1c.ttf"
|
6834 |
-
}
|
6835 |
-
},
|
6836 |
-
{
|
6837 |
-
"kind": "webfonts#webfont",
|
6838 |
-
"family": "Merienda One",
|
6839 |
-
"category": "handwriting",
|
6840 |
-
"variants": [
|
6841 |
-
"regular"
|
6842 |
-
],
|
6843 |
-
"subsets": [
|
6844 |
-
"latin"
|
6845 |
-
],
|
6846 |
-
"version": "v5",
|
6847 |
-
"lastModified": "2014-01-07",
|
6848 |
-
"files": {
|
6849 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/meriendaone/v5/bCA-uDdUx6nTO8SjzCLXvS3USBnSvpkopQaUR-2r7iU.ttf"
|
6850 |
-
}
|
6851 |
-
},
|
6852 |
-
{
|
6853 |
-
"kind": "webfonts#webfont",
|
6854 |
-
"family": "Merriweather",
|
6855 |
-
"category": "serif",
|
6856 |
-
"variants": [
|
6857 |
-
"300",
|
6858 |
-
"300italic",
|
6859 |
-
"regular",
|
6860 |
-
"italic",
|
6861 |
-
"700",
|
6862 |
-
"700italic",
|
6863 |
-
"900",
|
6864 |
-
"900italic"
|
6865 |
-
],
|
6866 |
-
"subsets": [
|
6867 |
-
"latin",
|
6868 |
-
"latin-ext"
|
6869 |
-
],
|
6870 |
-
"version": "v6",
|
6871 |
-
"lastModified": "2014-01-07",
|
6872 |
-
"files": {
|
6873 |
-
"300": "http://themes.googleusercontent.com/static/fonts/merriweather/v6/ZvcMqxEwPfh2qDWBPxn6nqcQoVhARpoaILP7amxE_8g.ttf",
|
6874 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/merriweather/v6/EYh7Vl4ywhowqULgRdYwICna0FLWfcB-J_SAYmcAXaI.ttf",
|
6875 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/merriweather/v6/RFda8w1V0eDZheqfcyQ4EC3USBnSvpkopQaUR-2r7iU.ttf",
|
6876 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/merriweather/v6/So5lHxHT37p2SS4-t60SlPMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
6877 |
-
"700": "http://themes.googleusercontent.com/static/fonts/merriweather/v6/ZvcMqxEwPfh2qDWBPxn6nkD2ttfZwueP-QU272T9-k4.ttf",
|
6878 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/merriweather/v6/EYh7Vl4ywhowqULgRdYwIPAs9-1nE9qOqhChW0m4nDE.ttf",
|
6879 |
-
"900": "http://themes.googleusercontent.com/static/fonts/merriweather/v6/ZvcMqxEwPfh2qDWBPxn6nqObDOjC3UL77puoeHsE3fw.ttf",
|
6880 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/merriweather/v6/EYh7Vl4ywhowqULgRdYwIBd0_s6jQr9r5s5OZYvtzBY.ttf"
|
6881 |
-
}
|
6882 |
-
},
|
6883 |
-
{
|
6884 |
-
"kind": "webfonts#webfont",
|
6885 |
-
"family": "Merriweather Sans",
|
6886 |
-
"category": "sans-serif",
|
6887 |
-
"variants": [
|
6888 |
-
"300",
|
6889 |
-
"300italic",
|
6890 |
-
"regular",
|
6891 |
-
"italic",
|
6892 |
-
"700",
|
6893 |
-
"700italic",
|
6894 |
-
"800",
|
6895 |
-
"800italic"
|
6896 |
-
],
|
6897 |
-
"subsets": [
|
6898 |
-
"latin",
|
6899 |
-
"latin-ext"
|
6900 |
-
],
|
6901 |
-
"version": "v3",
|
6902 |
-
"lastModified": "2014-01-07",
|
6903 |
-
"files": {
|
6904 |
-
"300": "http://themes.googleusercontent.com/static/fonts/merriweathersans/v3/6LmGj5dOJopQKEkt88Gowan5N8K-_DP0e9e_v51obXQ.ttf",
|
6905 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/merriweathersans/v3/nAqt4hiqwq3tzCecpgPmVdytE4nGXk2hYD5nJ740tBw.ttf",
|
6906 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/merriweathersans/v3/AKu1CjQ4qnV8MUltkAX3sOAj_ty82iuwwDTNEYXGiyQ.ttf",
|
6907 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/merriweathersans/v3/3Mz4hOHzs2npRMG3B1ascZ32VBCoA_HLsn85tSWZmdo.ttf",
|
6908 |
-
"700": "http://themes.googleusercontent.com/static/fonts/merriweathersans/v3/6LmGj5dOJopQKEkt88GowbqxG25nQNOioCZSK4sU-CA.ttf",
|
6909 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/merriweathersans/v3/nAqt4hiqwq3tzCecpgPmVbuqAJxizi8Dk_SK5et7kMg.ttf",
|
6910 |
-
"800": "http://themes.googleusercontent.com/static/fonts/merriweathersans/v3/6LmGj5dOJopQKEkt88GowYufzO2zUYSj5LqoJ3UGkco.ttf",
|
6911 |
-
"800italic": "http://themes.googleusercontent.com/static/fonts/merriweathersans/v3/nAqt4hiqwq3tzCecpgPmVdDmPrYMy3aZO4LmnZsxTQw.ttf"
|
6912 |
-
}
|
6913 |
-
},
|
6914 |
-
{
|
6915 |
-
"kind": "webfonts#webfont",
|
6916 |
-
"family": "Metal",
|
6917 |
-
"category": "display",
|
6918 |
-
"variants": [
|
6919 |
-
"regular"
|
6920 |
-
],
|
6921 |
-
"subsets": [
|
6922 |
-
"khmer"
|
6923 |
-
],
|
6924 |
-
"version": "v7",
|
6925 |
-
"lastModified": "2014-01-07",
|
6926 |
-
"files": {
|
6927 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/metal/v7/zA3UOP13ooQcxjv04BZX5g.ttf"
|
6928 |
-
}
|
6929 |
-
},
|
6930 |
-
{
|
6931 |
-
"kind": "webfonts#webfont",
|
6932 |
-
"family": "Metal Mania",
|
6933 |
-
"category": "display",
|
6934 |
-
"variants": [
|
6935 |
-
"regular"
|
6936 |
-
],
|
6937 |
-
"subsets": [
|
6938 |
-
"latin",
|
6939 |
-
"latin-ext"
|
6940 |
-
],
|
6941 |
-
"version": "v3",
|
6942 |
-
"lastModified": "2014-01-07",
|
6943 |
-
"files": {
|
6944 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/metalmania/v3/isriV_rAUgj6bPWPN6l9QKCWcynf_cDxXwCLxiixG1c.ttf"
|
6945 |
-
}
|
6946 |
-
},
|
6947 |
-
{
|
6948 |
-
"kind": "webfonts#webfont",
|
6949 |
-
"family": "Metamorphous",
|
6950 |
-
"category": "display",
|
6951 |
-
"variants": [
|
6952 |
-
"regular"
|
6953 |
-
],
|
6954 |
-
"subsets": [
|
6955 |
-
"latin",
|
6956 |
-
"latin-ext"
|
6957 |
-
],
|
6958 |
-
"version": "v4",
|
6959 |
-
"lastModified": "2014-01-07",
|
6960 |
-
"files": {
|
6961 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/metamorphous/v4/wGqUKXRinIYggz-BTRU9ei3USBnSvpkopQaUR-2r7iU.ttf"
|
6962 |
-
}
|
6963 |
-
},
|
6964 |
-
{
|
6965 |
-
"kind": "webfonts#webfont",
|
6966 |
-
"family": "Metrophobic",
|
6967 |
-
"category": "sans-serif",
|
6968 |
-
"variants": [
|
6969 |
-
"regular"
|
6970 |
-
],
|
6971 |
-
"subsets": [
|
6972 |
-
"latin"
|
6973 |
-
],
|
6974 |
-
"version": "v4",
|
6975 |
-
"lastModified": "2014-01-07",
|
6976 |
-
"files": {
|
6977 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/metrophobic/v4/SaglWZWCrrv_D17u1i4v_aCWcynf_cDxXwCLxiixG1c.ttf"
|
6978 |
-
}
|
6979 |
-
},
|
6980 |
-
{
|
6981 |
-
"kind": "webfonts#webfont",
|
6982 |
-
"family": "Michroma",
|
6983 |
-
"category": "sans-serif",
|
6984 |
-
"variants": [
|
6985 |
-
"regular"
|
6986 |
-
],
|
6987 |
-
"subsets": [
|
6988 |
-
"latin"
|
6989 |
-
],
|
6990 |
-
"version": "v5",
|
6991 |
-
"lastModified": "2014-01-07",
|
6992 |
-
"files": {
|
6993 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/michroma/v5/0c2XrW81_QsiKV8T9thumA.ttf"
|
6994 |
-
}
|
6995 |
-
},
|
6996 |
-
{
|
6997 |
-
"kind": "webfonts#webfont",
|
6998 |
-
"family": "Milonga",
|
6999 |
-
"category": "display",
|
7000 |
-
"variants": [
|
7001 |
-
"regular"
|
7002 |
-
],
|
7003 |
-
"subsets": [
|
7004 |
-
"latin",
|
7005 |
-
"latin-ext"
|
7006 |
-
],
|
7007 |
-
"version": "v2",
|
7008 |
-
"lastModified": "2014-01-07",
|
7009 |
-
"files": {
|
7010 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/milonga/v2/dzNdIUSTGFmy2ahovDRcWg.ttf"
|
7011 |
-
}
|
7012 |
-
},
|
7013 |
-
{
|
7014 |
-
"kind": "webfonts#webfont",
|
7015 |
-
"family": "Miltonian",
|
7016 |
-
"category": "display",
|
7017 |
-
"variants": [
|
7018 |
-
"regular"
|
7019 |
-
],
|
7020 |
-
"subsets": [
|
7021 |
-
"latin"
|
7022 |
-
],
|
7023 |
-
"version": "v6",
|
7024 |
-
"lastModified": "2014-01-07",
|
7025 |
-
"files": {
|
7026 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/miltonian/v6/Z4HrYZyqm0BnNNzcCUfzoQ.ttf"
|
7027 |
-
}
|
7028 |
-
},
|
7029 |
-
{
|
7030 |
-
"kind": "webfonts#webfont",
|
7031 |
-
"family": "Miltonian Tattoo",
|
7032 |
-
"category": "display",
|
7033 |
-
"variants": [
|
7034 |
-
"regular"
|
7035 |
-
],
|
7036 |
-
"subsets": [
|
7037 |
-
"latin"
|
7038 |
-
],
|
7039 |
-
"version": "v7",
|
7040 |
-
"lastModified": "2014-01-07",
|
7041 |
-
"files": {
|
7042 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/miltoniantattoo/v7/1oU_8OGYwW46eh02YHydn2uk0YtI6thZkz1Hmh-odwg.ttf"
|
7043 |
-
}
|
7044 |
-
},
|
7045 |
-
{
|
7046 |
-
"kind": "webfonts#webfont",
|
7047 |
-
"family": "Miniver",
|
7048 |
-
"category": "display",
|
7049 |
-
"variants": [
|
7050 |
-
"regular"
|
7051 |
-
],
|
7052 |
-
"subsets": [
|
7053 |
-
"latin"
|
7054 |
-
],
|
7055 |
-
"version": "v3",
|
7056 |
-
"lastModified": "2014-01-07",
|
7057 |
-
"files": {
|
7058 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/miniver/v3/4yTQohOH_cWKRS5laRFhYg.ttf"
|
7059 |
-
}
|
7060 |
-
},
|
7061 |
-
{
|
7062 |
-
"kind": "webfonts#webfont",
|
7063 |
-
"family": "Miss Fajardose",
|
7064 |
-
"category": "handwriting",
|
7065 |
-
"variants": [
|
7066 |
-
"regular"
|
7067 |
-
],
|
7068 |
-
"subsets": [
|
7069 |
-
"latin",
|
7070 |
-
"latin-ext"
|
7071 |
-
],
|
7072 |
-
"version": "v4",
|
7073 |
-
"lastModified": "2014-01-07",
|
7074 |
-
"files": {
|
7075 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/missfajardose/v4/WcXjlQPKn6nBfr8LY3ktNu6rPKfVZo7L2bERcf0BDns.ttf"
|
7076 |
-
}
|
7077 |
-
},
|
7078 |
-
{
|
7079 |
-
"kind": "webfonts#webfont",
|
7080 |
-
"family": "Modern Antiqua",
|
7081 |
-
"category": "display",
|
7082 |
-
"variants": [
|
7083 |
-
"regular"
|
7084 |
-
],
|
7085 |
-
"subsets": [
|
7086 |
-
"latin",
|
7087 |
-
"latin-ext"
|
7088 |
-
],
|
7089 |
-
"version": "v4",
|
7090 |
-
"lastModified": "2014-01-07",
|
7091 |
-
"files": {
|
7092 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/modernantiqua/v4/8qX_tr6Xzy4t9fvZDXPkh6rFJ4O13IHVxZbM6yoslpo.ttf"
|
7093 |
-
}
|
7094 |
-
},
|
7095 |
-
{
|
7096 |
-
"kind": "webfonts#webfont",
|
7097 |
-
"family": "Molengo",
|
7098 |
-
"category": "sans-serif",
|
7099 |
-
"variants": [
|
7100 |
-
"regular"
|
7101 |
-
],
|
7102 |
-
"subsets": [
|
7103 |
-
"latin",
|
7104 |
-
"latin-ext"
|
7105 |
-
],
|
7106 |
-
"version": "v5",
|
7107 |
-
"lastModified": "2014-01-07",
|
7108 |
-
"files": {
|
7109 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/molengo/v5/jcjgeGuzv83I55AzOTpXNQ.ttf"
|
7110 |
-
}
|
7111 |
-
},
|
7112 |
-
{
|
7113 |
-
"kind": "webfonts#webfont",
|
7114 |
-
"family": "Molle",
|
7115 |
-
"category": "handwriting",
|
7116 |
-
"variants": [
|
7117 |
-
"italic"
|
7118 |
-
],
|
7119 |
-
"subsets": [
|
7120 |
-
"latin",
|
7121 |
-
"latin-ext"
|
7122 |
-
],
|
7123 |
-
"version": "v2",
|
7124 |
-
"lastModified": "2014-01-07",
|
7125 |
-
"files": {
|
7126 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/molle/v2/9XTdCsjPXifLqo5et-YoGA.ttf"
|
7127 |
-
}
|
7128 |
-
},
|
7129 |
-
{
|
7130 |
-
"kind": "webfonts#webfont",
|
7131 |
-
"family": "Monda",
|
7132 |
-
"category": "sans-serif",
|
7133 |
-
"variants": [
|
7134 |
-
"regular",
|
7135 |
-
"700"
|
7136 |
-
],
|
7137 |
-
"subsets": [
|
7138 |
-
"latin",
|
7139 |
-
"latin-ext"
|
7140 |
-
],
|
7141 |
-
"version": "v2",
|
7142 |
-
"lastModified": "2014-01-07",
|
7143 |
-
"files": {
|
7144 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/monda/v2/qFMHZ9zvR6B_gnoIgosPrw.ttf",
|
7145 |
-
"700": "http://themes.googleusercontent.com/static/fonts/monda/v2/EVOzZUyc_j1w2GuTgTAW1g.ttf"
|
7146 |
-
}
|
7147 |
-
},
|
7148 |
-
{
|
7149 |
-
"kind": "webfonts#webfont",
|
7150 |
-
"family": "Monofett",
|
7151 |
-
"category": "display",
|
7152 |
-
"variants": [
|
7153 |
-
"regular"
|
7154 |
-
],
|
7155 |
-
"subsets": [
|
7156 |
-
"latin"
|
7157 |
-
],
|
7158 |
-
"version": "v4",
|
7159 |
-
"lastModified": "2014-01-07",
|
7160 |
-
"files": {
|
7161 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/monofett/v4/C6K5L799Rgxzg2brgOaqAw.ttf"
|
7162 |
-
}
|
7163 |
-
},
|
7164 |
-
{
|
7165 |
-
"kind": "webfonts#webfont",
|
7166 |
-
"family": "Monoton",
|
7167 |
-
"category": "display",
|
7168 |
-
"variants": [
|
7169 |
-
"regular"
|
7170 |
-
],
|
7171 |
-
"subsets": [
|
7172 |
-
"latin"
|
7173 |
-
],
|
7174 |
-
"version": "v4",
|
7175 |
-
"lastModified": "2014-01-07",
|
7176 |
-
"files": {
|
7177 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/monoton/v4/aCz8ja_bE4dg-7agSvExdw.ttf"
|
7178 |
-
}
|
7179 |
-
},
|
7180 |
-
{
|
7181 |
-
"kind": "webfonts#webfont",
|
7182 |
-
"family": "Monsieur La Doulaise",
|
7183 |
-
"category": "handwriting",
|
7184 |
-
"variants": [
|
7185 |
-
"regular"
|
7186 |
-
],
|
7187 |
-
"subsets": [
|
7188 |
-
"latin",
|
7189 |
-
"latin-ext"
|
7190 |
-
],
|
7191 |
-
"version": "v3",
|
7192 |
-
"lastModified": "2014-01-07",
|
7193 |
-
"files": {
|
7194 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/monsieurladoulaise/v3/IMAdMj6Eq9jZ46CPctFtMKP61oAqTJXlx5ZVOBmcPdM.ttf"
|
7195 |
-
}
|
7196 |
-
},
|
7197 |
-
{
|
7198 |
-
"kind": "webfonts#webfont",
|
7199 |
-
"family": "Montaga",
|
7200 |
-
"category": "serif",
|
7201 |
-
"variants": [
|
7202 |
-
"regular"
|
7203 |
-
],
|
7204 |
-
"subsets": [
|
7205 |
-
"latin"
|
7206 |
-
],
|
7207 |
-
"version": "v2",
|
7208 |
-
"lastModified": "2014-01-07",
|
7209 |
-
"files": {
|
7210 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/montaga/v2/PwTwUboiD-M4-mFjZfJs2A.ttf"
|
7211 |
-
}
|
7212 |
-
},
|
7213 |
-
{
|
7214 |
-
"kind": "webfonts#webfont",
|
7215 |
-
"family": "Montez",
|
7216 |
-
"category": "handwriting",
|
7217 |
-
"variants": [
|
7218 |
-
"regular"
|
7219 |
-
],
|
7220 |
-
"subsets": [
|
7221 |
-
"latin"
|
7222 |
-
],
|
7223 |
-
"version": "v4",
|
7224 |
-
"lastModified": "2014-01-07",
|
7225 |
-
"files": {
|
7226 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/montez/v4/kx58rLOWQQLGFM4pDHv5Ng.ttf"
|
7227 |
-
}
|
7228 |
-
},
|
7229 |
-
{
|
7230 |
-
"kind": "webfonts#webfont",
|
7231 |
-
"family": "Montserrat",
|
7232 |
-
"category": "sans-serif",
|
7233 |
-
"variants": [
|
7234 |
-
"regular",
|
7235 |
-
"700"
|
7236 |
-
],
|
7237 |
-
"subsets": [
|
7238 |
-
"latin"
|
7239 |
-
],
|
7240 |
-
"version": "v4",
|
7241 |
-
"lastModified": "2014-01-07",
|
7242 |
-
"files": {
|
7243 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/montserrat/v4/Kqy6-utIpx_30Xzecmeo8_esZW2xOQ-xsNqO47m55DA.ttf",
|
7244 |
-
"700": "http://themes.googleusercontent.com/static/fonts/montserrat/v4/IQHow_FEYlDC4Gzy_m8fcgJKKGfqHaYFsRG-T3ceEVo.ttf"
|
7245 |
-
}
|
7246 |
-
},
|
7247 |
-
{
|
7248 |
-
"kind": "webfonts#webfont",
|
7249 |
-
"family": "Montserrat Alternates",
|
7250 |
-
"category": "sans-serif",
|
7251 |
-
"variants": [
|
7252 |
-
"regular",
|
7253 |
-
"700"
|
7254 |
-
],
|
7255 |
-
"subsets": [
|
7256 |
-
"latin"
|
7257 |
-
],
|
7258 |
-
"version": "v2",
|
7259 |
-
"lastModified": "2014-01-07",
|
7260 |
-
"files": {
|
7261 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/montserratalternates/v2/z2n1Sjxk9souK3HCtdHuklPuEVRGaG9GCQnmM16YWq0.ttf",
|
7262 |
-
"700": "http://themes.googleusercontent.com/static/fonts/montserratalternates/v2/YENqOGAVzwIHjYNjmKuAZpeqBKvsAhm-s2I4RVSXFfc.ttf"
|
7263 |
-
}
|
7264 |
-
},
|
7265 |
-
{
|
7266 |
-
"kind": "webfonts#webfont",
|
7267 |
-
"family": "Montserrat Subrayada",
|
7268 |
-
"category": "sans-serif",
|
7269 |
-
"variants": [
|
7270 |
-
"regular",
|
7271 |
-
"700"
|
7272 |
-
],
|
7273 |
-
"subsets": [
|
7274 |
-
"latin"
|
7275 |
-
],
|
7276 |
-
"version": "v2",
|
7277 |
-
"lastModified": "2014-01-07",
|
7278 |
-
"files": {
|
7279 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/montserratsubrayada/v2/nzoCWCz0e9c7Mr2Gl8bbgrJymm6ilkk9f0nDA_sC_qk.ttf",
|
7280 |
-
"700": "http://themes.googleusercontent.com/static/fonts/montserratsubrayada/v2/wf-IKpsHcfm0C9uaz9IeGJvEcF1LWArDbGWgKZSH9go.ttf"
|
7281 |
-
}
|
7282 |
-
},
|
7283 |
-
{
|
7284 |
-
"kind": "webfonts#webfont",
|
7285 |
-
"family": "Moul",
|
7286 |
-
"category": "display",
|
7287 |
-
"variants": [
|
7288 |
-
"regular"
|
7289 |
-
],
|
7290 |
-
"subsets": [
|
7291 |
-
"khmer"
|
7292 |
-
],
|
7293 |
-
"version": "v6",
|
7294 |
-
"lastModified": "2014-01-07",
|
7295 |
-
"files": {
|
7296 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/moul/v6/Kb0ALQnfyXawP1a_P_gpTQ.ttf"
|
7297 |
-
}
|
7298 |
-
},
|
7299 |
-
{
|
7300 |
-
"kind": "webfonts#webfont",
|
7301 |
-
"family": "Moulpali",
|
7302 |
-
"category": "display",
|
7303 |
-
"variants": [
|
7304 |
-
"regular"
|
7305 |
-
],
|
7306 |
-
"subsets": [
|
7307 |
-
"khmer"
|
7308 |
-
],
|
7309 |
-
"version": "v7",
|
7310 |
-
"lastModified": "2014-01-07",
|
7311 |
-
"files": {
|
7312 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/moulpali/v7/diD74BprGhmVkJoerKmrKA.ttf"
|
7313 |
-
}
|
7314 |
-
},
|
7315 |
-
{
|
7316 |
-
"kind": "webfonts#webfont",
|
7317 |
-
"family": "Mountains of Christmas",
|
7318 |
-
"category": "display",
|
7319 |
-
"variants": [
|
7320 |
-
"regular",
|
7321 |
-
"700"
|
7322 |
-
],
|
7323 |
-
"subsets": [
|
7324 |
-
"latin"
|
7325 |
-
],
|
7326 |
-
"version": "v6",
|
7327 |
-
"lastModified": "2014-01-07",
|
7328 |
-
"files": {
|
7329 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/mountainsofchristmas/v6/dVGBFPwd6G44IWDbQtPew2Auds3jz1Fxb61CgfaGDr4.ttf",
|
7330 |
-
"700": "http://themes.googleusercontent.com/static/fonts/mountainsofchristmas/v6/PymufKtHszoLrY0uiAYKNM9cPTbSBTrQyTa5TWAe3vE.ttf"
|
7331 |
-
}
|
7332 |
-
},
|
7333 |
-
{
|
7334 |
-
"kind": "webfonts#webfont",
|
7335 |
-
"family": "Mouse Memoirs",
|
7336 |
-
"category": "sans-serif",
|
7337 |
-
"variants": [
|
7338 |
-
"regular"
|
7339 |
-
],
|
7340 |
-
"subsets": [
|
7341 |
-
"latin",
|
7342 |
-
"latin-ext"
|
7343 |
-
],
|
7344 |
-
"version": "v2",
|
7345 |
-
"lastModified": "2014-01-07",
|
7346 |
-
"files": {
|
7347 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/mousememoirs/v2/NBFaaJFux_j0AQbAsW3QeH8f0n03UdmQgF_CLvNR2vg.ttf"
|
7348 |
-
}
|
7349 |
-
},
|
7350 |
-
{
|
7351 |
-
"kind": "webfonts#webfont",
|
7352 |
-
"family": "Mr Bedfort",
|
7353 |
-
"category": "handwriting",
|
7354 |
-
"variants": [
|
7355 |
-
"regular"
|
7356 |
-
],
|
7357 |
-
"subsets": [
|
7358 |
-
"latin",
|
7359 |
-
"latin-ext"
|
7360 |
-
],
|
7361 |
-
"version": "v3",
|
7362 |
-
"lastModified": "2014-01-07",
|
7363 |
-
"files": {
|
7364 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/mrbedfort/v3/81bGgHTRikLs_puEGshl7_esZW2xOQ-xsNqO47m55DA.ttf"
|
7365 |
-
}
|
7366 |
-
},
|
7367 |
-
{
|
7368 |
-
"kind": "webfonts#webfont",
|
7369 |
-
"family": "Mr Dafoe",
|
7370 |
-
"category": "handwriting",
|
7371 |
-
"variants": [
|
7372 |
-
"regular"
|
7373 |
-
],
|
7374 |
-
"subsets": [
|
7375 |
-
"latin",
|
7376 |
-
"latin-ext"
|
7377 |
-
],
|
7378 |
-
"version": "v3",
|
7379 |
-
"lastModified": "2014-01-07",
|
7380 |
-
"files": {
|
7381 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/mrdafoe/v3/s32Q1S6ZkT7EaX53mUirvQ.ttf"
|
7382 |
-
}
|
7383 |
-
},
|
7384 |
-
{
|
7385 |
-
"kind": "webfonts#webfont",
|
7386 |
-
"family": "Mr De Haviland",
|
7387 |
-
"category": "handwriting",
|
7388 |
-
"variants": [
|
7389 |
-
"regular"
|
7390 |
-
],
|
7391 |
-
"subsets": [
|
7392 |
-
"latin",
|
7393 |
-
"latin-ext"
|
7394 |
-
],
|
7395 |
-
"version": "v3",
|
7396 |
-
"lastModified": "2014-01-07",
|
7397 |
-
"files": {
|
7398 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/mrdehaviland/v3/fD8y4L6PJ4vqDk7z8Y8e27v4lrhng1lzu7-weKO6cw8.ttf"
|
7399 |
-
}
|
7400 |
-
},
|
7401 |
-
{
|
7402 |
-
"kind": "webfonts#webfont",
|
7403 |
-
"family": "Mrs Saint Delafield",
|
7404 |
-
"category": "handwriting",
|
7405 |
-
"variants": [
|
7406 |
-
"regular"
|
7407 |
-
],
|
7408 |
-
"subsets": [
|
7409 |
-
"latin",
|
7410 |
-
"latin-ext"
|
7411 |
-
],
|
7412 |
-
"version": "v2",
|
7413 |
-
"lastModified": "2014-01-07",
|
7414 |
-
"files": {
|
7415 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/mrssaintdelafield/v2/vuWagfFT7bj9lFtZOFBwmjHMBelqWf3tJeGyts2SmKU.ttf"
|
7416 |
-
}
|
7417 |
-
},
|
7418 |
-
{
|
7419 |
-
"kind": "webfonts#webfont",
|
7420 |
-
"family": "Mrs Sheppards",
|
7421 |
-
"category": "handwriting",
|
7422 |
-
"variants": [
|
7423 |
-
"regular"
|
7424 |
-
],
|
7425 |
-
"subsets": [
|
7426 |
-
"latin",
|
7427 |
-
"latin-ext"
|
7428 |
-
],
|
7429 |
-
"version": "v3",
|
7430 |
-
"lastModified": "2014-01-07",
|
7431 |
-
"files": {
|
7432 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/mrssheppards/v3/2WFsWMV3VUeCz6UVH7UjCn8f0n03UdmQgF_CLvNR2vg.ttf"
|
7433 |
-
}
|
7434 |
-
},
|
7435 |
-
{
|
7436 |
-
"kind": "webfonts#webfont",
|
7437 |
-
"family": "Muli",
|
7438 |
-
"category": "sans-serif",
|
7439 |
-
"variants": [
|
7440 |
-
"300",
|
7441 |
-
"300italic",
|
7442 |
-
"regular",
|
7443 |
-
"italic"
|
7444 |
-
],
|
7445 |
-
"subsets": [
|
7446 |
-
"latin"
|
7447 |
-
],
|
7448 |
-
"version": "v5",
|
7449 |
-
"lastModified": "2014-01-07",
|
7450 |
-
"files": {
|
7451 |
-
"300": "http://themes.googleusercontent.com/static/fonts/muli/v5/VJw4F3ZHRAZ7Hmg3nQu5YQ.ttf",
|
7452 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/muli/v5/s-NKMCru8HiyjEt0ZDoBoA.ttf",
|
7453 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/muli/v5/KJiP6KznxbALQgfJcDdPAw.ttf",
|
7454 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/muli/v5/Cg0K_IWANs9xkNoxV7H1_w.ttf"
|
7455 |
-
}
|
7456 |
-
},
|
7457 |
-
{
|
7458 |
-
"kind": "webfonts#webfont",
|
7459 |
-
"family": "Mystery Quest",
|
7460 |
-
"category": "display",
|
7461 |
-
"variants": [
|
7462 |
-
"regular"
|
7463 |
-
],
|
7464 |
-
"subsets": [
|
7465 |
-
"latin",
|
7466 |
-
"latin-ext"
|
7467 |
-
],
|
7468 |
-
"version": "v2",
|
7469 |
-
"lastModified": "2014-01-07",
|
7470 |
-
"files": {
|
7471 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/mysteryquest/v2/467jJvg0c7HgucvBB9PLDyeUSrabuTpOsMEiRLtKwk0.ttf"
|
7472 |
-
}
|
7473 |
-
},
|
7474 |
-
{
|
7475 |
-
"kind": "webfonts#webfont",
|
7476 |
-
"family": "Neucha",
|
7477 |
-
"category": "handwriting",
|
7478 |
-
"variants": [
|
7479 |
-
"regular"
|
7480 |
-
],
|
7481 |
-
"subsets": [
|
7482 |
-
"latin",
|
7483 |
-
"cyrillic"
|
7484 |
-
],
|
7485 |
-
"version": "v5",
|
7486 |
-
"lastModified": "2014-01-07",
|
7487 |
-
"files": {
|
7488 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/neucha/v5/bijdhB-TzQdtpl0ykhGh4Q.ttf"
|
7489 |
-
}
|
7490 |
-
},
|
7491 |
-
{
|
7492 |
-
"kind": "webfonts#webfont",
|
7493 |
-
"family": "Neuton",
|
7494 |
-
"category": "serif",
|
7495 |
-
"variants": [
|
7496 |
-
"200",
|
7497 |
-
"300",
|
7498 |
-
"regular",
|
7499 |
-
"italic",
|
7500 |
-
"700",
|
7501 |
-
"800"
|
7502 |
-
],
|
7503 |
-
"subsets": [
|
7504 |
-
"latin",
|
7505 |
-
"latin-ext"
|
7506 |
-
],
|
7507 |
-
"version": "v6",
|
7508 |
-
"lastModified": "2014-01-07",
|
7509 |
-
"files": {
|
7510 |
-
"200": "http://themes.googleusercontent.com/static/fonts/neuton/v6/DA3Mkew3XqSkPpi1f4tJow.ttf",
|
7511 |
-
"300": "http://themes.googleusercontent.com/static/fonts/neuton/v6/xrc_aZ2hx-gdeV0mlY8Vww.ttf",
|
7512 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/neuton/v6/9R-MGIOQUdjAVeB6nE6PcQ.ttf",
|
7513 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/neuton/v6/uVMT3JOB5BNFi3lgPp6kEg.ttf",
|
7514 |
-
"700": "http://themes.googleusercontent.com/static/fonts/neuton/v6/gnWpkWY7DirkKiovncYrfg.ttf",
|
7515 |
-
"800": "http://themes.googleusercontent.com/static/fonts/neuton/v6/XPzBQV4lY6enLxQG9cF1jw.ttf"
|
7516 |
-
}
|
7517 |
-
},
|
7518 |
-
{
|
7519 |
-
"kind": "webfonts#webfont",
|
7520 |
-
"family": "New Rocker",
|
7521 |
-
"category": "display",
|
7522 |
-
"variants": [
|
7523 |
-
"regular"
|
7524 |
-
],
|
7525 |
-
"subsets": [
|
7526 |
-
"latin",
|
7527 |
-
"latin-ext"
|
7528 |
-
],
|
7529 |
-
"version": "v2",
|
7530 |
-
"lastModified": "2014-01-07",
|
7531 |
-
"files": {
|
7532 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/newrocker/v2/EFUWzHJedEkpW399zYOHofesZW2xOQ-xsNqO47m55DA.ttf"
|
7533 |
-
}
|
7534 |
-
},
|
7535 |
-
{
|
7536 |
-
"kind": "webfonts#webfont",
|
7537 |
-
"family": "News Cycle",
|
7538 |
-
"category": "sans-serif",
|
7539 |
-
"variants": [
|
7540 |
-
"regular",
|
7541 |
-
"700"
|
7542 |
-
],
|
7543 |
-
"subsets": [
|
7544 |
-
"latin",
|
7545 |
-
"latin-ext"
|
7546 |
-
],
|
7547 |
-
"version": "v10",
|
7548 |
-
"lastModified": "2014-01-07",
|
7549 |
-
"files": {
|
7550 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/newscycle/v10/xyMAr8VfiUzIOvS1abHJO_esZW2xOQ-xsNqO47m55DA.ttf",
|
7551 |
-
"700": "http://themes.googleusercontent.com/static/fonts/newscycle/v10/G28Ny31cr5orMqEQy6ljtwJKKGfqHaYFsRG-T3ceEVo.ttf"
|
7552 |
-
}
|
7553 |
-
},
|
7554 |
-
{
|
7555 |
-
"kind": "webfonts#webfont",
|
7556 |
-
"family": "Niconne",
|
7557 |
-
"category": "handwriting",
|
7558 |
-
"variants": [
|
7559 |
-
"regular"
|
7560 |
-
],
|
7561 |
-
"subsets": [
|
7562 |
-
"latin",
|
7563 |
-
"latin-ext"
|
7564 |
-
],
|
7565 |
-
"version": "v4",
|
7566 |
-
"lastModified": "2014-01-07",
|
7567 |
-
"files": {
|
7568 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/niconne/v4/ZA-mFw2QNXodx5y7kfELBg.ttf"
|
7569 |
-
}
|
7570 |
-
},
|
7571 |
-
{
|
7572 |
-
"kind": "webfonts#webfont",
|
7573 |
-
"family": "Nixie One",
|
7574 |
-
"category": "display",
|
7575 |
-
"variants": [
|
7576 |
-
"regular"
|
7577 |
-
],
|
7578 |
-
"subsets": [
|
7579 |
-
"latin"
|
7580 |
-
],
|
7581 |
-
"version": "v5",
|
7582 |
-
"lastModified": "2014-01-07",
|
7583 |
-
"files": {
|
7584 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/nixieone/v5/h6kQfmzm0Shdnp3eswRaqQ.ttf"
|
7585 |
-
}
|
7586 |
-
},
|
7587 |
-
{
|
7588 |
-
"kind": "webfonts#webfont",
|
7589 |
-
"family": "Nobile",
|
7590 |
-
"category": "sans-serif",
|
7591 |
-
"variants": [
|
7592 |
-
"regular",
|
7593 |
-
"italic",
|
7594 |
-
"700",
|
7595 |
-
"700italic"
|
7596 |
-
],
|
7597 |
-
"subsets": [
|
7598 |
-
"latin"
|
7599 |
-
],
|
7600 |
-
"version": "v5",
|
7601 |
-
"lastModified": "2014-01-07",
|
7602 |
-
"files": {
|
7603 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/nobile/v5/lC_lPi1ddtN38iXTCRh6ow.ttf",
|
7604 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/nobile/v5/vGmrpKzWQQSrb-PR6FWBIA.ttf",
|
7605 |
-
"700": "http://themes.googleusercontent.com/static/fonts/nobile/v5/9p6M-Yrg_r_QPmSD1skrOg.ttf",
|
7606 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/nobile/v5/oQ1eYPaXV638N03KvsNvyKCWcynf_cDxXwCLxiixG1c.ttf"
|
7607 |
-
}
|
7608 |
-
},
|
7609 |
-
{
|
7610 |
-
"kind": "webfonts#webfont",
|
7611 |
-
"family": "Nokora",
|
7612 |
-
"category": "serif",
|
7613 |
-
"variants": [
|
7614 |
-
"regular",
|
7615 |
-
"700"
|
7616 |
-
],
|
7617 |
-
"subsets": [
|
7618 |
-
"khmer"
|
7619 |
-
],
|
7620 |
-
"version": "v7",
|
7621 |
-
"lastModified": "2014-01-07",
|
7622 |
-
"files": {
|
7623 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/nokora/v7/dRyz1JfnyKPNaRcBNX9F9A.ttf",
|
7624 |
-
"700": "http://themes.googleusercontent.com/static/fonts/nokora/v7/QMqqa4QEOhQpiig3cAPmbQ.ttf"
|
7625 |
-
}
|
7626 |
-
},
|
7627 |
-
{
|
7628 |
-
"kind": "webfonts#webfont",
|
7629 |
-
"family": "Norican",
|
7630 |
-
"category": "handwriting",
|
7631 |
-
"variants": [
|
7632 |
-
"regular"
|
7633 |
-
],
|
7634 |
-
"subsets": [
|
7635 |
-
"latin",
|
7636 |
-
"latin-ext"
|
7637 |
-
],
|
7638 |
-
"version": "v2",
|
7639 |
-
"lastModified": "2014-01-07",
|
7640 |
-
"files": {
|
7641 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/norican/v2/SHnSqhYAWG5sZTWcPzEHig.ttf"
|
7642 |
-
}
|
7643 |
-
},
|
7644 |
-
{
|
7645 |
-
"kind": "webfonts#webfont",
|
7646 |
-
"family": "Nosifer",
|
7647 |
-
"category": "display",
|
7648 |
-
"variants": [
|
7649 |
-
"regular"
|
7650 |
-
],
|
7651 |
-
"subsets": [
|
7652 |
-
"latin",
|
7653 |
-
"latin-ext"
|
7654 |
-
],
|
7655 |
-
"version": "v3",
|
7656 |
-
"lastModified": "2014-01-07",
|
7657 |
-
"files": {
|
7658 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/nosifer/v3/7eJGoIuHRrtcG00j6CptSA.ttf"
|
7659 |
-
}
|
7660 |
-
},
|
7661 |
-
{
|
7662 |
-
"kind": "webfonts#webfont",
|
7663 |
-
"family": "Nothing You Could Do",
|
7664 |
-
"category": "handwriting",
|
7665 |
-
"variants": [
|
7666 |
-
"regular"
|
7667 |
-
],
|
7668 |
-
"subsets": [
|
7669 |
-
"latin"
|
7670 |
-
],
|
7671 |
-
"version": "v4",
|
7672 |
-
"lastModified": "2014-01-07",
|
7673 |
-
"files": {
|
7674 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/nothingyoucoulddo/v4/jpk1K3jbJoyoK0XKaSyQAf-TpkXjXYGWiJZAEtBRjPU.ttf"
|
7675 |
-
}
|
7676 |
-
},
|
7677 |
-
{
|
7678 |
-
"kind": "webfonts#webfont",
|
7679 |
-
"family": "Noticia Text",
|
7680 |
-
"category": "serif",
|
7681 |
-
"variants": [
|
7682 |
-
"regular",
|
7683 |
-
"italic",
|
7684 |
-
"700",
|
7685 |
-
"700italic"
|
7686 |
-
],
|
7687 |
-
"subsets": [
|
7688 |
-
"latin",
|
7689 |
-
"vietnamese",
|
7690 |
-
"latin-ext"
|
7691 |
-
],
|
7692 |
-
"version": "v4",
|
7693 |
-
"lastModified": "2014-01-07",
|
7694 |
-
"files": {
|
7695 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/noticiatext/v4/wdyV6x3eKpdeUPQ7BJ5uUC3USBnSvpkopQaUR-2r7iU.ttf",
|
7696 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/noticiatext/v4/dAuxVpkYE_Q_IwIm6elsKPMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
7697 |
-
"700": "http://themes.googleusercontent.com/static/fonts/noticiatext/v4/pEko-RqEtp45bE2P80AAKUD2ttfZwueP-QU272T9-k4.ttf",
|
7698 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/noticiatext/v4/-rQ7V8ARjf28_b7kRa0JuvAs9-1nE9qOqhChW0m4nDE.ttf"
|
7699 |
-
}
|
7700 |
-
},
|
7701 |
-
{
|
7702 |
-
"kind": "webfonts#webfont",
|
7703 |
-
"family": "Noto Sans",
|
7704 |
-
"category": "sans-serif",
|
7705 |
-
"variants": [
|
7706 |
-
"regular",
|
7707 |
-
"italic",
|
7708 |
-
"700",
|
7709 |
-
"700italic"
|
7710 |
-
],
|
7711 |
-
"subsets": [
|
7712 |
-
"latin",
|
7713 |
-
"greek",
|
7714 |
-
"cyrillic",
|
7715 |
-
"vietnamese",
|
7716 |
-
"cyrillic-ext",
|
7717 |
-
"latin-ext",
|
7718 |
-
"devanagari",
|
7719 |
-
"greek-ext"
|
7720 |
-
],
|
7721 |
-
"version": "v4",
|
7722 |
-
"lastModified": "2014-02-24",
|
7723 |
-
"files": {
|
7724 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/notosans/v4/0Ue9FiUJwVhi4NGfHJS5uA.ttf",
|
7725 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/notosans/v4/dLcNKMgJ1H5RVoZFraDz0qCWcynf_cDxXwCLxiixG1c.ttf",
|
7726 |
-
"700": "http://themes.googleusercontent.com/static/fonts/notosans/v4/PIbvSEyHEdL91QLOQRnZ1y3USBnSvpkopQaUR-2r7iU.ttf",
|
7727 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/notosans/v4/9Z3uUWMRR7crzm1TjRicDne1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
7728 |
-
}
|
7729 |
-
},
|
7730 |
-
{
|
7731 |
-
"kind": "webfonts#webfont",
|
7732 |
-
"family": "Noto Serif",
|
7733 |
-
"category": "serif",
|
7734 |
-
"variants": [
|
7735 |
-
"regular",
|
7736 |
-
"italic",
|
7737 |
-
"700",
|
7738 |
-
"700italic"
|
7739 |
-
],
|
7740 |
-
"subsets": [
|
7741 |
-
"latin",
|
7742 |
-
"greek",
|
7743 |
-
"cyrillic",
|
7744 |
-
"vietnamese",
|
7745 |
-
"cyrillic-ext",
|
7746 |
-
"latin-ext",
|
7747 |
-
"greek-ext"
|
7748 |
-
],
|
7749 |
-
"version": "v2",
|
7750 |
-
"lastModified": "2014-01-07",
|
7751 |
-
"files": {
|
7752 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/notoserif/v2/zW6mc7bC1CWw8dH0yxY8JfesZW2xOQ-xsNqO47m55DA.ttf",
|
7753 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/notoserif/v2/HQXBIwLHsOJCNEQeX9kNzy3USBnSvpkopQaUR-2r7iU.ttf",
|
7754 |
-
"700": "http://themes.googleusercontent.com/static/fonts/notoserif/v2/lJAvZoKA5NttpPc9yc6lPQJKKGfqHaYFsRG-T3ceEVo.ttf",
|
7755 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/notoserif/v2/Wreg0Be4tcFGM2t6VWytvED2ttfZwueP-QU272T9-k4.ttf"
|
7756 |
-
}
|
7757 |
-
},
|
7758 |
-
{
|
7759 |
-
"kind": "webfonts#webfont",
|
7760 |
-
"family": "Nova Cut",
|
7761 |
-
"category": "display",
|
7762 |
-
"variants": [
|
7763 |
-
"regular"
|
7764 |
-
],
|
7765 |
-
"subsets": [
|
7766 |
-
"latin"
|
7767 |
-
],
|
7768 |
-
"version": "v6",
|
7769 |
-
"lastModified": "2014-01-07",
|
7770 |
-
"files": {
|
7771 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/novacut/v6/6q12jWcBvj0KO2cMRP97tA.ttf"
|
7772 |
-
}
|
7773 |
-
},
|
7774 |
-
{
|
7775 |
-
"kind": "webfonts#webfont",
|
7776 |
-
"family": "Nova Flat",
|
7777 |
-
"category": "display",
|
7778 |
-
"variants": [
|
7779 |
-
"regular"
|
7780 |
-
],
|
7781 |
-
"subsets": [
|
7782 |
-
"latin"
|
7783 |
-
],
|
7784 |
-
"version": "v6",
|
7785 |
-
"lastModified": "2014-01-07",
|
7786 |
-
"files": {
|
7787 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/novaflat/v6/pK7a0CoGzI684qe_XSHBqQ.ttf"
|
7788 |
-
}
|
7789 |
-
},
|
7790 |
-
{
|
7791 |
-
"kind": "webfonts#webfont",
|
7792 |
-
"family": "Nova Mono",
|
7793 |
-
"category": "monospace",
|
7794 |
-
"variants": [
|
7795 |
-
"regular"
|
7796 |
-
],
|
7797 |
-
"subsets": [
|
7798 |
-
"latin",
|
7799 |
-
"greek"
|
7800 |
-
],
|
7801 |
-
"version": "v5",
|
7802 |
-
"lastModified": "2014-03-18",
|
7803 |
-
"files": {
|
7804 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/novamono/v5/6-SChr5ZIaaasJFBkgrLNw.ttf"
|
7805 |
-
}
|
7806 |
-
},
|
7807 |
-
{
|
7808 |
-
"kind": "webfonts#webfont",
|
7809 |
-
"family": "Nova Oval",
|
7810 |
-
"category": "display",
|
7811 |
-
"variants": [
|
7812 |
-
"regular"
|
7813 |
-
],
|
7814 |
-
"subsets": [
|
7815 |
-
"latin"
|
7816 |
-
],
|
7817 |
-
"version": "v6",
|
7818 |
-
"lastModified": "2014-01-07",
|
7819 |
-
"files": {
|
7820 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/novaoval/v6/VuukVpKP8BwUf8o9W5LYQQ.ttf"
|
7821 |
-
}
|
7822 |
-
},
|
7823 |
-
{
|
7824 |
-
"kind": "webfonts#webfont",
|
7825 |
-
"family": "Nova Round",
|
7826 |
-
"category": "display",
|
7827 |
-
"variants": [
|
7828 |
-
"regular"
|
7829 |
-
],
|
7830 |
-
"subsets": [
|
7831 |
-
"latin"
|
7832 |
-
],
|
7833 |
-
"version": "v6",
|
7834 |
-
"lastModified": "2014-01-07",
|
7835 |
-
"files": {
|
7836 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/novaround/v6/7-cK3Ari_8XYYFgVMxVhDvesZW2xOQ-xsNqO47m55DA.ttf"
|
7837 |
-
}
|
7838 |
-
},
|
7839 |
-
{
|
7840 |
-
"kind": "webfonts#webfont",
|
7841 |
-
"family": "Nova Script",
|
7842 |
-
"category": "display",
|
7843 |
-
"variants": [
|
7844 |
-
"regular"
|
7845 |
-
],
|
7846 |
-
"subsets": [
|
7847 |
-
"latin"
|
7848 |
-
],
|
7849 |
-
"version": "v6",
|
7850 |
-
"lastModified": "2014-01-07",
|
7851 |
-
"files": {
|
7852 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/novascript/v6/dEvxQDLgx1M1TKY-NmBWYaCWcynf_cDxXwCLxiixG1c.ttf"
|
7853 |
-
}
|
7854 |
-
},
|
7855 |
-
{
|
7856 |
-
"kind": "webfonts#webfont",
|
7857 |
-
"family": "Nova Slim",
|
7858 |
-
"category": "display",
|
7859 |
-
"variants": [
|
7860 |
-
"regular"
|
7861 |
-
],
|
7862 |
-
"subsets": [
|
7863 |
-
"latin"
|
7864 |
-
],
|
7865 |
-
"version": "v6",
|
7866 |
-
"lastModified": "2014-01-07",
|
7867 |
-
"files": {
|
7868 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/novaslim/v6/rPYXC81_VL2EW-4CzBX65g.ttf"
|
7869 |
-
}
|
7870 |
-
},
|
7871 |
-
{
|
7872 |
-
"kind": "webfonts#webfont",
|
7873 |
-
"family": "Nova Square",
|
7874 |
-
"category": "display",
|
7875 |
-
"variants": [
|
7876 |
-
"regular"
|
7877 |
-
],
|
7878 |
-
"subsets": [
|
7879 |
-
"latin"
|
7880 |
-
],
|
7881 |
-
"version": "v6",
|
7882 |
-
"lastModified": "2014-01-07",
|
7883 |
-
"files": {
|
7884 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/novasquare/v6/BcBzXoaDzYX78rquGXVuSqCWcynf_cDxXwCLxiixG1c.ttf"
|
7885 |
-
}
|
7886 |
-
},
|
7887 |
-
{
|
7888 |
-
"kind": "webfonts#webfont",
|
7889 |
-
"family": "Numans",
|
7890 |
-
"category": "sans-serif",
|
7891 |
-
"variants": [
|
7892 |
-
"regular"
|
7893 |
-
],
|
7894 |
-
"subsets": [
|
7895 |
-
"latin"
|
7896 |
-
],
|
7897 |
-
"version": "v4",
|
7898 |
-
"lastModified": "2014-01-07",
|
7899 |
-
"files": {
|
7900 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/numans/v4/g5snI2p6OEjjTNmTHyBdiQ.ttf"
|
7901 |
-
}
|
7902 |
-
},
|
7903 |
-
{
|
7904 |
-
"kind": "webfonts#webfont",
|
7905 |
-
"family": "Nunito",
|
7906 |
-
"category": "sans-serif",
|
7907 |
-
"variants": [
|
7908 |
-
"300",
|
7909 |
-
"regular",
|
7910 |
-
"700"
|
7911 |
-
],
|
7912 |
-
"subsets": [
|
7913 |
-
"latin"
|
7914 |
-
],
|
7915 |
-
"version": "v5",
|
7916 |
-
"lastModified": "2014-01-07",
|
7917 |
-
"files": {
|
7918 |
-
"300": "http://themes.googleusercontent.com/static/fonts/nunito/v5/zXQvrWBJqUooM7Xv98MrQw.ttf",
|
7919 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/nunito/v5/ySZTeT3IuzJj0GK6uGpbBg.ttf",
|
7920 |
-
"700": "http://themes.googleusercontent.com/static/fonts/nunito/v5/aEdlqgMuYbpe4U3TnqOQMA.ttf"
|
7921 |
-
}
|
7922 |
-
},
|
7923 |
-
{
|
7924 |
-
"kind": "webfonts#webfont",
|
7925 |
-
"family": "Odor Mean Chey",
|
7926 |
-
"category": "display",
|
7927 |
-
"variants": [
|
7928 |
-
"regular"
|
7929 |
-
],
|
7930 |
-
"subsets": [
|
7931 |
-
"khmer"
|
7932 |
-
],
|
7933 |
-
"version": "v6",
|
7934 |
-
"lastModified": "2014-01-07",
|
7935 |
-
"files": {
|
7936 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/odormeanchey/v6/GK3E7EjPoBkeZhYshGFo0eVKG8sq4NyGgdteJLvqLDs.ttf"
|
7937 |
-
}
|
7938 |
-
},
|
7939 |
-
{
|
7940 |
-
"kind": "webfonts#webfont",
|
7941 |
-
"family": "Offside",
|
7942 |
-
"category": "display",
|
7943 |
-
"variants": [
|
7944 |
-
"regular"
|
7945 |
-
],
|
7946 |
-
"subsets": [
|
7947 |
-
"latin"
|
7948 |
-
],
|
7949 |
-
"version": "v2",
|
7950 |
-
"lastModified": "2014-01-07",
|
7951 |
-
"files": {
|
7952 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/offside/v2/v0C913SB8wqQUvcu1faUqw.ttf"
|
7953 |
-
}
|
7954 |
-
},
|
7955 |
-
{
|
7956 |
-
"kind": "webfonts#webfont",
|
7957 |
-
"family": "Old Standard TT",
|
7958 |
-
"category": "serif",
|
7959 |
-
"variants": [
|
7960 |
-
"regular",
|
7961 |
-
"italic",
|
7962 |
-
"700"
|
7963 |
-
],
|
7964 |
-
"subsets": [
|
7965 |
-
"latin"
|
7966 |
-
],
|
7967 |
-
"version": "v5",
|
7968 |
-
"lastModified": "2014-01-07",
|
7969 |
-
"files": {
|
7970 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/oldstandardtt/v5/n6RTCDcIPWSE8UNBa4k-DLcB5jyhm1VsHs65c3QNDr0.ttf",
|
7971 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/oldstandardtt/v5/QQT_AUSp4AV4dpJfIN7U5PWrQzeMtsHf8QsWQ2cZg3c.ttf",
|
7972 |
-
"700": "http://themes.googleusercontent.com/static/fonts/oldstandardtt/v5/5Ywdce7XEbTSbxs__4X1_HJqbZqK7TdZ58X80Q_Lw8Y.ttf"
|
7973 |
-
}
|
7974 |
-
},
|
7975 |
-
{
|
7976 |
-
"kind": "webfonts#webfont",
|
7977 |
-
"family": "Oldenburg",
|
7978 |
-
"category": "display",
|
7979 |
-
"variants": [
|
7980 |
-
"regular"
|
7981 |
-
],
|
7982 |
-
"subsets": [
|
7983 |
-
"latin",
|
7984 |
-
"latin-ext"
|
7985 |
-
],
|
7986 |
-
"version": "v2",
|
7987 |
-
"lastModified": "2014-01-07",
|
7988 |
-
"files": {
|
7989 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/oldenburg/v2/dqA_M_uoCVXZbCO-oKBTnQ.ttf"
|
7990 |
-
}
|
7991 |
-
},
|
7992 |
-
{
|
7993 |
-
"kind": "webfonts#webfont",
|
7994 |
-
"family": "Oleo Script",
|
7995 |
-
"category": "display",
|
7996 |
-
"variants": [
|
7997 |
-
"regular",
|
7998 |
-
"700"
|
7999 |
-
],
|
8000 |
-
"subsets": [
|
8001 |
-
"latin",
|
8002 |
-
"latin-ext"
|
8003 |
-
],
|
8004 |
-
"version": "v3",
|
8005 |
-
"lastModified": "2014-01-07",
|
8006 |
-
"files": {
|
8007 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/oleoscript/v3/21stZcmPyzbQVXtmGegyqKCWcynf_cDxXwCLxiixG1c.ttf",
|
8008 |
-
"700": "http://themes.googleusercontent.com/static/fonts/oleoscript/v3/hudNQFKFl98JdNnlo363fne1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
8009 |
-
}
|
8010 |
-
},
|
8011 |
-
{
|
8012 |
-
"kind": "webfonts#webfont",
|
8013 |
-
"family": "Oleo Script Swash Caps",
|
8014 |
-
"category": "display",
|
8015 |
-
"variants": [
|
8016 |
-
"regular",
|
8017 |
-
"700"
|
8018 |
-
],
|
8019 |
-
"subsets": [
|
8020 |
-
"latin",
|
8021 |
-
"latin-ext"
|
8022 |
-
],
|
8023 |
-
"version": "v2",
|
8024 |
-
"lastModified": "2014-01-07",
|
8025 |
-
"files": {
|
8026 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/oleoscriptswashcaps/v2/vdWhGqsBUAP-FF3NOYTe4iMF4kXAPemmyaDpMXQ31P0.ttf",
|
8027 |
-
"700": "http://themes.googleusercontent.com/static/fonts/oleoscriptswashcaps/v2/HMO3ftxA9AU5floml9c755reFYaXZ4zuJXJ8fr8OO1g.ttf"
|
8028 |
-
}
|
8029 |
-
},
|
8030 |
-
{
|
8031 |
-
"kind": "webfonts#webfont",
|
8032 |
-
"family": "Open Sans",
|
8033 |
-
"category": "sans-serif",
|
8034 |
-
"variants": [
|
8035 |
-
"300",
|
8036 |
-
"300italic",
|
8037 |
-
"regular",
|
8038 |
-
"italic",
|
8039 |
-
"600",
|
8040 |
-
"600italic",
|
8041 |
-
"700",
|
8042 |
-
"700italic",
|
8043 |
-
"800",
|
8044 |
-
"800italic"
|
8045 |
-
],
|
8046 |
-
"subsets": [
|
8047 |
-
"latin",
|
8048 |
-
"greek",
|
8049 |
-
"cyrillic",
|
8050 |
-
"vietnamese",
|
8051 |
-
"cyrillic-ext",
|
8052 |
-
"latin-ext",
|
8053 |
-
"devanagari",
|
8054 |
-
"greek-ext"
|
8055 |
-
],
|
8056 |
-
"version": "v8",
|
8057 |
-
"lastModified": "2014-02-24",
|
8058 |
-
"files": {
|
8059 |
-
"300": "http://themes.googleusercontent.com/static/fonts/opensans/v8/DXI1ORHCpsQm3Vp6mXoaTS3USBnSvpkopQaUR-2r7iU.ttf",
|
8060 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/opensans/v8/PRmiXeptR36kaC0GEAetxi9-WlPSxbfiI49GsXo3q0g.ttf",
|
8061 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/opensans/v8/IgZJs4-7SA1XX_edsoXWog.ttf",
|
8062 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/opensans/v8/O4NhV7_qs9r9seTo7fnsVKCWcynf_cDxXwCLxiixG1c.ttf",
|
8063 |
-
"600": "http://themes.googleusercontent.com/static/fonts/opensans/v8/MTP_ySUJH_bn48VBG8sNSi3USBnSvpkopQaUR-2r7iU.ttf",
|
8064 |
-
"600italic": "http://themes.googleusercontent.com/static/fonts/opensans/v8/PRmiXeptR36kaC0GEAetxpZ7xm-Bj30Bj2KNdXDzSZg.ttf",
|
8065 |
-
"700": "http://themes.googleusercontent.com/static/fonts/opensans/v8/k3k702ZOKiLJc3WVjuplzC3USBnSvpkopQaUR-2r7iU.ttf",
|
8066 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/opensans/v8/PRmiXeptR36kaC0GEAetxne1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
8067 |
-
"800": "http://themes.googleusercontent.com/static/fonts/opensans/v8/EInbV5DfGHOiMmvb1Xr-hi3USBnSvpkopQaUR-2r7iU.ttf",
|
8068 |
-
"800italic": "http://themes.googleusercontent.com/static/fonts/opensans/v8/PRmiXeptR36kaC0GEAetxg89PwPrYLaRFJ-HNCU9NbA.ttf"
|
8069 |
-
}
|
8070 |
-
},
|
8071 |
-
{
|
8072 |
-
"kind": "webfonts#webfont",
|
8073 |
-
"family": "Open Sans Condensed",
|
8074 |
-
"category": "sans-serif",
|
8075 |
-
"variants": [
|
8076 |
-
"300",
|
8077 |
-
"300italic",
|
8078 |
-
"700"
|
8079 |
-
],
|
8080 |
-
"subsets": [
|
8081 |
-
"latin",
|
8082 |
-
"greek",
|
8083 |
-
"cyrillic",
|
8084 |
-
"vietnamese",
|
8085 |
-
"cyrillic-ext",
|
8086 |
-
"latin-ext",
|
8087 |
-
"greek-ext"
|
8088 |
-
],
|
8089 |
-
"version": "v7",
|
8090 |
-
"lastModified": "2014-01-07",
|
8091 |
-
"files": {
|
8092 |
-
"300": "http://themes.googleusercontent.com/static/fonts/opensanscondensed/v7/gk5FxslNkTTHtojXrkp-xEMwSSh38KQVJx4ABtsZTnA.ttf",
|
8093 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/opensanscondensed/v7/jIXlqT1WKafUSwj6s9AzV4_LkTZ_uhAwfmGJ084hlvM.ttf",
|
8094 |
-
"700": "http://themes.googleusercontent.com/static/fonts/opensanscondensed/v7/gk5FxslNkTTHtojXrkp-xBEM87DM3yorPOrvA-vB930.ttf"
|
8095 |
-
}
|
8096 |
-
},
|
8097 |
-
{
|
8098 |
-
"kind": "webfonts#webfont",
|
8099 |
-
"family": "Oranienbaum",
|
8100 |
-
"category": "serif",
|
8101 |
-
"variants": [
|
8102 |
-
"regular"
|
8103 |
-
],
|
8104 |
-
"subsets": [
|
8105 |
-
"latin",
|
8106 |
-
"cyrillic",
|
8107 |
-
"cyrillic-ext",
|
8108 |
-
"latin-ext"
|
8109 |
-
],
|
8110 |
-
"version": "v2",
|
8111 |
-
"lastModified": "2014-01-07",
|
8112 |
-
"files": {
|
8113 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/oranienbaum/v2/M98jYwCSn0PaFhXXgviCoaCWcynf_cDxXwCLxiixG1c.ttf"
|
8114 |
-
}
|
8115 |
-
},
|
8116 |
-
{
|
8117 |
-
"kind": "webfonts#webfont",
|
8118 |
-
"family": "Orbitron",
|
8119 |
-
"category": "sans-serif",
|
8120 |
-
"variants": [
|
8121 |
-
"regular",
|
8122 |
-
"500",
|
8123 |
-
"700",
|
8124 |
-
"900"
|
8125 |
-
],
|
8126 |
-
"subsets": [
|
8127 |
-
"latin"
|
8128 |
-
],
|
8129 |
-
"version": "v4",
|
8130 |
-
"lastModified": "2014-01-07",
|
8131 |
-
"files": {
|
8132 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/orbitron/v4/DY8swouAZjR3RaUPRf0HDQ.ttf",
|
8133 |
-
"500": "http://themes.googleusercontent.com/static/fonts/orbitron/v4/p-y_ffzMdo5JN_7ia0vYEqCWcynf_cDxXwCLxiixG1c.ttf",
|
8134 |
-
"700": "http://themes.googleusercontent.com/static/fonts/orbitron/v4/PS9_6SLkY1Y6OgPO3APr6qCWcynf_cDxXwCLxiixG1c.ttf",
|
8135 |
-
"900": "http://themes.googleusercontent.com/static/fonts/orbitron/v4/2I3-8i9hT294TE_pyjy9SaCWcynf_cDxXwCLxiixG1c.ttf"
|
8136 |
-
}
|
8137 |
-
},
|
8138 |
-
{
|
8139 |
-
"kind": "webfonts#webfont",
|
8140 |
-
"family": "Oregano",
|
8141 |
-
"category": "display",
|
8142 |
-
"variants": [
|
8143 |
-
"regular",
|
8144 |
-
"italic"
|
8145 |
-
],
|
8146 |
-
"subsets": [
|
8147 |
-
"latin",
|
8148 |
-
"latin-ext"
|
8149 |
-
],
|
8150 |
-
"version": "v2",
|
8151 |
-
"lastModified": "2014-01-07",
|
8152 |
-
"files": {
|
8153 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/oregano/v2/UiLhqNixVv2EpjRoBG6axA.ttf",
|
8154 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/oregano/v2/_iwqGEht6XsAuEaCbYG64Q.ttf"
|
8155 |
-
}
|
8156 |
-
},
|
8157 |
-
{
|
8158 |
-
"kind": "webfonts#webfont",
|
8159 |
-
"family": "Orienta",
|
8160 |
-
"category": "sans-serif",
|
8161 |
-
"variants": [
|
8162 |
-
"regular"
|
8163 |
-
],
|
8164 |
-
"subsets": [
|
8165 |
-
"latin",
|
8166 |
-
"latin-ext"
|
8167 |
-
],
|
8168 |
-
"version": "v2",
|
8169 |
-
"lastModified": "2014-01-07",
|
8170 |
-
"files": {
|
8171 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/orienta/v2/_NKSk93mMs0xsqtfjCsB3Q.ttf"
|
8172 |
-
}
|
8173 |
-
},
|
8174 |
-
{
|
8175 |
-
"kind": "webfonts#webfont",
|
8176 |
-
"family": "Original Surfer",
|
8177 |
-
"category": "display",
|
8178 |
-
"variants": [
|
8179 |
-
"regular"
|
8180 |
-
],
|
8181 |
-
"subsets": [
|
8182 |
-
"latin"
|
8183 |
-
],
|
8184 |
-
"version": "v3",
|
8185 |
-
"lastModified": "2014-01-07",
|
8186 |
-
"files": {
|
8187 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/originalsurfer/v3/gdHw6HpSIN4D6Xt7pi1-qIkEz33TDwAZczo_6fY7eg0.ttf"
|
8188 |
-
}
|
8189 |
-
},
|
8190 |
-
{
|
8191 |
-
"kind": "webfonts#webfont",
|
8192 |
-
"family": "Oswald",
|
8193 |
-
"category": "sans-serif",
|
8194 |
-
"variants": [
|
8195 |
-
"300",
|
8196 |
-
"regular",
|
8197 |
-
"700"
|
8198 |
-
],
|
8199 |
-
"subsets": [
|
8200 |
-
"latin",
|
8201 |
-
"latin-ext"
|
8202 |
-
],
|
8203 |
-
"version": "v8",
|
8204 |
-
"lastModified": "2014-01-07",
|
8205 |
-
"files": {
|
8206 |
-
"300": "http://themes.googleusercontent.com/static/fonts/oswald/v8/y3tZpCdiRD4oNRRYFcAR5Q.ttf",
|
8207 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/oswald/v8/uLEd2g2vJglLPfsBF91DCg.ttf",
|
8208 |
-
"700": "http://themes.googleusercontent.com/static/fonts/oswald/v8/7wj8ldV_5Ti37rHa0m1DDw.ttf"
|
8209 |
-
}
|
8210 |
-
},
|
8211 |
-
{
|
8212 |
-
"kind": "webfonts#webfont",
|
8213 |
-
"family": "Over the Rainbow",
|
8214 |
-
"category": "handwriting",
|
8215 |
-
"variants": [
|
8216 |
-
"regular"
|
8217 |
-
],
|
8218 |
-
"subsets": [
|
8219 |
-
"latin"
|
8220 |
-
],
|
8221 |
-
"version": "v5",
|
8222 |
-
"lastModified": "2014-01-07",
|
8223 |
-
"files": {
|
8224 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/overtherainbow/v5/6gp-gkpI2kie2dHQQLM2jQBdxkZd83xOSx-PAQ2QmiI.ttf"
|
8225 |
-
}
|
8226 |
-
},
|
8227 |
-
{
|
8228 |
-
"kind": "webfonts#webfont",
|
8229 |
-
"family": "Overlock",
|
8230 |
-
"category": "display",
|
8231 |
-
"variants": [
|
8232 |
-
"regular",
|
8233 |
-
"italic",
|
8234 |
-
"700",
|
8235 |
-
"700italic",
|
8236 |
-
"900",
|
8237 |
-
"900italic"
|
8238 |
-
],
|
8239 |
-
"subsets": [
|
8240 |
-
"latin",
|
8241 |
-
"latin-ext"
|
8242 |
-
],
|
8243 |
-
"version": "v3",
|
8244 |
-
"lastModified": "2014-01-07",
|
8245 |
-
"files": {
|
8246 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/overlock/v3/Z8oYsGi88-E1cUB8YBFMAg.ttf",
|
8247 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/overlock/v3/rq6EacukHROOBrFrK_zF6_esZW2xOQ-xsNqO47m55DA.ttf",
|
8248 |
-
"700": "http://themes.googleusercontent.com/static/fonts/overlock/v3/Fexr8SqXM8Bm_gEVUA7AKaCWcynf_cDxXwCLxiixG1c.ttf",
|
8249 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/overlock/v3/wFWnYgeXKYBks6gEUwYnfAJKKGfqHaYFsRG-T3ceEVo.ttf",
|
8250 |
-
"900": "http://themes.googleusercontent.com/static/fonts/overlock/v3/YPJCVTT8ZbG3899l_-KIGqCWcynf_cDxXwCLxiixG1c.ttf",
|
8251 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/overlock/v3/iOZhxT2zlg7W5ij_lb-oDp0EAVxt0G0biEntp43Qt6E.ttf"
|
8252 |
-
}
|
8253 |
-
},
|
8254 |
-
{
|
8255 |
-
"kind": "webfonts#webfont",
|
8256 |
-
"family": "Overlock SC",
|
8257 |
-
"category": "display",
|
8258 |
-
"variants": [
|
8259 |
-
"regular"
|
8260 |
-
],
|
8261 |
-
"subsets": [
|
8262 |
-
"latin",
|
8263 |
-
"latin-ext"
|
8264 |
-
],
|
8265 |
-
"version": "v3",
|
8266 |
-
"lastModified": "2014-01-07",
|
8267 |
-
"files": {
|
8268 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/overlocksc/v3/8D7HYDsvS_g1GhBnlHzgzaCWcynf_cDxXwCLxiixG1c.ttf"
|
8269 |
-
}
|
8270 |
-
},
|
8271 |
-
{
|
8272 |
-
"kind": "webfonts#webfont",
|
8273 |
-
"family": "Ovo",
|
8274 |
-
"category": "serif",
|
8275 |
-
"variants": [
|
8276 |
-
"regular"
|
8277 |
-
],
|
8278 |
-
"subsets": [
|
8279 |
-
"latin"
|
8280 |
-
],
|
8281 |
-
"version": "v5",
|
8282 |
-
"lastModified": "2014-01-07",
|
8283 |
-
"files": {
|
8284 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ovo/v5/mFg27dimu3s9t09qjCwB1g.ttf"
|
8285 |
-
}
|
8286 |
-
},
|
8287 |
-
{
|
8288 |
-
"kind": "webfonts#webfont",
|
8289 |
-
"family": "Oxygen",
|
8290 |
-
"category": "sans-serif",
|
8291 |
-
"variants": [
|
8292 |
-
"300",
|
8293 |
-
"regular",
|
8294 |
-
"700"
|
8295 |
-
],
|
8296 |
-
"subsets": [
|
8297 |
-
"latin",
|
8298 |
-
"latin-ext"
|
8299 |
-
],
|
8300 |
-
"version": "v3",
|
8301 |
-
"lastModified": "2014-01-07",
|
8302 |
-
"files": {
|
8303 |
-
"300": "http://themes.googleusercontent.com/static/fonts/oxygen/v3/lZ31r0bR1Bzt_DfGZu1S8A.ttf",
|
8304 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/oxygen/v3/uhoyAE7XlQL22abzQieHjw.ttf",
|
8305 |
-
"700": "http://themes.googleusercontent.com/static/fonts/oxygen/v3/yLqkmDwuNtt5pSqsJmhyrg.ttf"
|
8306 |
-
}
|
8307 |
-
},
|
8308 |
-
{
|
8309 |
-
"kind": "webfonts#webfont",
|
8310 |
-
"family": "Oxygen Mono",
|
8311 |
-
"category": "monospace",
|
8312 |
-
"variants": [
|
8313 |
-
"regular"
|
8314 |
-
],
|
8315 |
-
"subsets": [
|
8316 |
-
"latin",
|
8317 |
-
"latin-ext"
|
8318 |
-
],
|
8319 |
-
"version": "v2",
|
8320 |
-
"lastModified": "2014-03-18",
|
8321 |
-
"files": {
|
8322 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/oxygenmono/v2/DigTu7k4b7OmM8ubt1Qza6CWcynf_cDxXwCLxiixG1c.ttf"
|
8323 |
-
}
|
8324 |
-
},
|
8325 |
-
{
|
8326 |
-
"kind": "webfonts#webfont",
|
8327 |
-
"family": "PT Mono",
|
8328 |
-
"category": "monospace",
|
8329 |
-
"variants": [
|
8330 |
-
"regular"
|
8331 |
-
],
|
8332 |
-
"subsets": [
|
8333 |
-
"latin",
|
8334 |
-
"cyrillic",
|
8335 |
-
"cyrillic-ext",
|
8336 |
-
"latin-ext"
|
8337 |
-
],
|
8338 |
-
"version": "v2",
|
8339 |
-
"lastModified": "2014-03-18",
|
8340 |
-
"files": {
|
8341 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ptmono/v2/QUbM8H9yJK5NhpQ0REO6Wg.ttf"
|
8342 |
-
}
|
8343 |
-
},
|
8344 |
-
{
|
8345 |
-
"kind": "webfonts#webfont",
|
8346 |
-
"family": "PT Sans",
|
8347 |
-
"category": "sans-serif",
|
8348 |
-
"variants": [
|
8349 |
-
"regular",
|
8350 |
-
"italic",
|
8351 |
-
"700",
|
8352 |
-
"700italic"
|
8353 |
-
],
|
8354 |
-
"subsets": [
|
8355 |
-
"latin",
|
8356 |
-
"cyrillic",
|
8357 |
-
"cyrillic-ext",
|
8358 |
-
"latin-ext"
|
8359 |
-
],
|
8360 |
-
"version": "v6",
|
8361 |
-
"lastModified": "2014-01-07",
|
8362 |
-
"files": {
|
8363 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ptsans/v6/UFoEz2uiuMypUGZL1NKoeg.ttf",
|
8364 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/ptsans/v6/yls9EYWOd496wiu7qzfgNg.ttf",
|
8365 |
-
"700": "http://themes.googleusercontent.com/static/fonts/ptsans/v6/F51BEgHuR0tYHxF0bD4vwvesZW2xOQ-xsNqO47m55DA.ttf",
|
8366 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/ptsans/v6/lILlYDvubYemzYzN7GbLkC3USBnSvpkopQaUR-2r7iU.ttf"
|
8367 |
-
}
|
8368 |
-
},
|
8369 |
-
{
|
8370 |
-
"kind": "webfonts#webfont",
|
8371 |
-
"family": "PT Sans Caption",
|
8372 |
-
"category": "sans-serif",
|
8373 |
-
"variants": [
|
8374 |
-
"regular",
|
8375 |
-
"700"
|
8376 |
-
],
|
8377 |
-
"subsets": [
|
8378 |
-
"latin",
|
8379 |
-
"cyrillic",
|
8380 |
-
"cyrillic-ext",
|
8381 |
-
"latin-ext"
|
8382 |
-
],
|
8383 |
-
"version": "v7",
|
8384 |
-
"lastModified": "2014-01-07",
|
8385 |
-
"files": {
|
8386 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ptsanscaption/v7/OXYTDOzBcXU8MTNBvBHeSW8by34Z3mUMtM-o4y-SHCY.ttf",
|
8387 |
-
"700": "http://themes.googleusercontent.com/static/fonts/ptsanscaption/v7/Q-gJrFokeE7JydPpxASt25tc0eyfI4QDEsobEEpk_hA.ttf"
|
8388 |
-
}
|
8389 |
-
},
|
8390 |
-
{
|
8391 |
-
"kind": "webfonts#webfont",
|
8392 |
-
"family": "PT Sans Narrow",
|
8393 |
-
"category": "sans-serif",
|
8394 |
-
"variants": [
|
8395 |
-
"regular",
|
8396 |
-
"700"
|
8397 |
-
],
|
8398 |
-
"subsets": [
|
8399 |
-
"latin",
|
8400 |
-
"cyrillic",
|
8401 |
-
"cyrillic-ext",
|
8402 |
-
"latin-ext"
|
8403 |
-
],
|
8404 |
-
"version": "v5",
|
8405 |
-
"lastModified": "2014-01-07",
|
8406 |
-
"files": {
|
8407 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ptsansnarrow/v5/UyYrYy3ltEffJV9QueSi4ZTvAuddT2xDMbdz0mdLyZY.ttf",
|
8408 |
-
"700": "http://themes.googleusercontent.com/static/fonts/ptsansnarrow/v5/Q_pTky3Sc3ubRibGToTAYsLtdzs3iyjn_YuT226ZsLU.ttf"
|
8409 |
-
}
|
8410 |
-
},
|
8411 |
-
{
|
8412 |
-
"kind": "webfonts#webfont",
|
8413 |
-
"family": "PT Serif",
|
8414 |
-
"category": "serif",
|
8415 |
-
"variants": [
|
8416 |
-
"regular",
|
8417 |
-
"italic",
|
8418 |
-
"700",
|
8419 |
-
"700italic"
|
8420 |
-
],
|
8421 |
-
"subsets": [
|
8422 |
-
"latin",
|
8423 |
-
"cyrillic",
|
8424 |
-
"cyrillic-ext",
|
8425 |
-
"latin-ext"
|
8426 |
-
],
|
8427 |
-
"version": "v6",
|
8428 |
-
"lastModified": "2014-01-07",
|
8429 |
-
"files": {
|
8430 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ptserif/v6/sAo427rn3-QL9sWCbMZXhA.ttf",
|
8431 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/ptserif/v6/9khWhKzhpkH0OkNnBKS3n_esZW2xOQ-xsNqO47m55DA.ttf",
|
8432 |
-
"700": "http://themes.googleusercontent.com/static/fonts/ptserif/v6/kyZw18tqQ5if-_wpmxxOeKCWcynf_cDxXwCLxiixG1c.ttf",
|
8433 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/ptserif/v6/Foydq9xJp--nfYIx2TBz9QJKKGfqHaYFsRG-T3ceEVo.ttf"
|
8434 |
-
}
|
8435 |
-
},
|
8436 |
-
{
|
8437 |
-
"kind": "webfonts#webfont",
|
8438 |
-
"family": "PT Serif Caption",
|
8439 |
-
"category": "serif",
|
8440 |
-
"variants": [
|
8441 |
-
"regular",
|
8442 |
-
"italic"
|
8443 |
-
],
|
8444 |
-
"subsets": [
|
8445 |
-
"latin",
|
8446 |
-
"cyrillic",
|
8447 |
-
"cyrillic-ext",
|
8448 |
-
"latin-ext"
|
8449 |
-
],
|
8450 |
-
"version": "v6",
|
8451 |
-
"lastModified": "2014-01-07",
|
8452 |
-
"files": {
|
8453 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ptserifcaption/v6/7xkFOeTxxO1GMC1suOUYWVsRioCqs5fohhaYel24W3k.ttf",
|
8454 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/ptserifcaption/v6/0kfPsmrmTSgiec7u_Wa0DB1mqvzPHelJwRcF_s_EUM0.ttf"
|
8455 |
-
}
|
8456 |
-
},
|
8457 |
-
{
|
8458 |
-
"kind": "webfonts#webfont",
|
8459 |
-
"family": "Pacifico",
|
8460 |
-
"category": "handwriting",
|
8461 |
-
"variants": [
|
8462 |
-
"regular"
|
8463 |
-
],
|
8464 |
-
"subsets": [
|
8465 |
-
"latin"
|
8466 |
-
],
|
8467 |
-
"version": "v5",
|
8468 |
-
"lastModified": "2014-01-07",
|
8469 |
-
"files": {
|
8470 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/pacifico/v5/GIrpeRY1r5CzbfL8r182lw.ttf"
|
8471 |
-
}
|
8472 |
-
},
|
8473 |
-
{
|
8474 |
-
"kind": "webfonts#webfont",
|
8475 |
-
"family": "Paprika",
|
8476 |
-
"category": "display",
|
8477 |
-
"variants": [
|
8478 |
-
"regular"
|
8479 |
-
],
|
8480 |
-
"subsets": [
|
8481 |
-
"latin"
|
8482 |
-
],
|
8483 |
-
"version": "v2",
|
8484 |
-
"lastModified": "2014-01-07",
|
8485 |
-
"files": {
|
8486 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/paprika/v2/b-VpyoRSieBdB5BPJVF8HQ.ttf"
|
8487 |
-
}
|
8488 |
-
},
|
8489 |
-
{
|
8490 |
-
"kind": "webfonts#webfont",
|
8491 |
-
"family": "Parisienne",
|
8492 |
-
"category": "handwriting",
|
8493 |
-
"variants": [
|
8494 |
-
"regular"
|
8495 |
-
],
|
8496 |
-
"subsets": [
|
8497 |
-
"latin",
|
8498 |
-
"latin-ext"
|
8499 |
-
],
|
8500 |
-
"version": "v2",
|
8501 |
-
"lastModified": "2014-01-07",
|
8502 |
-
"files": {
|
8503 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/parisienne/v2/TW74B5QISJNx9moxGlmJfvesZW2xOQ-xsNqO47m55DA.ttf"
|
8504 |
-
}
|
8505 |
-
},
|
8506 |
-
{
|
8507 |
-
"kind": "webfonts#webfont",
|
8508 |
-
"family": "Passero One",
|
8509 |
-
"category": "display",
|
8510 |
-
"variants": [
|
8511 |
-
"regular"
|
8512 |
-
],
|
8513 |
-
"subsets": [
|
8514 |
-
"latin",
|
8515 |
-
"latin-ext"
|
8516 |
-
],
|
8517 |
-
"version": "v6",
|
8518 |
-
"lastModified": "2014-01-07",
|
8519 |
-
"files": {
|
8520 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/passeroone/v6/Yc-7nH5deCCv9Ed0MMnAQqCWcynf_cDxXwCLxiixG1c.ttf"
|
8521 |
-
}
|
8522 |
-
},
|
8523 |
-
{
|
8524 |
-
"kind": "webfonts#webfont",
|
8525 |
-
"family": "Passion One",
|
8526 |
-
"category": "display",
|
8527 |
-
"variants": [
|
8528 |
-
"regular",
|
8529 |
-
"700",
|
8530 |
-
"900"
|
8531 |
-
],
|
8532 |
-
"subsets": [
|
8533 |
-
"latin",
|
8534 |
-
"latin-ext"
|
8535 |
-
],
|
8536 |
-
"version": "v4",
|
8537 |
-
"lastModified": "2014-01-07",
|
8538 |
-
"files": {
|
8539 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/passionone/v4/1UIK1tg3bKJ4J3o35M4heqCWcynf_cDxXwCLxiixG1c.ttf",
|
8540 |
-
"700": "http://themes.googleusercontent.com/static/fonts/passionone/v4/feOcYDy2R-f3Ysy72PYJ2ne1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
8541 |
-
"900": "http://themes.googleusercontent.com/static/fonts/passionone/v4/feOcYDy2R-f3Ysy72PYJ2ienaqEuufTBk9XMKnKmgDA.ttf"
|
8542 |
-
}
|
8543 |
-
},
|
8544 |
-
{
|
8545 |
-
"kind": "webfonts#webfont",
|
8546 |
-
"family": "Pathway Gothic One",
|
8547 |
-
"category": "sans-serif",
|
8548 |
-
"variants": [
|
8549 |
-
"regular"
|
8550 |
-
],
|
8551 |
-
"subsets": [
|
8552 |
-
"latin",
|
8553 |
-
"latin-ext"
|
8554 |
-
],
|
8555 |
-
"version": "v2",
|
8556 |
-
"lastModified": "2014-01-07",
|
8557 |
-
"files": {
|
8558 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/pathwaygothicone/v2/Lqv9ztoTUV8Q0FmQZzPqaA6A6xIYD7vYcYDop1i-K-c.ttf"
|
8559 |
-
}
|
8560 |
-
},
|
8561 |
-
{
|
8562 |
-
"kind": "webfonts#webfont",
|
8563 |
-
"family": "Patrick Hand",
|
8564 |
-
"category": "handwriting",
|
8565 |
-
"variants": [
|
8566 |
-
"regular"
|
8567 |
-
],
|
8568 |
-
"subsets": [
|
8569 |
-
"latin",
|
8570 |
-
"vietnamese",
|
8571 |
-
"latin-ext"
|
8572 |
-
],
|
8573 |
-
"version": "v8",
|
8574 |
-
"lastModified": "2014-01-07",
|
8575 |
-
"files": {
|
8576 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/patrickhand/v8/9BG3JJgt_HlF3NpEUehL0C3USBnSvpkopQaUR-2r7iU.ttf"
|
8577 |
-
}
|
8578 |
-
},
|
8579 |
-
{
|
8580 |
-
"kind": "webfonts#webfont",
|
8581 |
-
"family": "Patrick Hand SC",
|
8582 |
-
"category": "handwriting",
|
8583 |
-
"variants": [
|
8584 |
-
"regular"
|
8585 |
-
],
|
8586 |
-
"subsets": [
|
8587 |
-
"latin",
|
8588 |
-
"vietnamese",
|
8589 |
-
"latin-ext"
|
8590 |
-
],
|
8591 |
-
"version": "v2",
|
8592 |
-
"lastModified": "2014-01-07",
|
8593 |
-
"files": {
|
8594 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/patrickhandsc/v2/OYFWCgfCR-7uHIovjUZXsbAgSRh1LpJXlLfl8IbsmHg.ttf"
|
8595 |
-
}
|
8596 |
-
},
|
8597 |
-
{
|
8598 |
-
"kind": "webfonts#webfont",
|
8599 |
-
"family": "Patua One",
|
8600 |
-
"category": "display",
|
8601 |
-
"variants": [
|
8602 |
-
"regular"
|
8603 |
-
],
|
8604 |
-
"subsets": [
|
8605 |
-
"latin"
|
8606 |
-
],
|
8607 |
-
"version": "v4",
|
8608 |
-
"lastModified": "2014-01-07",
|
8609 |
-
"files": {
|
8610 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/patuaone/v4/njZwotTYjswR4qdhsW-kJw.ttf"
|
8611 |
-
}
|
8612 |
-
},
|
8613 |
-
{
|
8614 |
-
"kind": "webfonts#webfont",
|
8615 |
-
"family": "Paytone One",
|
8616 |
-
"category": "sans-serif",
|
8617 |
-
"variants": [
|
8618 |
-
"regular"
|
8619 |
-
],
|
8620 |
-
"subsets": [
|
8621 |
-
"latin"
|
8622 |
-
],
|
8623 |
-
"version": "v6",
|
8624 |
-
"lastModified": "2014-01-07",
|
8625 |
-
"files": {
|
8626 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/paytoneone/v6/3WCxC7JAJjQHQVoIE0ZwvqCWcynf_cDxXwCLxiixG1c.ttf"
|
8627 |
-
}
|
8628 |
-
},
|
8629 |
-
{
|
8630 |
-
"kind": "webfonts#webfont",
|
8631 |
-
"family": "Peralta",
|
8632 |
-
"category": "display",
|
8633 |
-
"variants": [
|
8634 |
-
"regular"
|
8635 |
-
],
|
8636 |
-
"subsets": [
|
8637 |
-
"latin",
|
8638 |
-
"latin-ext"
|
8639 |
-
],
|
8640 |
-
"version": "v2",
|
8641 |
-
"lastModified": "2014-01-07",
|
8642 |
-
"files": {
|
8643 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/peralta/v2/cTJX5KEuc0GKRU9NXSm-8Q.ttf"
|
8644 |
-
}
|
8645 |
-
},
|
8646 |
-
{
|
8647 |
-
"kind": "webfonts#webfont",
|
8648 |
-
"family": "Permanent Marker",
|
8649 |
-
"category": "handwriting",
|
8650 |
-
"variants": [
|
8651 |
-
"regular"
|
8652 |
-
],
|
8653 |
-
"subsets": [
|
8654 |
-
"latin"
|
8655 |
-
],
|
8656 |
-
"version": "v3",
|
8657 |
-
"lastModified": "2014-01-07",
|
8658 |
-
"files": {
|
8659 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/permanentmarker/v3/9vYsg5VgPHKK8SXYbf3sMol14xj5tdg9OHF8w4E7StQ.ttf"
|
8660 |
-
}
|
8661 |
-
},
|
8662 |
-
{
|
8663 |
-
"kind": "webfonts#webfont",
|
8664 |
-
"family": "Petit Formal Script",
|
8665 |
-
"category": "handwriting",
|
8666 |
-
"variants": [
|
8667 |
-
"regular"
|
8668 |
-
],
|
8669 |
-
"subsets": [
|
8670 |
-
"latin",
|
8671 |
-
"latin-ext"
|
8672 |
-
],
|
8673 |
-
"version": "v2",
|
8674 |
-
"lastModified": "2014-01-07",
|
8675 |
-
"files": {
|
8676 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/petitformalscript/v2/OEZwr2-ovBsq2n3ACCKoEvVPl2Gjtxj0D6F7QLy1VQc.ttf"
|
8677 |
-
}
|
8678 |
-
},
|
8679 |
-
{
|
8680 |
-
"kind": "webfonts#webfont",
|
8681 |
-
"family": "Petrona",
|
8682 |
-
"category": "serif",
|
8683 |
-
"variants": [
|
8684 |
-
"regular"
|
8685 |
-
],
|
8686 |
-
"subsets": [
|
8687 |
-
"latin"
|
8688 |
-
],
|
8689 |
-
"version": "v3",
|
8690 |
-
"lastModified": "2014-01-07",
|
8691 |
-
"files": {
|
8692 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/petrona/v3/nnQwxlP6dhrGovYEFtemTg.ttf"
|
8693 |
-
}
|
8694 |
-
},
|
8695 |
-
{
|
8696 |
-
"kind": "webfonts#webfont",
|
8697 |
-
"family": "Philosopher",
|
8698 |
-
"category": "sans-serif",
|
8699 |
-
"variants": [
|
8700 |
-
"regular",
|
8701 |
-
"italic",
|
8702 |
-
"700",
|
8703 |
-
"700italic"
|
8704 |
-
],
|
8705 |
-
"subsets": [
|
8706 |
-
"latin",
|
8707 |
-
"cyrillic"
|
8708 |
-
],
|
8709 |
-
"version": "v5",
|
8710 |
-
"lastModified": "2014-01-07",
|
8711 |
-
"files": {
|
8712 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/philosopher/v5/oZLTrB9jmJsyV0u_T0TKEaCWcynf_cDxXwCLxiixG1c.ttf",
|
8713 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/philosopher/v5/_9Hnc_gz9k7Qq6uKaeHKmUeOrDcLawS7-ssYqLr2Xp4.ttf",
|
8714 |
-
"700": "http://themes.googleusercontent.com/static/fonts/philosopher/v5/napvkewXG9Gqby5vwGHICHe1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
8715 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/philosopher/v5/PuKlryTcvTj7-qZWfLCFIM_zJjSACmk0BRPxQqhnNLU.ttf"
|
8716 |
-
}
|
8717 |
-
},
|
8718 |
-
{
|
8719 |
-
"kind": "webfonts#webfont",
|
8720 |
-
"family": "Piedra",
|
8721 |
-
"category": "display",
|
8722 |
-
"variants": [
|
8723 |
-
"regular"
|
8724 |
-
],
|
8725 |
-
"subsets": [
|
8726 |
-
"latin",
|
8727 |
-
"latin-ext"
|
8728 |
-
],
|
8729 |
-
"version": "v3",
|
8730 |
-
"lastModified": "2014-01-07",
|
8731 |
-
"files": {
|
8732 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/piedra/v3/owf-AvEEyAj9LJ2tVZ_3Mw.ttf"
|
8733 |
-
}
|
8734 |
-
},
|
8735 |
-
{
|
8736 |
-
"kind": "webfonts#webfont",
|
8737 |
-
"family": "Pinyon Script",
|
8738 |
-
"category": "handwriting",
|
8739 |
-
"variants": [
|
8740 |
-
"regular"
|
8741 |
-
],
|
8742 |
-
"subsets": [
|
8743 |
-
"latin"
|
8744 |
-
],
|
8745 |
-
"version": "v4",
|
8746 |
-
"lastModified": "2014-01-07",
|
8747 |
-
"files": {
|
8748 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/pinyonscript/v4/TzghnhfCn7TuE73f-CBQ0CeUSrabuTpOsMEiRLtKwk0.ttf"
|
8749 |
-
}
|
8750 |
-
},
|
8751 |
-
{
|
8752 |
-
"kind": "webfonts#webfont",
|
8753 |
-
"family": "Pirata One",
|
8754 |
-
"category": "display",
|
8755 |
-
"variants": [
|
8756 |
-
"regular"
|
8757 |
-
],
|
8758 |
-
"subsets": [
|
8759 |
-
"latin",
|
8760 |
-
"latin-ext"
|
8761 |
-
],
|
8762 |
-
"version": "v2",
|
8763 |
-
"lastModified": "2014-01-07",
|
8764 |
-
"files": {
|
8765 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/pirataone/v2/WnbD86B4vB2ckYcL7oxuhvesZW2xOQ-xsNqO47m55DA.ttf"
|
8766 |
-
}
|
8767 |
-
},
|
8768 |
-
{
|
8769 |
-
"kind": "webfonts#webfont",
|
8770 |
-
"family": "Plaster",
|
8771 |
-
"category": "display",
|
8772 |
-
"variants": [
|
8773 |
-
"regular"
|
8774 |
-
],
|
8775 |
-
"subsets": [
|
8776 |
-
"latin",
|
8777 |
-
"latin-ext"
|
8778 |
-
],
|
8779 |
-
"version": "v5",
|
8780 |
-
"lastModified": "2014-01-07",
|
8781 |
-
"files": {
|
8782 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/plaster/v5/O4QG9Z5116CXyfJdR9zxLw.ttf"
|
8783 |
-
}
|
8784 |
-
},
|
8785 |
-
{
|
8786 |
-
"kind": "webfonts#webfont",
|
8787 |
-
"family": "Play",
|
8788 |
-
"category": "sans-serif",
|
8789 |
-
"variants": [
|
8790 |
-
"regular",
|
8791 |
-
"700"
|
8792 |
-
],
|
8793 |
-
"subsets": [
|
8794 |
-
"latin",
|
8795 |
-
"greek",
|
8796 |
-
"cyrillic",
|
8797 |
-
"cyrillic-ext",
|
8798 |
-
"latin-ext",
|
8799 |
-
"greek-ext"
|
8800 |
-
],
|
8801 |
-
"version": "v4",
|
8802 |
-
"lastModified": "2014-01-07",
|
8803 |
-
"files": {
|
8804 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/play/v4/GWvfObW8LhtsOX333MCpBg.ttf",
|
8805 |
-
"700": "http://themes.googleusercontent.com/static/fonts/play/v4/crPhg6I0alLI-MpB3vW-zw.ttf"
|
8806 |
-
}
|
8807 |
-
},
|
8808 |
-
{
|
8809 |
-
"kind": "webfonts#webfont",
|
8810 |
-
"family": "Playball",
|
8811 |
-
"category": "display",
|
8812 |
-
"variants": [
|
8813 |
-
"regular"
|
8814 |
-
],
|
8815 |
-
"subsets": [
|
8816 |
-
"latin",
|
8817 |
-
"latin-ext"
|
8818 |
-
],
|
8819 |
-
"version": "v4",
|
8820 |
-
"lastModified": "2014-01-07",
|
8821 |
-
"files": {
|
8822 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/playball/v4/3hOFiQm_EUzycTpcN9uz4w.ttf"
|
8823 |
-
}
|
8824 |
-
},
|
8825 |
-
{
|
8826 |
-
"kind": "webfonts#webfont",
|
8827 |
-
"family": "Playfair Display",
|
8828 |
-
"category": "serif",
|
8829 |
-
"variants": [
|
8830 |
-
"regular",
|
8831 |
-
"italic",
|
8832 |
-
"700",
|
8833 |
-
"700italic",
|
8834 |
-
"900",
|
8835 |
-
"900italic"
|
8836 |
-
],
|
8837 |
-
"subsets": [
|
8838 |
-
"latin",
|
8839 |
-
"cyrillic",
|
8840 |
-
"latin-ext"
|
8841 |
-
],
|
8842 |
-
"version": "v8",
|
8843 |
-
"lastModified": "2014-01-07",
|
8844 |
-
"files": {
|
8845 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/playfairdisplay/v8/2NBgzUtEeyB-Xtpr9bm1CV6uyC_qD11hrFQ6EGgTJWI.ttf",
|
8846 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/playfairdisplay/v8/9MkijrV-dEJ0-_NWV7E6NzMsbnvDNEBX25F5HWk9AhI.ttf",
|
8847 |
-
"700": "http://themes.googleusercontent.com/static/fonts/playfairdisplay/v8/UC3ZEjagJi85gF9qFaBgICsv6SrURqJprbhH_C1Mw8w.ttf",
|
8848 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/playfairdisplay/v8/n7G4PqJvFP2Kubl0VBLDECsYW3XoOVcYyYdp9NzzS9E.ttf",
|
8849 |
-
"900": "http://themes.googleusercontent.com/static/fonts/playfairdisplay/v8/UC3ZEjagJi85gF9qFaBgIKqwMe2wjvZrAR44M0BJZ48.ttf",
|
8850 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/playfairdisplay/v8/n7G4PqJvFP2Kubl0VBLDEC0JfJ4xmm7j1kL6D7mPxrA.ttf"
|
8851 |
-
}
|
8852 |
-
},
|
8853 |
-
{
|
8854 |
-
"kind": "webfonts#webfont",
|
8855 |
-
"family": "Playfair Display SC",
|
8856 |
-
"category": "serif",
|
8857 |
-
"variants": [
|
8858 |
-
"regular",
|
8859 |
-
"italic",
|
8860 |
-
"700",
|
8861 |
-
"700italic",
|
8862 |
-
"900",
|
8863 |
-
"900italic"
|
8864 |
-
],
|
8865 |
-
"subsets": [
|
8866 |
-
"latin",
|
8867 |
-
"cyrillic",
|
8868 |
-
"latin-ext"
|
8869 |
-
],
|
8870 |
-
"version": "v2",
|
8871 |
-
"lastModified": "2014-01-07",
|
8872 |
-
"files": {
|
8873 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/playfairdisplaysc/v2/G0-tvBxd4eQRdwFKB8dRkcpjYTDWIvcAwAccqeW9uNM.ttf",
|
8874 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/playfairdisplaysc/v2/myuYiFR-4NTrUT4w6TKls2klJsJYggW8rlNoTOTuau0.ttf",
|
8875 |
-
"700": "http://themes.googleusercontent.com/static/fonts/playfairdisplaysc/v2/5ggqGkvWJU_TtW2W8cEubA-Amcyomnuy4WsCiPxGHjw.ttf",
|
8876 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/playfairdisplaysc/v2/6X0OQrQhEEnPo56RalREX4krgPi80XvBcbTwmz-rgmU.ttf",
|
8877 |
-
"900": "http://themes.googleusercontent.com/static/fonts/playfairdisplaysc/v2/5ggqGkvWJU_TtW2W8cEubKXL3C32k275YmX_AcBPZ7w.ttf",
|
8878 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/playfairdisplaysc/v2/6X0OQrQhEEnPo56RalREX8Zag2q3ssKz8uH1RU4a9gs.ttf"
|
8879 |
-
}
|
8880 |
-
},
|
8881 |
-
{
|
8882 |
-
"kind": "webfonts#webfont",
|
8883 |
-
"family": "Podkova",
|
8884 |
-
"category": "serif",
|
8885 |
-
"variants": [
|
8886 |
-
"regular",
|
8887 |
-
"700"
|
8888 |
-
],
|
8889 |
-
"subsets": [
|
8890 |
-
"latin"
|
8891 |
-
],
|
8892 |
-
"version": "v6",
|
8893 |
-
"lastModified": "2014-01-07",
|
8894 |
-
"files": {
|
8895 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/podkova/v6/eylljyGVfB8ZUQjYY3WZRQ.ttf",
|
8896 |
-
"700": "http://themes.googleusercontent.com/static/fonts/podkova/v6/SqW4aa8m_KVrOgYSydQ33vesZW2xOQ-xsNqO47m55DA.ttf"
|
8897 |
-
}
|
8898 |
-
},
|
8899 |
-
{
|
8900 |
-
"kind": "webfonts#webfont",
|
8901 |
-
"family": "Poiret One",
|
8902 |
-
"category": "display",
|
8903 |
-
"variants": [
|
8904 |
-
"regular"
|
8905 |
-
],
|
8906 |
-
"subsets": [
|
8907 |
-
"latin",
|
8908 |
-
"cyrillic",
|
8909 |
-
"latin-ext"
|
8910 |
-
],
|
8911 |
-
"version": "v2",
|
8912 |
-
"lastModified": "2014-01-07",
|
8913 |
-
"files": {
|
8914 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/poiretone/v2/dWcYed048E5gHGDIt8i1CPesZW2xOQ-xsNqO47m55DA.ttf"
|
8915 |
-
}
|
8916 |
-
},
|
8917 |
-
{
|
8918 |
-
"kind": "webfonts#webfont",
|
8919 |
-
"family": "Poller One",
|
8920 |
-
"category": "display",
|
8921 |
-
"variants": [
|
8922 |
-
"regular"
|
8923 |
-
],
|
8924 |
-
"subsets": [
|
8925 |
-
"latin"
|
8926 |
-
],
|
8927 |
-
"version": "v4",
|
8928 |
-
"lastModified": "2014-01-07",
|
8929 |
-
"files": {
|
8930 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/pollerone/v4/dkctmDlTPcZ6boC8662RA_esZW2xOQ-xsNqO47m55DA.ttf"
|
8931 |
-
}
|
8932 |
-
},
|
8933 |
-
{
|
8934 |
-
"kind": "webfonts#webfont",
|
8935 |
-
"family": "Poly",
|
8936 |
-
"category": "serif",
|
8937 |
-
"variants": [
|
8938 |
-
"regular",
|
8939 |
-
"italic"
|
8940 |
-
],
|
8941 |
-
"subsets": [
|
8942 |
-
"latin"
|
8943 |
-
],
|
8944 |
-
"version": "v5",
|
8945 |
-
"lastModified": "2014-01-07",
|
8946 |
-
"files": {
|
8947 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/poly/v5/bcMAuiacS2qkd54BcwW6_Q.ttf",
|
8948 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/poly/v5/Zkx-eIlZSjKUrPGYhV5PeA.ttf"
|
8949 |
-
}
|
8950 |
-
},
|
8951 |
-
{
|
8952 |
-
"kind": "webfonts#webfont",
|
8953 |
-
"family": "Pompiere",
|
8954 |
-
"category": "display",
|
8955 |
-
"variants": [
|
8956 |
-
"regular"
|
8957 |
-
],
|
8958 |
-
"subsets": [
|
8959 |
-
"latin"
|
8960 |
-
],
|
8961 |
-
"version": "v4",
|
8962 |
-
"lastModified": "2014-01-07",
|
8963 |
-
"files": {
|
8964 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/pompiere/v4/o_va2p9CD5JfmFohAkGZIA.ttf"
|
8965 |
-
}
|
8966 |
-
},
|
8967 |
-
{
|
8968 |
-
"kind": "webfonts#webfont",
|
8969 |
-
"family": "Pontano Sans",
|
8970 |
-
"category": "sans-serif",
|
8971 |
-
"variants": [
|
8972 |
-
"regular"
|
8973 |
-
],
|
8974 |
-
"subsets": [
|
8975 |
-
"latin",
|
8976 |
-
"latin-ext"
|
8977 |
-
],
|
8978 |
-
"version": "v2",
|
8979 |
-
"lastModified": "2014-01-07",
|
8980 |
-
"files": {
|
8981 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/pontanosans/v2/gTHiwyxi6S7iiHpqAoiE3C3USBnSvpkopQaUR-2r7iU.ttf"
|
8982 |
-
}
|
8983 |
-
},
|
8984 |
-
{
|
8985 |
-
"kind": "webfonts#webfont",
|
8986 |
-
"family": "Port Lligat Sans",
|
8987 |
-
"category": "sans-serif",
|
8988 |
-
"variants": [
|
8989 |
-
"regular"
|
8990 |
-
],
|
8991 |
-
"subsets": [
|
8992 |
-
"latin"
|
8993 |
-
],
|
8994 |
-
"version": "v3",
|
8995 |
-
"lastModified": "2014-01-07",
|
8996 |
-
"files": {
|
8997 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/portlligatsans/v3/CUEdhRk7oC7up0p6t0g4P6mASEpx5X0ZpsuJOuvfOGA.ttf"
|
8998 |
-
}
|
8999 |
-
},
|
9000 |
-
{
|
9001 |
-
"kind": "webfonts#webfont",
|
9002 |
-
"family": "Port Lligat Slab",
|
9003 |
-
"category": "serif",
|
9004 |
-
"variants": [
|
9005 |
-
"regular"
|
9006 |
-
],
|
9007 |
-
"subsets": [
|
9008 |
-
"latin"
|
9009 |
-
],
|
9010 |
-
"version": "v3",
|
9011 |
-
"lastModified": "2014-01-07",
|
9012 |
-
"files": {
|
9013 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/portlligatslab/v3/CUEdhRk7oC7up0p6t0g4PxLSPACXvawUYCBEnHsOe30.ttf"
|
9014 |
-
}
|
9015 |
-
},
|
9016 |
-
{
|
9017 |
-
"kind": "webfonts#webfont",
|
9018 |
-
"family": "Prata",
|
9019 |
-
"category": "serif",
|
9020 |
-
"variants": [
|
9021 |
-
"regular"
|
9022 |
-
],
|
9023 |
-
"subsets": [
|
9024 |
-
"latin"
|
9025 |
-
],
|
9026 |
-
"version": "v4",
|
9027 |
-
"lastModified": "2014-01-07",
|
9028 |
-
"files": {
|
9029 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/prata/v4/3gmx8r842loRRm9iQkCDGg.ttf"
|
9030 |
-
}
|
9031 |
-
},
|
9032 |
-
{
|
9033 |
-
"kind": "webfonts#webfont",
|
9034 |
-
"family": "Preahvihear",
|
9035 |
-
"category": "display",
|
9036 |
-
"variants": [
|
9037 |
-
"regular"
|
9038 |
-
],
|
9039 |
-
"subsets": [
|
9040 |
-
"khmer"
|
9041 |
-
],
|
9042 |
-
"version": "v6",
|
9043 |
-
"lastModified": "2014-01-07",
|
9044 |
-
"files": {
|
9045 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/preahvihear/v6/82tDI-xTc53CxxOzEG4hDaCWcynf_cDxXwCLxiixG1c.ttf"
|
9046 |
-
}
|
9047 |
-
},
|
9048 |
-
{
|
9049 |
-
"kind": "webfonts#webfont",
|
9050 |
-
"family": "Press Start 2P",
|
9051 |
-
"category": "display",
|
9052 |
-
"variants": [
|
9053 |
-
"regular"
|
9054 |
-
],
|
9055 |
-
"subsets": [
|
9056 |
-
"latin",
|
9057 |
-
"greek",
|
9058 |
-
"cyrillic",
|
9059 |
-
"latin-ext"
|
9060 |
-
],
|
9061 |
-
"version": "v2",
|
9062 |
-
"lastModified": "2014-01-07",
|
9063 |
-
"files": {
|
9064 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/pressstart2p/v2/8Lg6LX8-ntOHUQnvQ0E7o1jfl3W46Sz5gOkEVhcFWF4.ttf"
|
9065 |
-
}
|
9066 |
-
},
|
9067 |
-
{
|
9068 |
-
"kind": "webfonts#webfont",
|
9069 |
-
"family": "Princess Sofia",
|
9070 |
-
"category": "handwriting",
|
9071 |
-
"variants": [
|
9072 |
-
"regular"
|
9073 |
-
],
|
9074 |
-
"subsets": [
|
9075 |
-
"latin",
|
9076 |
-
"latin-ext"
|
9077 |
-
],
|
9078 |
-
"version": "v2",
|
9079 |
-
"lastModified": "2014-01-07",
|
9080 |
-
"files": {
|
9081 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/princesssofia/v2/8g5l8r9BM0t1QsXLTajDe-wjmA7ie-lFcByzHGRhCIg.ttf"
|
9082 |
-
}
|
9083 |
-
},
|
9084 |
-
{
|
9085 |
-
"kind": "webfonts#webfont",
|
9086 |
-
"family": "Prociono",
|
9087 |
-
"category": "serif",
|
9088 |
-
"variants": [
|
9089 |
-
"regular"
|
9090 |
-
],
|
9091 |
-
"subsets": [
|
9092 |
-
"latin"
|
9093 |
-
],
|
9094 |
-
"version": "v4",
|
9095 |
-
"lastModified": "2014-01-07",
|
9096 |
-
"files": {
|
9097 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/prociono/v4/43ZYDHWogdFeNBWTl6ksmw.ttf"
|
9098 |
-
}
|
9099 |
-
},
|
9100 |
-
{
|
9101 |
-
"kind": "webfonts#webfont",
|
9102 |
-
"family": "Prosto One",
|
9103 |
-
"category": "display",
|
9104 |
-
"variants": [
|
9105 |
-
"regular"
|
9106 |
-
],
|
9107 |
-
"subsets": [
|
9108 |
-
"latin",
|
9109 |
-
"cyrillic",
|
9110 |
-
"latin-ext"
|
9111 |
-
],
|
9112 |
-
"version": "v2",
|
9113 |
-
"lastModified": "2014-01-07",
|
9114 |
-
"files": {
|
9115 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/prostoone/v2/bsqnAElAqk9kX7eABTRFJPesZW2xOQ-xsNqO47m55DA.ttf"
|
9116 |
-
}
|
9117 |
-
},
|
9118 |
-
{
|
9119 |
-
"kind": "webfonts#webfont",
|
9120 |
-
"family": "Puritan",
|
9121 |
-
"category": "sans-serif",
|
9122 |
-
"variants": [
|
9123 |
-
"regular",
|
9124 |
-
"italic",
|
9125 |
-
"700",
|
9126 |
-
"700italic"
|
9127 |
-
],
|
9128 |
-
"subsets": [
|
9129 |
-
"latin"
|
9130 |
-
],
|
9131 |
-
"version": "v5",
|
9132 |
-
"lastModified": "2014-01-07",
|
9133 |
-
"files": {
|
9134 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/puritan/v5/wv_RtgVBSCn-or2MC0n4Kg.ttf",
|
9135 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/puritan/v5/BqZX8Tp200LeMv1KlzXgLQ.ttf",
|
9136 |
-
"700": "http://themes.googleusercontent.com/static/fonts/puritan/v5/pJS2SdwI0SCiVnO0iQSFT_esZW2xOQ-xsNqO47m55DA.ttf",
|
9137 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/puritan/v5/rFG3XkMJL75nUNZwCEIJqC3USBnSvpkopQaUR-2r7iU.ttf"
|
9138 |
-
}
|
9139 |
-
},
|
9140 |
-
{
|
9141 |
-
"kind": "webfonts#webfont",
|
9142 |
-
"family": "Purple Purse",
|
9143 |
-
"category": "display",
|
9144 |
-
"variants": [
|
9145 |
-
"regular"
|
9146 |
-
],
|
9147 |
-
"subsets": [
|
9148 |
-
"latin",
|
9149 |
-
"latin-ext"
|
9150 |
-
],
|
9151 |
-
"version": "v2",
|
9152 |
-
"lastModified": "2014-01-07",
|
9153 |
-
"files": {
|
9154 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/purplepurse/v2/Q5heFUrdmei9axbMITxxxS3USBnSvpkopQaUR-2r7iU.ttf"
|
9155 |
-
}
|
9156 |
-
},
|
9157 |
-
{
|
9158 |
-
"kind": "webfonts#webfont",
|
9159 |
-
"family": "Quando",
|
9160 |
-
"category": "serif",
|
9161 |
-
"variants": [
|
9162 |
-
"regular"
|
9163 |
-
],
|
9164 |
-
"subsets": [
|
9165 |
-
"latin",
|
9166 |
-
"latin-ext"
|
9167 |
-
],
|
9168 |
-
"version": "v2",
|
9169 |
-
"lastModified": "2014-01-07",
|
9170 |
-
"files": {
|
9171 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/quando/v2/03nDiEZuO2-h3xvtG6UmHg.ttf"
|
9172 |
-
}
|
9173 |
-
},
|
9174 |
-
{
|
9175 |
-
"kind": "webfonts#webfont",
|
9176 |
-
"family": "Quantico",
|
9177 |
-
"category": "sans-serif",
|
9178 |
-
"variants": [
|
9179 |
-
"regular",
|
9180 |
-
"italic",
|
9181 |
-
"700",
|
9182 |
-
"700italic"
|
9183 |
-
],
|
9184 |
-
"subsets": [
|
9185 |
-
"latin"
|
9186 |
-
],
|
9187 |
-
"version": "v3",
|
9188 |
-
"lastModified": "2014-01-07",
|
9189 |
-
"files": {
|
9190 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/quantico/v3/pwSnP8Xpaix2rIz99HrSlQ.ttf",
|
9191 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/quantico/v3/KQhDd2OsZi6HiITUeFQ2U_esZW2xOQ-xsNqO47m55DA.ttf",
|
9192 |
-
"700": "http://themes.googleusercontent.com/static/fonts/quantico/v3/OVZZzjcZ3Hkq2ojVcUtDjaCWcynf_cDxXwCLxiixG1c.ttf",
|
9193 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/quantico/v3/HeCYRcZbdRso3ZUu01ELbQJKKGfqHaYFsRG-T3ceEVo.ttf"
|
9194 |
-
}
|
9195 |
-
},
|
9196 |
-
{
|
9197 |
-
"kind": "webfonts#webfont",
|
9198 |
-
"family": "Quattrocento",
|
9199 |
-
"category": "serif",
|
9200 |
-
"variants": [
|
9201 |
-
"regular",
|
9202 |
-
"700"
|
9203 |
-
],
|
9204 |
-
"subsets": [
|
9205 |
-
"latin",
|
9206 |
-
"latin-ext"
|
9207 |
-
],
|
9208 |
-
"version": "v5",
|
9209 |
-
"lastModified": "2014-01-07",
|
9210 |
-
"files": {
|
9211 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/quattrocento/v5/WZDISdyil4HsmirlOdBRFC3USBnSvpkopQaUR-2r7iU.ttf",
|
9212 |
-
"700": "http://themes.googleusercontent.com/static/fonts/quattrocento/v5/Uvi-cRwyvqFpl9j3oT2mqkD2ttfZwueP-QU272T9-k4.ttf"
|
9213 |
-
}
|
9214 |
-
},
|
9215 |
-
{
|
9216 |
-
"kind": "webfonts#webfont",
|
9217 |
-
"family": "Quattrocento Sans",
|
9218 |
-
"category": "sans-serif",
|
9219 |
-
"variants": [
|
9220 |
-
"regular",
|
9221 |
-
"italic",
|
9222 |
-
"700",
|
9223 |
-
"700italic"
|
9224 |
-
],
|
9225 |
-
"subsets": [
|
9226 |
-
"latin",
|
9227 |
-
"latin-ext"
|
9228 |
-
],
|
9229 |
-
"version": "v6",
|
9230 |
-
"lastModified": "2014-01-07",
|
9231 |
-
"files": {
|
9232 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/quattrocentosans/v6/efd6FGWWGX5Z3ztwLBrG9eAj_ty82iuwwDTNEYXGiyQ.ttf",
|
9233 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/quattrocentosans/v6/8PXYbvM__bjl0rBnKiByg532VBCoA_HLsn85tSWZmdo.ttf",
|
9234 |
-
"700": "http://themes.googleusercontent.com/static/fonts/quattrocentosans/v6/tXSgPxDl7Lk8Zr_5qX8FIbqxG25nQNOioCZSK4sU-CA.ttf",
|
9235 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/quattrocentosans/v6/8N1PdXpbG6RtFvTjl-5E7buqAJxizi8Dk_SK5et7kMg.ttf"
|
9236 |
-
}
|
9237 |
-
},
|
9238 |
-
{
|
9239 |
-
"kind": "webfonts#webfont",
|
9240 |
-
"family": "Questrial",
|
9241 |
-
"category": "sans-serif",
|
9242 |
-
"variants": [
|
9243 |
-
"regular"
|
9244 |
-
],
|
9245 |
-
"subsets": [
|
9246 |
-
"latin"
|
9247 |
-
],
|
9248 |
-
"version": "v4",
|
9249 |
-
"lastModified": "2014-01-07",
|
9250 |
-
"files": {
|
9251 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/questrial/v4/MoHHaw_WwNs_hd9ob1zTVw.ttf"
|
9252 |
-
}
|
9253 |
-
},
|
9254 |
-
{
|
9255 |
-
"kind": "webfonts#webfont",
|
9256 |
-
"family": "Quicksand",
|
9257 |
-
"category": "sans-serif",
|
9258 |
-
"variants": [
|
9259 |
-
"300",
|
9260 |
-
"regular",
|
9261 |
-
"700"
|
9262 |
-
],
|
9263 |
-
"subsets": [
|
9264 |
-
"latin"
|
9265 |
-
],
|
9266 |
-
"version": "v3",
|
9267 |
-
"lastModified": "2014-01-07",
|
9268 |
-
"files": {
|
9269 |
-
"300": "http://themes.googleusercontent.com/static/fonts/quicksand/v3/qhfoJiLu10kFjChCCTvGlC3USBnSvpkopQaUR-2r7iU.ttf",
|
9270 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/quicksand/v3/Ngv3fIJjKB7sD-bTUGIFCA.ttf",
|
9271 |
-
"700": "http://themes.googleusercontent.com/static/fonts/quicksand/v3/32nyIRHyCu6iqEka_hbKsi3USBnSvpkopQaUR-2r7iU.ttf"
|
9272 |
-
}
|
9273 |
-
},
|
9274 |
-
{
|
9275 |
-
"kind": "webfonts#webfont",
|
9276 |
-
"family": "Quintessential",
|
9277 |
-
"category": "handwriting",
|
9278 |
-
"variants": [
|
9279 |
-
"regular"
|
9280 |
-
],
|
9281 |
-
"subsets": [
|
9282 |
-
"latin",
|
9283 |
-
"latin-ext"
|
9284 |
-
],
|
9285 |
-
"version": "v2",
|
9286 |
-
"lastModified": "2014-01-07",
|
9287 |
-
"files": {
|
9288 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/quintessential/v2/mmk6ioesnTrEky_Zb92E5s02lXbtMOtZWfuxKeMZO8Q.ttf"
|
9289 |
-
}
|
9290 |
-
},
|
9291 |
-
{
|
9292 |
-
"kind": "webfonts#webfont",
|
9293 |
-
"family": "Qwigley",
|
9294 |
-
"category": "handwriting",
|
9295 |
-
"variants": [
|
9296 |
-
"regular"
|
9297 |
-
],
|
9298 |
-
"subsets": [
|
9299 |
-
"latin",
|
9300 |
-
"latin-ext"
|
9301 |
-
],
|
9302 |
-
"version": "v4",
|
9303 |
-
"lastModified": "2014-01-07",
|
9304 |
-
"files": {
|
9305 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/qwigley/v4/aDqxws-KubFID85TZHFouw.ttf"
|
9306 |
-
}
|
9307 |
-
},
|
9308 |
-
{
|
9309 |
-
"kind": "webfonts#webfont",
|
9310 |
-
"family": "Racing Sans One",
|
9311 |
-
"category": "display",
|
9312 |
-
"variants": [
|
9313 |
-
"regular"
|
9314 |
-
],
|
9315 |
-
"subsets": [
|
9316 |
-
"latin",
|
9317 |
-
"latin-ext"
|
9318 |
-
],
|
9319 |
-
"version": "v2",
|
9320 |
-
"lastModified": "2014-01-07",
|
9321 |
-
"files": {
|
9322 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/racingsansone/v2/1r3DpWaCiT7y3PD4KgkNyDjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
9323 |
-
}
|
9324 |
-
},
|
9325 |
-
{
|
9326 |
-
"kind": "webfonts#webfont",
|
9327 |
-
"family": "Radley",
|
9328 |
-
"category": "serif",
|
9329 |
-
"variants": [
|
9330 |
-
"regular",
|
9331 |
-
"italic"
|
9332 |
-
],
|
9333 |
-
"subsets": [
|
9334 |
-
"latin",
|
9335 |
-
"latin-ext"
|
9336 |
-
],
|
9337 |
-
"version": "v7",
|
9338 |
-
"lastModified": "2014-01-07",
|
9339 |
-
"files": {
|
9340 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/radley/v7/FgE9di09a-mXGzAIyI6Q9Q.ttf",
|
9341 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/radley/v7/Z_JcACuPAOO2f9kzQcGRug.ttf"
|
9342 |
-
}
|
9343 |
-
},
|
9344 |
-
{
|
9345 |
-
"kind": "webfonts#webfont",
|
9346 |
-
"family": "Raleway",
|
9347 |
-
"category": "sans-serif",
|
9348 |
-
"variants": [
|
9349 |
-
"100",
|
9350 |
-
"200",
|
9351 |
-
"300",
|
9352 |
-
"regular",
|
9353 |
-
"500",
|
9354 |
-
"600",
|
9355 |
-
"700",
|
9356 |
-
"800",
|
9357 |
-
"900"
|
9358 |
-
],
|
9359 |
-
"subsets": [
|
9360 |
-
"latin"
|
9361 |
-
],
|
9362 |
-
"version": "v7",
|
9363 |
-
"lastModified": "2014-01-07",
|
9364 |
-
"files": {
|
9365 |
-
"100": "http://themes.googleusercontent.com/static/fonts/raleway/v7/UDfD6oxBaBnmFJwQ7XAFNw.ttf",
|
9366 |
-
"200": "http://themes.googleusercontent.com/static/fonts/raleway/v7/LAQwev4hdCtYkOYX4Oc7nPesZW2xOQ-xsNqO47m55DA.ttf",
|
9367 |
-
"300": "http://themes.googleusercontent.com/static/fonts/raleway/v7/2VvSZU2kb4DZwFfRM4fLQPesZW2xOQ-xsNqO47m55DA.ttf",
|
9368 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/raleway/v7/_dCzxpXzIS3sL-gdJWAP8A.ttf",
|
9369 |
-
"500": "http://themes.googleusercontent.com/static/fonts/raleway/v7/348gn6PEmbLDWlHbbV15d_esZW2xOQ-xsNqO47m55DA.ttf",
|
9370 |
-
"600": "http://themes.googleusercontent.com/static/fonts/raleway/v7/M7no6oPkwKYJkedjB1wqEvesZW2xOQ-xsNqO47m55DA.ttf",
|
9371 |
-
"700": "http://themes.googleusercontent.com/static/fonts/raleway/v7/VGEV9-DrblisWOWLbK-1XPesZW2xOQ-xsNqO47m55DA.ttf",
|
9372 |
-
"800": "http://themes.googleusercontent.com/static/fonts/raleway/v7/mMh0JrsYMXcLO69jgJwpUvesZW2xOQ-xsNqO47m55DA.ttf",
|
9373 |
-
"900": "http://themes.googleusercontent.com/static/fonts/raleway/v7/ajQQGcDBLcyLpaUfD76UuPesZW2xOQ-xsNqO47m55DA.ttf"
|
9374 |
-
}
|
9375 |
-
},
|
9376 |
-
{
|
9377 |
-
"kind": "webfonts#webfont",
|
9378 |
-
"family": "Raleway Dots",
|
9379 |
-
"category": "display",
|
9380 |
-
"variants": [
|
9381 |
-
"regular"
|
9382 |
-
],
|
9383 |
-
"subsets": [
|
9384 |
-
"latin",
|
9385 |
-
"latin-ext"
|
9386 |
-
],
|
9387 |
-
"version": "v2",
|
9388 |
-
"lastModified": "2014-01-07",
|
9389 |
-
"files": {
|
9390 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ralewaydots/v2/lhLgmWCRcyz-QXo8LCzTfC3USBnSvpkopQaUR-2r7iU.ttf"
|
9391 |
-
}
|
9392 |
-
},
|
9393 |
-
{
|
9394 |
-
"kind": "webfonts#webfont",
|
9395 |
-
"family": "Rambla",
|
9396 |
-
"category": "sans-serif",
|
9397 |
-
"variants": [
|
9398 |
-
"regular",
|
9399 |
-
"italic",
|
9400 |
-
"700",
|
9401 |
-
"700italic"
|
9402 |
-
],
|
9403 |
-
"subsets": [
|
9404 |
-
"latin",
|
9405 |
-
"latin-ext"
|
9406 |
-
],
|
9407 |
-
"version": "v2",
|
9408 |
-
"lastModified": "2014-01-07",
|
9409 |
-
"files": {
|
9410 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rambla/v2/YaTmpvm5gFg_ShJKTQmdzg.ttf",
|
9411 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/rambla/v2/mhUgsKmp0qw3uATdDDAuwA.ttf",
|
9412 |
-
"700": "http://themes.googleusercontent.com/static/fonts/rambla/v2/C5VZH8BxQKmnBuoC00UPpw.ttf",
|
9413 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/rambla/v2/ziMzUZya6QahrKONSI1TzqCWcynf_cDxXwCLxiixG1c.ttf"
|
9414 |
-
}
|
9415 |
-
},
|
9416 |
-
{
|
9417 |
-
"kind": "webfonts#webfont",
|
9418 |
-
"family": "Rammetto One",
|
9419 |
-
"category": "display",
|
9420 |
-
"variants": [
|
9421 |
-
"regular"
|
9422 |
-
],
|
9423 |
-
"subsets": [
|
9424 |
-
"latin",
|
9425 |
-
"latin-ext"
|
9426 |
-
],
|
9427 |
-
"version": "v3",
|
9428 |
-
"lastModified": "2014-01-07",
|
9429 |
-
"files": {
|
9430 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rammettoone/v3/mh0uQ1tV8QgSx9v_KyEYPC3USBnSvpkopQaUR-2r7iU.ttf"
|
9431 |
-
}
|
9432 |
-
},
|
9433 |
-
{
|
9434 |
-
"kind": "webfonts#webfont",
|
9435 |
-
"family": "Ranchers",
|
9436 |
-
"category": "display",
|
9437 |
-
"variants": [
|
9438 |
-
"regular"
|
9439 |
-
],
|
9440 |
-
"subsets": [
|
9441 |
-
"latin",
|
9442 |
-
"latin-ext"
|
9443 |
-
],
|
9444 |
-
"version": "v2",
|
9445 |
-
"lastModified": "2014-01-07",
|
9446 |
-
"files": {
|
9447 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ranchers/v2/9ya8CZYhqT66VERfjQ7eLA.ttf"
|
9448 |
-
}
|
9449 |
-
},
|
9450 |
-
{
|
9451 |
-
"kind": "webfonts#webfont",
|
9452 |
-
"family": "Rancho",
|
9453 |
-
"category": "handwriting",
|
9454 |
-
"variants": [
|
9455 |
-
"regular"
|
9456 |
-
],
|
9457 |
-
"subsets": [
|
9458 |
-
"latin"
|
9459 |
-
],
|
9460 |
-
"version": "v4",
|
9461 |
-
"lastModified": "2014-01-07",
|
9462 |
-
"files": {
|
9463 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rancho/v4/ekp3-4QykC4--6KaslRgHA.ttf"
|
9464 |
-
}
|
9465 |
-
},
|
9466 |
-
{
|
9467 |
-
"kind": "webfonts#webfont",
|
9468 |
-
"family": "Rationale",
|
9469 |
-
"category": "sans-serif",
|
9470 |
-
"variants": [
|
9471 |
-
"regular"
|
9472 |
-
],
|
9473 |
-
"subsets": [
|
9474 |
-
"latin"
|
9475 |
-
],
|
9476 |
-
"version": "v5",
|
9477 |
-
"lastModified": "2014-01-07",
|
9478 |
-
"files": {
|
9479 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rationale/v5/7M2eN-di0NGLQse7HzJRfg.ttf"
|
9480 |
-
}
|
9481 |
-
},
|
9482 |
-
{
|
9483 |
-
"kind": "webfonts#webfont",
|
9484 |
-
"family": "Redressed",
|
9485 |
-
"category": "handwriting",
|
9486 |
-
"variants": [
|
9487 |
-
"regular"
|
9488 |
-
],
|
9489 |
-
"subsets": [
|
9490 |
-
"latin"
|
9491 |
-
],
|
9492 |
-
"version": "v4",
|
9493 |
-
"lastModified": "2014-01-07",
|
9494 |
-
"files": {
|
9495 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/redressed/v4/3aZ5sTBppH3oSm5SabegtA.ttf"
|
9496 |
-
}
|
9497 |
-
},
|
9498 |
-
{
|
9499 |
-
"kind": "webfonts#webfont",
|
9500 |
-
"family": "Reenie Beanie",
|
9501 |
-
"category": "handwriting",
|
9502 |
-
"variants": [
|
9503 |
-
"regular"
|
9504 |
-
],
|
9505 |
-
"subsets": [
|
9506 |
-
"latin"
|
9507 |
-
],
|
9508 |
-
"version": "v4",
|
9509 |
-
"lastModified": "2014-01-07",
|
9510 |
-
"files": {
|
9511 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/reeniebeanie/v4/ljpKc6CdXusL1cnGUSamX4jjx0o0jr6fNXxPgYh_a8Q.ttf"
|
9512 |
-
}
|
9513 |
-
},
|
9514 |
-
{
|
9515 |
-
"kind": "webfonts#webfont",
|
9516 |
-
"family": "Revalia",
|
9517 |
-
"category": "display",
|
9518 |
-
"variants": [
|
9519 |
-
"regular"
|
9520 |
-
],
|
9521 |
-
"subsets": [
|
9522 |
-
"latin",
|
9523 |
-
"latin-ext"
|
9524 |
-
],
|
9525 |
-
"version": "v2",
|
9526 |
-
"lastModified": "2014-01-07",
|
9527 |
-
"files": {
|
9528 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/revalia/v2/1TKw66fF5_poiL0Ktgo4_A.ttf"
|
9529 |
-
}
|
9530 |
-
},
|
9531 |
-
{
|
9532 |
-
"kind": "webfonts#webfont",
|
9533 |
-
"family": "Ribeye",
|
9534 |
-
"category": "display",
|
9535 |
-
"variants": [
|
9536 |
-
"regular"
|
9537 |
-
],
|
9538 |
-
"subsets": [
|
9539 |
-
"latin",
|
9540 |
-
"latin-ext"
|
9541 |
-
],
|
9542 |
-
"version": "v3",
|
9543 |
-
"lastModified": "2014-01-07",
|
9544 |
-
"files": {
|
9545 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ribeye/v3/e5w3VE8HnWBln4Ll6lUj3Q.ttf"
|
9546 |
-
}
|
9547 |
-
},
|
9548 |
-
{
|
9549 |
-
"kind": "webfonts#webfont",
|
9550 |
-
"family": "Ribeye Marrow",
|
9551 |
-
"category": "display",
|
9552 |
-
"variants": [
|
9553 |
-
"regular"
|
9554 |
-
],
|
9555 |
-
"subsets": [
|
9556 |
-
"latin",
|
9557 |
-
"latin-ext"
|
9558 |
-
],
|
9559 |
-
"version": "v4",
|
9560 |
-
"lastModified": "2014-01-07",
|
9561 |
-
"files": {
|
9562 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ribeyemarrow/v4/q7cBSA-4ErAXBCDFPrhlY0cTNmV93fYG7UKgsLQNQWs.ttf"
|
9563 |
-
}
|
9564 |
-
},
|
9565 |
-
{
|
9566 |
-
"kind": "webfonts#webfont",
|
9567 |
-
"family": "Righteous",
|
9568 |
-
"category": "display",
|
9569 |
-
"variants": [
|
9570 |
-
"regular"
|
9571 |
-
],
|
9572 |
-
"subsets": [
|
9573 |
-
"latin",
|
9574 |
-
"latin-ext"
|
9575 |
-
],
|
9576 |
-
"version": "v3",
|
9577 |
-
"lastModified": "2014-01-07",
|
9578 |
-
"files": {
|
9579 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/righteous/v3/0nRRWM_gCGCt2S-BCfN8WQ.ttf"
|
9580 |
-
}
|
9581 |
-
},
|
9582 |
-
{
|
9583 |
-
"kind": "webfonts#webfont",
|
9584 |
-
"family": "Risque",
|
9585 |
-
"category": "display",
|
9586 |
-
"variants": [
|
9587 |
-
"regular"
|
9588 |
-
],
|
9589 |
-
"subsets": [
|
9590 |
-
"latin",
|
9591 |
-
"latin-ext"
|
9592 |
-
],
|
9593 |
-
"version": "v2",
|
9594 |
-
"lastModified": "2014-01-07",
|
9595 |
-
"files": {
|
9596 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/risque/v2/92RnElGnl8yHP97-KV3Fyg.ttf"
|
9597 |
-
}
|
9598 |
-
},
|
9599 |
-
{
|
9600 |
-
"kind": "webfonts#webfont",
|
9601 |
-
"family": "Roboto",
|
9602 |
-
"category": "sans-serif",
|
9603 |
-
"variants": [
|
9604 |
-
"100",
|
9605 |
-
"100italic",
|
9606 |
-
"300",
|
9607 |
-
"300italic",
|
9608 |
-
"regular",
|
9609 |
-
"italic",
|
9610 |
-
"500",
|
9611 |
-
"500italic",
|
9612 |
-
"700",
|
9613 |
-
"700italic",
|
9614 |
-
"900",
|
9615 |
-
"900italic"
|
9616 |
-
],
|
9617 |
-
"subsets": [
|
9618 |
-
"latin",
|
9619 |
-
"greek",
|
9620 |
-
"cyrillic",
|
9621 |
-
"vietnamese",
|
9622 |
-
"cyrillic-ext",
|
9623 |
-
"latin-ext",
|
9624 |
-
"greek-ext"
|
9625 |
-
],
|
9626 |
-
"version": "v10",
|
9627 |
-
"lastModified": "2014-01-07",
|
9628 |
-
"files": {
|
9629 |
-
"100": "http://themes.googleusercontent.com/static/fonts/roboto/v10/7MygqTe2zs9YkP0adA9QQQ.ttf",
|
9630 |
-
"100italic": "http://themes.googleusercontent.com/static/fonts/roboto/v10/T1xnudodhcgwXCmZQ490TPesZW2xOQ-xsNqO47m55DA.ttf",
|
9631 |
-
"300": "http://themes.googleusercontent.com/static/fonts/roboto/v10/dtpHsbgPEm2lVWciJZ0P-A.ttf",
|
9632 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/roboto/v10/iE8HhaRzdhPxC93dOdA056CWcynf_cDxXwCLxiixG1c.ttf",
|
9633 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/roboto/v10/W5F8_SL0XFawnjxHGsZjJA.ttf",
|
9634 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/roboto/v10/hcKoSgxdnKlbH5dlTwKbow.ttf",
|
9635 |
-
"500": "http://themes.googleusercontent.com/static/fonts/roboto/v10/Uxzkqj-MIMWle-XP2pDNAA.ttf",
|
9636 |
-
"500italic": "http://themes.googleusercontent.com/static/fonts/roboto/v10/daIfzbEw-lbjMyv4rMUUTqCWcynf_cDxXwCLxiixG1c.ttf",
|
9637 |
-
"700": "http://themes.googleusercontent.com/static/fonts/roboto/v10/bdHGHleUa-ndQCOrdpfxfw.ttf",
|
9638 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/roboto/v10/owYYXKukxFDFjr0ZO8NXh6CWcynf_cDxXwCLxiixG1c.ttf",
|
9639 |
-
"900": "http://themes.googleusercontent.com/static/fonts/roboto/v10/H1vB34nOKWXqzKotq25pcg.ttf",
|
9640 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/roboto/v10/b9PWBSMHrT2zM5FgUdtu0aCWcynf_cDxXwCLxiixG1c.ttf"
|
9641 |
-
}
|
9642 |
-
},
|
9643 |
-
{
|
9644 |
-
"kind": "webfonts#webfont",
|
9645 |
-
"family": "Roboto Condensed",
|
9646 |
-
"category": "sans-serif",
|
9647 |
-
"variants": [
|
9648 |
-
"300",
|
9649 |
-
"300italic",
|
9650 |
-
"regular",
|
9651 |
-
"italic",
|
9652 |
-
"700",
|
9653 |
-
"700italic"
|
9654 |
-
],
|
9655 |
-
"subsets": [
|
9656 |
-
"latin",
|
9657 |
-
"greek",
|
9658 |
-
"cyrillic",
|
9659 |
-
"vietnamese",
|
9660 |
-
"cyrillic-ext",
|
9661 |
-
"latin-ext",
|
9662 |
-
"greek-ext"
|
9663 |
-
],
|
9664 |
-
"version": "v9",
|
9665 |
-
"lastModified": "2014-01-07",
|
9666 |
-
"files": {
|
9667 |
-
"300": "http://themes.googleusercontent.com/static/fonts/robotocondensed/v9/b9QBgL0iMZfDSpmcXcE8nJRhFVcex_hajThhFkHyhYk.ttf",
|
9668 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/robotocondensed/v9/mg0cGfGRUERshzBlvqxeAPYa9bgCHecWXGgisnodcS0.ttf",
|
9669 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/robotocondensed/v9/Zd2E9abXLFGSr9G3YK2MsKDbm6fPDOZJsR8PmdG62gY.ttf",
|
9670 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/robotocondensed/v9/BP5K8ZAJv9qEbmuFp8RpJY_eiqgTfYGaH0bJiUDZ5GA.ttf",
|
9671 |
-
"700": "http://themes.googleusercontent.com/static/fonts/robotocondensed/v9/b9QBgL0iMZfDSpmcXcE8nPOYkGiSOYDq_T7HbIOV1hA.ttf",
|
9672 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/robotocondensed/v9/mg0cGfGRUERshzBlvqxeAE2zk2RGRC3SlyyLLQfjS_8.ttf"
|
9673 |
-
}
|
9674 |
-
},
|
9675 |
-
{
|
9676 |
-
"kind": "webfonts#webfont",
|
9677 |
-
"family": "Roboto Slab",
|
9678 |
-
"category": "serif",
|
9679 |
-
"variants": [
|
9680 |
-
"100",
|
9681 |
-
"300",
|
9682 |
-
"regular",
|
9683 |
-
"700"
|
9684 |
-
],
|
9685 |
-
"subsets": [
|
9686 |
-
"latin",
|
9687 |
-
"greek",
|
9688 |
-
"cyrillic",
|
9689 |
-
"vietnamese",
|
9690 |
-
"cyrillic-ext",
|
9691 |
-
"latin-ext",
|
9692 |
-
"greek-ext"
|
9693 |
-
],
|
9694 |
-
"version": "v3",
|
9695 |
-
"lastModified": "2014-01-07",
|
9696 |
-
"files": {
|
9697 |
-
"100": "http://themes.googleusercontent.com/static/fonts/robotoslab/v3/MEz38VLIFL-t46JUtkIEgIAWxXGWZ3yJw6KhWS7MxOk.ttf",
|
9698 |
-
"300": "http://themes.googleusercontent.com/static/fonts/robotoslab/v3/dazS1PrQQuCxC3iOAJFEJS9-WlPSxbfiI49GsXo3q0g.ttf",
|
9699 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/robotoslab/v3/3__ulTNA7unv0UtplybPiqCWcynf_cDxXwCLxiixG1c.ttf",
|
9700 |
-
"700": "http://themes.googleusercontent.com/static/fonts/robotoslab/v3/dazS1PrQQuCxC3iOAJFEJXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
9701 |
-
}
|
9702 |
-
},
|
9703 |
-
{
|
9704 |
-
"kind": "webfonts#webfont",
|
9705 |
-
"family": "Rochester",
|
9706 |
-
"category": "handwriting",
|
9707 |
-
"variants": [
|
9708 |
-
"regular"
|
9709 |
-
],
|
9710 |
-
"subsets": [
|
9711 |
-
"latin"
|
9712 |
-
],
|
9713 |
-
"version": "v4",
|
9714 |
-
"lastModified": "2014-01-07",
|
9715 |
-
"files": {
|
9716 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rochester/v4/bnj8tmQBiOkdji_G_yvypg.ttf"
|
9717 |
-
}
|
9718 |
-
},
|
9719 |
-
{
|
9720 |
-
"kind": "webfonts#webfont",
|
9721 |
-
"family": "Rock Salt",
|
9722 |
-
"category": "handwriting",
|
9723 |
-
"variants": [
|
9724 |
-
"regular"
|
9725 |
-
],
|
9726 |
-
"subsets": [
|
9727 |
-
"latin"
|
9728 |
-
],
|
9729 |
-
"version": "v4",
|
9730 |
-
"lastModified": "2014-01-07",
|
9731 |
-
"files": {
|
9732 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rocksalt/v4/Zy7JF9h9WbhD9V3SFMQ1UQ.ttf"
|
9733 |
-
}
|
9734 |
-
},
|
9735 |
-
{
|
9736 |
-
"kind": "webfonts#webfont",
|
9737 |
-
"family": "Rokkitt",
|
9738 |
-
"category": "serif",
|
9739 |
-
"variants": [
|
9740 |
-
"regular",
|
9741 |
-
"700"
|
9742 |
-
],
|
9743 |
-
"subsets": [
|
9744 |
-
"latin"
|
9745 |
-
],
|
9746 |
-
"version": "v6",
|
9747 |
-
"lastModified": "2014-01-07",
|
9748 |
-
"files": {
|
9749 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rokkitt/v6/GMA7Z_ToF8uSvpZAgnp_VQ.ttf",
|
9750 |
-
"700": "http://themes.googleusercontent.com/static/fonts/rokkitt/v6/gxlo-sr3rPmvgSixYog_ofesZW2xOQ-xsNqO47m55DA.ttf"
|
9751 |
-
}
|
9752 |
-
},
|
9753 |
-
{
|
9754 |
-
"kind": "webfonts#webfont",
|
9755 |
-
"family": "Romanesco",
|
9756 |
-
"category": "handwriting",
|
9757 |
-
"variants": [
|
9758 |
-
"regular"
|
9759 |
-
],
|
9760 |
-
"subsets": [
|
9761 |
-
"latin",
|
9762 |
-
"latin-ext"
|
9763 |
-
],
|
9764 |
-
"version": "v3",
|
9765 |
-
"lastModified": "2014-01-07",
|
9766 |
-
"files": {
|
9767 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/romanesco/v3/2udIjUrpK_CPzYSxRVzD4Q.ttf"
|
9768 |
-
}
|
9769 |
-
},
|
9770 |
-
{
|
9771 |
-
"kind": "webfonts#webfont",
|
9772 |
-
"family": "Ropa Sans",
|
9773 |
-
"category": "sans-serif",
|
9774 |
-
"variants": [
|
9775 |
-
"regular",
|
9776 |
-
"italic"
|
9777 |
-
],
|
9778 |
-
"subsets": [
|
9779 |
-
"latin",
|
9780 |
-
"latin-ext"
|
9781 |
-
],
|
9782 |
-
"version": "v3",
|
9783 |
-
"lastModified": "2014-01-07",
|
9784 |
-
"files": {
|
9785 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ropasans/v3/Gba7ZzVBuhg6nX_AoSwlkQ.ttf",
|
9786 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/ropasans/v3/V1zbhZQscNrh63dy5Jk2nqCWcynf_cDxXwCLxiixG1c.ttf"
|
9787 |
-
}
|
9788 |
-
},
|
9789 |
-
{
|
9790 |
-
"kind": "webfonts#webfont",
|
9791 |
-
"family": "Rosario",
|
9792 |
-
"category": "sans-serif",
|
9793 |
-
"variants": [
|
9794 |
-
"regular",
|
9795 |
-
"italic",
|
9796 |
-
"700",
|
9797 |
-
"700italic"
|
9798 |
-
],
|
9799 |
-
"subsets": [
|
9800 |
-
"latin"
|
9801 |
-
],
|
9802 |
-
"version": "v8",
|
9803 |
-
"lastModified": "2014-01-07",
|
9804 |
-
"files": {
|
9805 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rosario/v8/bL-cEh8dXtDupB2WccA2LA.ttf",
|
9806 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/rosario/v8/pkflNy18HEuVVx4EOjeb_Q.ttf",
|
9807 |
-
"700": "http://themes.googleusercontent.com/static/fonts/rosario/v8/nrS6PJvDWN42RP4TFWccd_esZW2xOQ-xsNqO47m55DA.ttf",
|
9808 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/rosario/v8/EOgFX2Va5VGrkhn_eDpIRS3USBnSvpkopQaUR-2r7iU.ttf"
|
9809 |
-
}
|
9810 |
-
},
|
9811 |
-
{
|
9812 |
-
"kind": "webfonts#webfont",
|
9813 |
-
"family": "Rosarivo",
|
9814 |
-
"category": "serif",
|
9815 |
-
"variants": [
|
9816 |
-
"regular",
|
9817 |
-
"italic"
|
9818 |
-
],
|
9819 |
-
"subsets": [
|
9820 |
-
"latin",
|
9821 |
-
"latin-ext"
|
9822 |
-
],
|
9823 |
-
"version": "v2",
|
9824 |
-
"lastModified": "2014-01-07",
|
9825 |
-
"files": {
|
9826 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rosarivo/v2/EmPiINK0qyqc7KSsNjJamA.ttf",
|
9827 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/rosarivo/v2/u3VuWsWQlX1pDqsbz4paNPesZW2xOQ-xsNqO47m55DA.ttf"
|
9828 |
-
}
|
9829 |
-
},
|
9830 |
-
{
|
9831 |
-
"kind": "webfonts#webfont",
|
9832 |
-
"family": "Rouge Script",
|
9833 |
-
"category": "handwriting",
|
9834 |
-
"variants": [
|
9835 |
-
"regular"
|
9836 |
-
],
|
9837 |
-
"subsets": [
|
9838 |
-
"latin"
|
9839 |
-
],
|
9840 |
-
"version": "v3",
|
9841 |
-
"lastModified": "2014-01-07",
|
9842 |
-
"files": {
|
9843 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rougescript/v3/AgXDSqZJmy12qS0ixjs6Vy3USBnSvpkopQaUR-2r7iU.ttf"
|
9844 |
-
}
|
9845 |
-
},
|
9846 |
-
{
|
9847 |
-
"kind": "webfonts#webfont",
|
9848 |
-
"family": "Ruda",
|
9849 |
-
"category": "sans-serif",
|
9850 |
-
"variants": [
|
9851 |
-
"regular",
|
9852 |
-
"700",
|
9853 |
-
"900"
|
9854 |
-
],
|
9855 |
-
"subsets": [
|
9856 |
-
"latin",
|
9857 |
-
"latin-ext"
|
9858 |
-
],
|
9859 |
-
"version": "v5",
|
9860 |
-
"lastModified": "2014-01-07",
|
9861 |
-
"files": {
|
9862 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ruda/v5/jPEIPB7DM2DNK_uBGv2HGw.ttf",
|
9863 |
-
"700": "http://themes.googleusercontent.com/static/fonts/ruda/v5/JABOu1SYOHcGXVejUq4w6g.ttf",
|
9864 |
-
"900": "http://themes.googleusercontent.com/static/fonts/ruda/v5/Uzusv-enCjoIrznlJJaBRw.ttf"
|
9865 |
-
}
|
9866 |
-
},
|
9867 |
-
{
|
9868 |
-
"kind": "webfonts#webfont",
|
9869 |
-
"family": "Rufina",
|
9870 |
-
"category": "serif",
|
9871 |
-
"variants": [
|
9872 |
-
"regular",
|
9873 |
-
"700"
|
9874 |
-
],
|
9875 |
-
"subsets": [
|
9876 |
-
"latin",
|
9877 |
-
"latin-ext"
|
9878 |
-
],
|
9879 |
-
"version": "v2",
|
9880 |
-
"lastModified": "2014-01-07",
|
9881 |
-
"files": {
|
9882 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rufina/v2/s9IFr_fIemiohfZS-ZRDbQ.ttf",
|
9883 |
-
"700": "http://themes.googleusercontent.com/static/fonts/rufina/v2/D0RUjXFr55y4MVZY2Ww_RA.ttf"
|
9884 |
-
}
|
9885 |
-
},
|
9886 |
-
{
|
9887 |
-
"kind": "webfonts#webfont",
|
9888 |
-
"family": "Ruge Boogie",
|
9889 |
-
"category": "handwriting",
|
9890 |
-
"variants": [
|
9891 |
-
"regular"
|
9892 |
-
],
|
9893 |
-
"subsets": [
|
9894 |
-
"latin",
|
9895 |
-
"latin-ext"
|
9896 |
-
],
|
9897 |
-
"version": "v5",
|
9898 |
-
"lastModified": "2014-01-07",
|
9899 |
-
"files": {
|
9900 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rugeboogie/v5/U-TTmltL8aENLVIqYbI5QaCWcynf_cDxXwCLxiixG1c.ttf"
|
9901 |
-
}
|
9902 |
-
},
|
9903 |
-
{
|
9904 |
-
"kind": "webfonts#webfont",
|
9905 |
-
"family": "Ruluko",
|
9906 |
-
"category": "sans-serif",
|
9907 |
-
"variants": [
|
9908 |
-
"regular"
|
9909 |
-
],
|
9910 |
-
"subsets": [
|
9911 |
-
"latin",
|
9912 |
-
"latin-ext"
|
9913 |
-
],
|
9914 |
-
"version": "v2",
|
9915 |
-
"lastModified": "2014-01-07",
|
9916 |
-
"files": {
|
9917 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ruluko/v2/lv4cMwJtrx_dzmlK5SDc1g.ttf"
|
9918 |
-
}
|
9919 |
-
},
|
9920 |
-
{
|
9921 |
-
"kind": "webfonts#webfont",
|
9922 |
-
"family": "Rum Raisin",
|
9923 |
-
"category": "sans-serif",
|
9924 |
-
"variants": [
|
9925 |
-
"regular"
|
9926 |
-
],
|
9927 |
-
"subsets": [
|
9928 |
-
"latin",
|
9929 |
-
"latin-ext"
|
9930 |
-
],
|
9931 |
-
"version": "v2",
|
9932 |
-
"lastModified": "2014-01-07",
|
9933 |
-
"files": {
|
9934 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rumraisin/v2/kDiL-ntDOEq26B7kYM7cx_esZW2xOQ-xsNqO47m55DA.ttf"
|
9935 |
-
}
|
9936 |
-
},
|
9937 |
-
{
|
9938 |
-
"kind": "webfonts#webfont",
|
9939 |
-
"family": "Ruslan Display",
|
9940 |
-
"category": "display",
|
9941 |
-
"variants": [
|
9942 |
-
"regular"
|
9943 |
-
],
|
9944 |
-
"subsets": [
|
9945 |
-
"latin",
|
9946 |
-
"cyrillic",
|
9947 |
-
"cyrillic-ext",
|
9948 |
-
"latin-ext"
|
9949 |
-
],
|
9950 |
-
"version": "v5",
|
9951 |
-
"lastModified": "2014-01-07",
|
9952 |
-
"files": {
|
9953 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ruslandisplay/v5/SREdhlyLNUfU1VssRBfs3rgH88D3l9N4auRNHrNS708.ttf"
|
9954 |
-
}
|
9955 |
-
},
|
9956 |
-
{
|
9957 |
-
"kind": "webfonts#webfont",
|
9958 |
-
"family": "Russo One",
|
9959 |
-
"category": "sans-serif",
|
9960 |
-
"variants": [
|
9961 |
-
"regular"
|
9962 |
-
],
|
9963 |
-
"subsets": [
|
9964 |
-
"latin",
|
9965 |
-
"cyrillic",
|
9966 |
-
"latin-ext"
|
9967 |
-
],
|
9968 |
-
"version": "v2",
|
9969 |
-
"lastModified": "2014-01-07",
|
9970 |
-
"files": {
|
9971 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/russoone/v2/zfwxZ--UhUc7FVfgT21PRQ.ttf"
|
9972 |
-
}
|
9973 |
-
},
|
9974 |
-
{
|
9975 |
-
"kind": "webfonts#webfont",
|
9976 |
-
"family": "Ruthie",
|
9977 |
-
"category": "handwriting",
|
9978 |
-
"variants": [
|
9979 |
-
"regular"
|
9980 |
-
],
|
9981 |
-
"subsets": [
|
9982 |
-
"latin",
|
9983 |
-
"latin-ext"
|
9984 |
-
],
|
9985 |
-
"version": "v4",
|
9986 |
-
"lastModified": "2014-01-07",
|
9987 |
-
"files": {
|
9988 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ruthie/v4/vJ2LorukHSbWYoEs5juivg.ttf"
|
9989 |
-
}
|
9990 |
-
},
|
9991 |
-
{
|
9992 |
-
"kind": "webfonts#webfont",
|
9993 |
-
"family": "Rye",
|
9994 |
-
"category": "display",
|
9995 |
-
"variants": [
|
9996 |
-
"regular"
|
9997 |
-
],
|
9998 |
-
"subsets": [
|
9999 |
-
"latin",
|
10000 |
-
"latin-ext"
|
10001 |
-
],
|
10002 |
-
"version": "v2",
|
10003 |
-
"lastModified": "2014-01-07",
|
10004 |
-
"files": {
|
10005 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/rye/v2/VUrJlpPpSZxspl3w_yNOrQ.ttf"
|
10006 |
-
}
|
10007 |
-
},
|
10008 |
-
{
|
10009 |
-
"kind": "webfonts#webfont",
|
10010 |
-
"family": "Sacramento",
|
10011 |
-
"category": "handwriting",
|
10012 |
-
"variants": [
|
10013 |
-
"regular"
|
10014 |
-
],
|
10015 |
-
"subsets": [
|
10016 |
-
"latin",
|
10017 |
-
"latin-ext"
|
10018 |
-
],
|
10019 |
-
"version": "v2",
|
10020 |
-
"lastModified": "2014-01-07",
|
10021 |
-
"files": {
|
10022 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sacramento/v2/_kv-qycSHMNdhjiv0Kj7BvesZW2xOQ-xsNqO47m55DA.ttf"
|
10023 |
-
}
|
10024 |
-
},
|
10025 |
-
{
|
10026 |
-
"kind": "webfonts#webfont",
|
10027 |
-
"family": "Sail",
|
10028 |
-
"category": "display",
|
10029 |
-
"variants": [
|
10030 |
-
"regular"
|
10031 |
-
],
|
10032 |
-
"subsets": [
|
10033 |
-
"latin"
|
10034 |
-
],
|
10035 |
-
"version": "v4",
|
10036 |
-
"lastModified": "2014-01-07",
|
10037 |
-
"files": {
|
10038 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sail/v4/iuEoG6kt-bePGvtdpL0GUQ.ttf"
|
10039 |
-
}
|
10040 |
-
},
|
10041 |
-
{
|
10042 |
-
"kind": "webfonts#webfont",
|
10043 |
-
"family": "Salsa",
|
10044 |
-
"category": "display",
|
10045 |
-
"variants": [
|
10046 |
-
"regular"
|
10047 |
-
],
|
10048 |
-
"subsets": [
|
10049 |
-
"latin"
|
10050 |
-
],
|
10051 |
-
"version": "v4",
|
10052 |
-
"lastModified": "2014-01-07",
|
10053 |
-
"files": {
|
10054 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/salsa/v4/BnpUCBmYdvggScEPs5JbpA.ttf"
|
10055 |
-
}
|
10056 |
-
},
|
10057 |
-
{
|
10058 |
-
"kind": "webfonts#webfont",
|
10059 |
-
"family": "Sanchez",
|
10060 |
-
"category": "serif",
|
10061 |
-
"variants": [
|
10062 |
-
"regular",
|
10063 |
-
"italic"
|
10064 |
-
],
|
10065 |
-
"subsets": [
|
10066 |
-
"latin",
|
10067 |
-
"latin-ext"
|
10068 |
-
],
|
10069 |
-
"version": "v2",
|
10070 |
-
"lastModified": "2014-01-07",
|
10071 |
-
"files": {
|
10072 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sanchez/v2/BEL8ao-E2LJ5eHPLB2UAiw.ttf",
|
10073 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/sanchez/v2/iSrhkWLexUZzDeNxNEHtzA.ttf"
|
10074 |
-
}
|
10075 |
-
},
|
10076 |
-
{
|
10077 |
-
"kind": "webfonts#webfont",
|
10078 |
-
"family": "Sancreek",
|
10079 |
-
"category": "display",
|
10080 |
-
"variants": [
|
10081 |
-
"regular"
|
10082 |
-
],
|
10083 |
-
"subsets": [
|
10084 |
-
"latin",
|
10085 |
-
"latin-ext"
|
10086 |
-
],
|
10087 |
-
"version": "v5",
|
10088 |
-
"lastModified": "2014-01-07",
|
10089 |
-
"files": {
|
10090 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sancreek/v5/8ZacBMraWMvHly4IJI3esw.ttf"
|
10091 |
-
}
|
10092 |
-
},
|
10093 |
-
{
|
10094 |
-
"kind": "webfonts#webfont",
|
10095 |
-
"family": "Sansita One",
|
10096 |
-
"category": "display",
|
10097 |
-
"variants": [
|
10098 |
-
"regular"
|
10099 |
-
],
|
10100 |
-
"subsets": [
|
10101 |
-
"latin"
|
10102 |
-
],
|
10103 |
-
"version": "v4",
|
10104 |
-
"lastModified": "2014-01-07",
|
10105 |
-
"files": {
|
10106 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sansitaone/v4/xWqf68oB50JXqGIRR0h2hqCWcynf_cDxXwCLxiixG1c.ttf"
|
10107 |
-
}
|
10108 |
-
},
|
10109 |
-
{
|
10110 |
-
"kind": "webfonts#webfont",
|
10111 |
-
"family": "Sarina",
|
10112 |
-
"category": "display",
|
10113 |
-
"variants": [
|
10114 |
-
"regular"
|
10115 |
-
],
|
10116 |
-
"subsets": [
|
10117 |
-
"latin",
|
10118 |
-
"latin-ext"
|
10119 |
-
],
|
10120 |
-
"version": "v3",
|
10121 |
-
"lastModified": "2014-01-07",
|
10122 |
-
"files": {
|
10123 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sarina/v3/XYtRfaSknHIU3NHdfTdXoQ.ttf"
|
10124 |
-
}
|
10125 |
-
},
|
10126 |
-
{
|
10127 |
-
"kind": "webfonts#webfont",
|
10128 |
-
"family": "Satisfy",
|
10129 |
-
"category": "handwriting",
|
10130 |
-
"variants": [
|
10131 |
-
"regular"
|
10132 |
-
],
|
10133 |
-
"subsets": [
|
10134 |
-
"latin"
|
10135 |
-
],
|
10136 |
-
"version": "v4",
|
10137 |
-
"lastModified": "2014-01-07",
|
10138 |
-
"files": {
|
10139 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/satisfy/v4/PRlyepkd-JCGHiN8e9WV2w.ttf"
|
10140 |
-
}
|
10141 |
-
},
|
10142 |
-
{
|
10143 |
-
"kind": "webfonts#webfont",
|
10144 |
-
"family": "Scada",
|
10145 |
-
"category": "sans-serif",
|
10146 |
-
"variants": [
|
10147 |
-
"regular",
|
10148 |
-
"italic",
|
10149 |
-
"700",
|
10150 |
-
"700italic"
|
10151 |
-
],
|
10152 |
-
"subsets": [
|
10153 |
-
"latin",
|
10154 |
-
"cyrillic",
|
10155 |
-
"latin-ext"
|
10156 |
-
],
|
10157 |
-
"version": "v2",
|
10158 |
-
"lastModified": "2014-01-07",
|
10159 |
-
"files": {
|
10160 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/scada/v2/iZNC3ZEYwe3je6H-28d5Ug.ttf",
|
10161 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/scada/v2/PCGyLT1qNawkOUQ3uHFhBw.ttf",
|
10162 |
-
"700": "http://themes.googleusercontent.com/static/fonts/scada/v2/t6XNWdMdVWUz93EuRVmifQ.ttf",
|
10163 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/scada/v2/kLrBIf7V4mDMwcd_Yw7-D_esZW2xOQ-xsNqO47m55DA.ttf"
|
10164 |
-
}
|
10165 |
-
},
|
10166 |
-
{
|
10167 |
-
"kind": "webfonts#webfont",
|
10168 |
-
"family": "Schoolbell",
|
10169 |
-
"category": "handwriting",
|
10170 |
-
"variants": [
|
10171 |
-
"regular"
|
10172 |
-
],
|
10173 |
-
"subsets": [
|
10174 |
-
"latin"
|
10175 |
-
],
|
10176 |
-
"version": "v4",
|
10177 |
-
"lastModified": "2014-01-07",
|
10178 |
-
"files": {
|
10179 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/schoolbell/v4/95-3djEuubb3cJx-6E7j4vesZW2xOQ-xsNqO47m55DA.ttf"
|
10180 |
-
}
|
10181 |
-
},
|
10182 |
-
{
|
10183 |
-
"kind": "webfonts#webfont",
|
10184 |
-
"family": "Seaweed Script",
|
10185 |
-
"category": "display",
|
10186 |
-
"variants": [
|
10187 |
-
"regular"
|
10188 |
-
],
|
10189 |
-
"subsets": [
|
10190 |
-
"latin",
|
10191 |
-
"latin-ext"
|
10192 |
-
],
|
10193 |
-
"version": "v2",
|
10194 |
-
"lastModified": "2014-01-07",
|
10195 |
-
"files": {
|
10196 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/seaweedscript/v2/eorWAPpOvvWrPw5IHwE60BnpV0hQCek3EmWnCPrvGRM.ttf"
|
10197 |
-
}
|
10198 |
-
},
|
10199 |
-
{
|
10200 |
-
"kind": "webfonts#webfont",
|
10201 |
-
"family": "Sevillana",
|
10202 |
-
"category": "display",
|
10203 |
-
"variants": [
|
10204 |
-
"regular"
|
10205 |
-
],
|
10206 |
-
"subsets": [
|
10207 |
-
"latin",
|
10208 |
-
"latin-ext"
|
10209 |
-
],
|
10210 |
-
"version": "v2",
|
10211 |
-
"lastModified": "2014-01-07",
|
10212 |
-
"files": {
|
10213 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sevillana/v2/6m1Nh35oP7YEt00U80Smiw.ttf"
|
10214 |
-
}
|
10215 |
-
},
|
10216 |
-
{
|
10217 |
-
"kind": "webfonts#webfont",
|
10218 |
-
"family": "Seymour One",
|
10219 |
-
"category": "sans-serif",
|
10220 |
-
"variants": [
|
10221 |
-
"regular"
|
10222 |
-
],
|
10223 |
-
"subsets": [
|
10224 |
-
"latin",
|
10225 |
-
"cyrillic",
|
10226 |
-
"latin-ext"
|
10227 |
-
],
|
10228 |
-
"version": "v2",
|
10229 |
-
"lastModified": "2014-01-07",
|
10230 |
-
"files": {
|
10231 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/seymourone/v2/HrdG2AEG_870Xb7xBVv6C6CWcynf_cDxXwCLxiixG1c.ttf"
|
10232 |
-
}
|
10233 |
-
},
|
10234 |
-
{
|
10235 |
-
"kind": "webfonts#webfont",
|
10236 |
-
"family": "Shadows Into Light",
|
10237 |
-
"category": "handwriting",
|
10238 |
-
"variants": [
|
10239 |
-
"regular"
|
10240 |
-
],
|
10241 |
-
"subsets": [
|
10242 |
-
"latin"
|
10243 |
-
],
|
10244 |
-
"version": "v4",
|
10245 |
-
"lastModified": "2014-01-07",
|
10246 |
-
"files": {
|
10247 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/shadowsintolight/v4/clhLqOv7MXn459PTh0gXYAW_5bEze-iLRNvGrRpJsfM.ttf"
|
10248 |
-
}
|
10249 |
-
},
|
10250 |
-
{
|
10251 |
-
"kind": "webfonts#webfont",
|
10252 |
-
"family": "Shadows Into Light Two",
|
10253 |
-
"category": "handwriting",
|
10254 |
-
"variants": [
|
10255 |
-
"regular"
|
10256 |
-
],
|
10257 |
-
"subsets": [
|
10258 |
-
"latin",
|
10259 |
-
"latin-ext"
|
10260 |
-
],
|
10261 |
-
"version": "v2",
|
10262 |
-
"lastModified": "2014-01-07",
|
10263 |
-
"files": {
|
10264 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/shadowsintolighttwo/v2/gDxHeefcXIo-lOuZFCn2xVQrZk-Pga5KeEE_oZjkQjQ.ttf"
|
10265 |
-
}
|
10266 |
-
},
|
10267 |
-
{
|
10268 |
-
"kind": "webfonts#webfont",
|
10269 |
-
"family": "Shanti",
|
10270 |
-
"category": "sans-serif",
|
10271 |
-
"variants": [
|
10272 |
-
"regular"
|
10273 |
-
],
|
10274 |
-
"subsets": [
|
10275 |
-
"latin"
|
10276 |
-
],
|
10277 |
-
"version": "v5",
|
10278 |
-
"lastModified": "2014-01-07",
|
10279 |
-
"files": {
|
10280 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/shanti/v5/lc4nG_JG6Q-2FQSOMMhb_w.ttf"
|
10281 |
-
}
|
10282 |
-
},
|
10283 |
-
{
|
10284 |
-
"kind": "webfonts#webfont",
|
10285 |
-
"family": "Share",
|
10286 |
-
"category": "display",
|
10287 |
-
"variants": [
|
10288 |
-
"regular",
|
10289 |
-
"italic",
|
10290 |
-
"700",
|
10291 |
-
"700italic"
|
10292 |
-
],
|
10293 |
-
"subsets": [
|
10294 |
-
"latin",
|
10295 |
-
"latin-ext"
|
10296 |
-
],
|
10297 |
-
"version": "v2",
|
10298 |
-
"lastModified": "2014-01-07",
|
10299 |
-
"files": {
|
10300 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/share/v2/1ytD7zSb_-g9I2GG67vmVw.ttf",
|
10301 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/share/v2/a9YGdQWFRlNJ0zClJVaY3Q.ttf",
|
10302 |
-
"700": "http://themes.googleusercontent.com/static/fonts/share/v2/XrU8e7a1YKurguyY2azk1Q.ttf",
|
10303 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/share/v2/A992-bLVYwAflKu6iaznufesZW2xOQ-xsNqO47m55DA.ttf"
|
10304 |
-
}
|
10305 |
-
},
|
10306 |
-
{
|
10307 |
-
"kind": "webfonts#webfont",
|
10308 |
-
"family": "Share Tech",
|
10309 |
-
"category": "sans-serif",
|
10310 |
-
"variants": [
|
10311 |
-
"regular"
|
10312 |
-
],
|
10313 |
-
"subsets": [
|
10314 |
-
"latin"
|
10315 |
-
],
|
10316 |
-
"version": "v2",
|
10317 |
-
"lastModified": "2014-01-07",
|
10318 |
-
"files": {
|
10319 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sharetech/v2/Dq3DuZ5_0SW3oEfAWFpen_esZW2xOQ-xsNqO47m55DA.ttf"
|
10320 |
-
}
|
10321 |
-
},
|
10322 |
-
{
|
10323 |
-
"kind": "webfonts#webfont",
|
10324 |
-
"family": "Share Tech Mono",
|
10325 |
-
"category": "monospace",
|
10326 |
-
"variants": [
|
10327 |
-
"regular"
|
10328 |
-
],
|
10329 |
-
"subsets": [
|
10330 |
-
"latin"
|
10331 |
-
],
|
10332 |
-
"version": "v2",
|
10333 |
-
"lastModified": "2014-03-18",
|
10334 |
-
"files": {
|
10335 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sharetechmono/v2/RQxK-3RA0Lnf3gnnnNrAscwD6PD0c3_abh9zHKQtbGU.ttf"
|
10336 |
-
}
|
10337 |
-
},
|
10338 |
-
{
|
10339 |
-
"kind": "webfonts#webfont",
|
10340 |
-
"family": "Shojumaru",
|
10341 |
-
"category": "display",
|
10342 |
-
"variants": [
|
10343 |
-
"regular"
|
10344 |
-
],
|
10345 |
-
"subsets": [
|
10346 |
-
"latin",
|
10347 |
-
"latin-ext"
|
10348 |
-
],
|
10349 |
-
"version": "v2",
|
10350 |
-
"lastModified": "2014-01-07",
|
10351 |
-
"files": {
|
10352 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/shojumaru/v2/WP8cxonzQQVAoI3RJQ2wug.ttf"
|
10353 |
-
}
|
10354 |
-
},
|
10355 |
-
{
|
10356 |
-
"kind": "webfonts#webfont",
|
10357 |
-
"family": "Short Stack",
|
10358 |
-
"category": "handwriting",
|
10359 |
-
"variants": [
|
10360 |
-
"regular"
|
10361 |
-
],
|
10362 |
-
"subsets": [
|
10363 |
-
"latin"
|
10364 |
-
],
|
10365 |
-
"version": "v4",
|
10366 |
-
"lastModified": "2014-01-07",
|
10367 |
-
"files": {
|
10368 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/shortstack/v4/v4dXPI0Rm8XN9gk4SDdqlqCWcynf_cDxXwCLxiixG1c.ttf"
|
10369 |
-
}
|
10370 |
-
},
|
10371 |
-
{
|
10372 |
-
"kind": "webfonts#webfont",
|
10373 |
-
"family": "Siemreap",
|
10374 |
-
"category": "display",
|
10375 |
-
"variants": [
|
10376 |
-
"regular"
|
10377 |
-
],
|
10378 |
-
"subsets": [
|
10379 |
-
"khmer"
|
10380 |
-
],
|
10381 |
-
"version": "v7",
|
10382 |
-
"lastModified": "2014-01-07",
|
10383 |
-
"files": {
|
10384 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/siemreap/v7/JSK-mOIsXwxo-zE9XDDl_g.ttf"
|
10385 |
-
}
|
10386 |
-
},
|
10387 |
-
{
|
10388 |
-
"kind": "webfonts#webfont",
|
10389 |
-
"family": "Sigmar One",
|
10390 |
-
"category": "display",
|
10391 |
-
"variants": [
|
10392 |
-
"regular"
|
10393 |
-
],
|
10394 |
-
"subsets": [
|
10395 |
-
"latin"
|
10396 |
-
],
|
10397 |
-
"version": "v4",
|
10398 |
-
"lastModified": "2014-01-07",
|
10399 |
-
"files": {
|
10400 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sigmarone/v4/oh_5NxD5JBZksdo2EntKefesZW2xOQ-xsNqO47m55DA.ttf"
|
10401 |
-
}
|
10402 |
-
},
|
10403 |
-
{
|
10404 |
-
"kind": "webfonts#webfont",
|
10405 |
-
"family": "Signika",
|
10406 |
-
"category": "sans-serif",
|
10407 |
-
"variants": [
|
10408 |
-
"300",
|
10409 |
-
"regular",
|
10410 |
-
"600",
|
10411 |
-
"700"
|
10412 |
-
],
|
10413 |
-
"subsets": [
|
10414 |
-
"latin",
|
10415 |
-
"latin-ext"
|
10416 |
-
],
|
10417 |
-
"version": "v4",
|
10418 |
-
"lastModified": "2014-01-07",
|
10419 |
-
"files": {
|
10420 |
-
"300": "http://themes.googleusercontent.com/static/fonts/signika/v4/0wDPonOzsYeEo-1KO78w4fesZW2xOQ-xsNqO47m55DA.ttf",
|
10421 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/signika/v4/WvDswbww0oAtvBg2l1L-9w.ttf",
|
10422 |
-
"600": "http://themes.googleusercontent.com/static/fonts/signika/v4/lQMOF6NUN2ooR7WvB7tADvesZW2xOQ-xsNqO47m55DA.ttf",
|
10423 |
-
"700": "http://themes.googleusercontent.com/static/fonts/signika/v4/lEcnfPBICWJPv5BbVNnFJPesZW2xOQ-xsNqO47m55DA.ttf"
|
10424 |
-
}
|
10425 |
-
},
|
10426 |
-
{
|
10427 |
-
"kind": "webfonts#webfont",
|
10428 |
-
"family": "Signika Negative",
|
10429 |
-
"category": "sans-serif",
|
10430 |
-
"variants": [
|
10431 |
-
"300",
|
10432 |
-
"regular",
|
10433 |
-
"600",
|
10434 |
-
"700"
|
10435 |
-
],
|
10436 |
-
"subsets": [
|
10437 |
-
"latin",
|
10438 |
-
"latin-ext"
|
10439 |
-
],
|
10440 |
-
"version": "v3",
|
10441 |
-
"lastModified": "2014-01-07",
|
10442 |
-
"files": {
|
10443 |
-
"300": "http://themes.googleusercontent.com/static/fonts/signikanegative/v3/q5TOjIw4CenPw6C-TW06FjYFXpUPtCmIEFDvjUnLLaI.ttf",
|
10444 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/signikanegative/v3/Z-Q1hzbY8uAo3TpTyPFMXVM1lnCWMnren5_v6047e5A.ttf",
|
10445 |
-
"600": "http://themes.googleusercontent.com/static/fonts/signikanegative/v3/q5TOjIw4CenPw6C-TW06FrKLaDJM01OezSVA2R_O3qI.ttf",
|
10446 |
-
"700": "http://themes.googleusercontent.com/static/fonts/signikanegative/v3/q5TOjIw4CenPw6C-TW06FpYzPxtVvobH1w3hEppR8WI.ttf"
|
10447 |
-
}
|
10448 |
-
},
|
10449 |
-
{
|
10450 |
-
"kind": "webfonts#webfont",
|
10451 |
-
"family": "Simonetta",
|
10452 |
-
"category": "display",
|
10453 |
-
"variants": [
|
10454 |
-
"regular",
|
10455 |
-
"italic",
|
10456 |
-
"900",
|
10457 |
-
"900italic"
|
10458 |
-
],
|
10459 |
-
"subsets": [
|
10460 |
-
"latin",
|
10461 |
-
"latin-ext"
|
10462 |
-
],
|
10463 |
-
"version": "v3",
|
10464 |
-
"lastModified": "2014-01-07",
|
10465 |
-
"files": {
|
10466 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/simonetta/v3/fN8puNuahBo4EYMQgp12Yg.ttf",
|
10467 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/simonetta/v3/ynxQ3FqfF_Nziwy3T9ZwL6CWcynf_cDxXwCLxiixG1c.ttf",
|
10468 |
-
"900": "http://themes.googleusercontent.com/static/fonts/simonetta/v3/22EwvvJ2r1VwVCxit5LcVi3USBnSvpkopQaUR-2r7iU.ttf",
|
10469 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/simonetta/v3/WUXOpCgBZaRPrWtMCpeKoienaqEuufTBk9XMKnKmgDA.ttf"
|
10470 |
-
}
|
10471 |
-
},
|
10472 |
-
{
|
10473 |
-
"kind": "webfonts#webfont",
|
10474 |
-
"family": "Sintony",
|
10475 |
-
"category": "sans-serif",
|
10476 |
-
"variants": [
|
10477 |
-
"regular",
|
10478 |
-
"700"
|
10479 |
-
],
|
10480 |
-
"subsets": [
|
10481 |
-
"latin",
|
10482 |
-
"latin-ext"
|
10483 |
-
],
|
10484 |
-
"version": "v2",
|
10485 |
-
"lastModified": "2014-01-07",
|
10486 |
-
"files": {
|
10487 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sintony/v2/IDhCijoIMev2L6Lg5QsduQ.ttf",
|
10488 |
-
"700": "http://themes.googleusercontent.com/static/fonts/sintony/v2/zVXQB1wqJn6PE4dWXoYpvPesZW2xOQ-xsNqO47m55DA.ttf"
|
10489 |
-
}
|
10490 |
-
},
|
10491 |
-
{
|
10492 |
-
"kind": "webfonts#webfont",
|
10493 |
-
"family": "Sirin Stencil",
|
10494 |
-
"category": "display",
|
10495 |
-
"variants": [
|
10496 |
-
"regular"
|
10497 |
-
],
|
10498 |
-
"subsets": [
|
10499 |
-
"latin"
|
10500 |
-
],
|
10501 |
-
"version": "v2",
|
10502 |
-
"lastModified": "2014-01-07",
|
10503 |
-
"files": {
|
10504 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sirinstencil/v2/pRpLdo0SawzO7MoBpvowsImg74kgS1F7KeR8rWhYwkU.ttf"
|
10505 |
-
}
|
10506 |
-
},
|
10507 |
-
{
|
10508 |
-
"kind": "webfonts#webfont",
|
10509 |
-
"family": "Six Caps",
|
10510 |
-
"category": "sans-serif",
|
10511 |
-
"variants": [
|
10512 |
-
"regular"
|
10513 |
-
],
|
10514 |
-
"subsets": [
|
10515 |
-
"latin"
|
10516 |
-
],
|
10517 |
-
"version": "v5",
|
10518 |
-
"lastModified": "2014-01-07",
|
10519 |
-
"files": {
|
10520 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sixcaps/v5/_XeDnO0HOV8Er9u97If1tQ.ttf"
|
10521 |
-
}
|
10522 |
-
},
|
10523 |
-
{
|
10524 |
-
"kind": "webfonts#webfont",
|
10525 |
-
"family": "Skranji",
|
10526 |
-
"category": "display",
|
10527 |
-
"variants": [
|
10528 |
-
"regular",
|
10529 |
-
"700"
|
10530 |
-
],
|
10531 |
-
"subsets": [
|
10532 |
-
"latin",
|
10533 |
-
"latin-ext"
|
10534 |
-
],
|
10535 |
-
"version": "v2",
|
10536 |
-
"lastModified": "2014-01-07",
|
10537 |
-
"files": {
|
10538 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/skranji/v2/jnOLPS0iZmDL7dfWnW3nIw.ttf",
|
10539 |
-
"700": "http://themes.googleusercontent.com/static/fonts/skranji/v2/Lcrhg-fviVkxiEgoadsI1vesZW2xOQ-xsNqO47m55DA.ttf"
|
10540 |
-
}
|
10541 |
-
},
|
10542 |
-
{
|
10543 |
-
"kind": "webfonts#webfont",
|
10544 |
-
"family": "Slackey",
|
10545 |
-
"category": "display",
|
10546 |
-
"variants": [
|
10547 |
-
"regular"
|
10548 |
-
],
|
10549 |
-
"subsets": [
|
10550 |
-
"latin"
|
10551 |
-
],
|
10552 |
-
"version": "v4",
|
10553 |
-
"lastModified": "2014-01-07",
|
10554 |
-
"files": {
|
10555 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/slackey/v4/evRIMNhGVCRJvCPv4kteeA.ttf"
|
10556 |
-
}
|
10557 |
-
},
|
10558 |
-
{
|
10559 |
-
"kind": "webfonts#webfont",
|
10560 |
-
"family": "Smokum",
|
10561 |
-
"category": "display",
|
10562 |
-
"variants": [
|
10563 |
-
"regular"
|
10564 |
-
],
|
10565 |
-
"subsets": [
|
10566 |
-
"latin"
|
10567 |
-
],
|
10568 |
-
"version": "v4",
|
10569 |
-
"lastModified": "2014-01-07",
|
10570 |
-
"files": {
|
10571 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/smokum/v4/8YP4BuAcy97X8WfdKfxVRw.ttf"
|
10572 |
-
}
|
10573 |
-
},
|
10574 |
-
{
|
10575 |
-
"kind": "webfonts#webfont",
|
10576 |
-
"family": "Smythe",
|
10577 |
-
"category": "display",
|
10578 |
-
"variants": [
|
10579 |
-
"regular"
|
10580 |
-
],
|
10581 |
-
"subsets": [
|
10582 |
-
"latin"
|
10583 |
-
],
|
10584 |
-
"version": "v5",
|
10585 |
-
"lastModified": "2014-01-07",
|
10586 |
-
"files": {
|
10587 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/smythe/v5/yACD1gy_MpbB9Ft42fUvYw.ttf"
|
10588 |
-
}
|
10589 |
-
},
|
10590 |
-
{
|
10591 |
-
"kind": "webfonts#webfont",
|
10592 |
-
"family": "Sniglet",
|
10593 |
-
"category": "display",
|
10594 |
-
"variants": [
|
10595 |
-
"regular",
|
10596 |
-
"800"
|
10597 |
-
],
|
10598 |
-
"subsets": [
|
10599 |
-
"latin",
|
10600 |
-
"latin-ext"
|
10601 |
-
],
|
10602 |
-
"version": "v5",
|
10603 |
-
"lastModified": "2014-01-07",
|
10604 |
-
"files": {
|
10605 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sniglet/v5/XWhyQLHH4SpCVsHRPRgu9w.ttf",
|
10606 |
-
"800": "http://themes.googleusercontent.com/static/fonts/sniglet/v5/NLF91nBmcEfkBgcEWbHFa_esZW2xOQ-xsNqO47m55DA.ttf"
|
10607 |
-
}
|
10608 |
-
},
|
10609 |
-
{
|
10610 |
-
"kind": "webfonts#webfont",
|
10611 |
-
"family": "Snippet",
|
10612 |
-
"category": "sans-serif",
|
10613 |
-
"variants": [
|
10614 |
-
"regular"
|
10615 |
-
],
|
10616 |
-
"subsets": [
|
10617 |
-
"latin"
|
10618 |
-
],
|
10619 |
-
"version": "v4",
|
10620 |
-
"lastModified": "2014-01-07",
|
10621 |
-
"files": {
|
10622 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/snippet/v4/eUcYMLq2GtHZovLlQH_9kA.ttf"
|
10623 |
-
}
|
10624 |
-
},
|
10625 |
-
{
|
10626 |
-
"kind": "webfonts#webfont",
|
10627 |
-
"family": "Snowburst One",
|
10628 |
-
"category": "display",
|
10629 |
-
"variants": [
|
10630 |
-
"regular"
|
10631 |
-
],
|
10632 |
-
"subsets": [
|
10633 |
-
"latin",
|
10634 |
-
"latin-ext"
|
10635 |
-
],
|
10636 |
-
"version": "v2",
|
10637 |
-
"lastModified": "2014-01-07",
|
10638 |
-
"files": {
|
10639 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/snowburstone/v2/zSQzKOPukXRux2oTqfYJjIjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
10640 |
-
}
|
10641 |
-
},
|
10642 |
-
{
|
10643 |
-
"kind": "webfonts#webfont",
|
10644 |
-
"family": "Sofadi One",
|
10645 |
-
"category": "display",
|
10646 |
-
"variants": [
|
10647 |
-
"regular"
|
10648 |
-
],
|
10649 |
-
"subsets": [
|
10650 |
-
"latin"
|
10651 |
-
],
|
10652 |
-
"version": "v2",
|
10653 |
-
"lastModified": "2014-01-07",
|
10654 |
-
"files": {
|
10655 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sofadione/v2/nirf4G12IcJ6KI8Eoj119fesZW2xOQ-xsNqO47m55DA.ttf"
|
10656 |
-
}
|
10657 |
-
},
|
10658 |
-
{
|
10659 |
-
"kind": "webfonts#webfont",
|
10660 |
-
"family": "Sofia",
|
10661 |
-
"category": "handwriting",
|
10662 |
-
"variants": [
|
10663 |
-
"regular"
|
10664 |
-
],
|
10665 |
-
"subsets": [
|
10666 |
-
"latin"
|
10667 |
-
],
|
10668 |
-
"version": "v3",
|
10669 |
-
"lastModified": "2014-01-07",
|
10670 |
-
"files": {
|
10671 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sofia/v3/Imnvx0Ag9r6iDBFUY5_RaQ.ttf"
|
10672 |
-
}
|
10673 |
-
},
|
10674 |
-
{
|
10675 |
-
"kind": "webfonts#webfont",
|
10676 |
-
"family": "Sonsie One",
|
10677 |
-
"category": "display",
|
10678 |
-
"variants": [
|
10679 |
-
"regular"
|
10680 |
-
],
|
10681 |
-
"subsets": [
|
10682 |
-
"latin",
|
10683 |
-
"latin-ext"
|
10684 |
-
],
|
10685 |
-
"version": "v3",
|
10686 |
-
"lastModified": "2014-01-07",
|
10687 |
-
"files": {
|
10688 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sonsieone/v3/KSP7xT1OSy0q2ob6RQOTWPesZW2xOQ-xsNqO47m55DA.ttf"
|
10689 |
-
}
|
10690 |
-
},
|
10691 |
-
{
|
10692 |
-
"kind": "webfonts#webfont",
|
10693 |
-
"family": "Sorts Mill Goudy",
|
10694 |
-
"category": "serif",
|
10695 |
-
"variants": [
|
10696 |
-
"regular",
|
10697 |
-
"italic"
|
10698 |
-
],
|
10699 |
-
"subsets": [
|
10700 |
-
"latin",
|
10701 |
-
"latin-ext"
|
10702 |
-
],
|
10703 |
-
"version": "v4",
|
10704 |
-
"lastModified": "2014-01-07",
|
10705 |
-
"files": {
|
10706 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sortsmillgoudy/v4/JzRrPKdwEnE8F1TDmDLMUlIL2Qjg-Xlsg_fhGbe2P5U.ttf",
|
10707 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/sortsmillgoudy/v4/UUu1lKiy4hRmBWk599VL1TYNkCNSzLyoucKmbTguvr0.ttf"
|
10708 |
-
}
|
10709 |
-
},
|
10710 |
-
{
|
10711 |
-
"kind": "webfonts#webfont",
|
10712 |
-
"family": "Source Code Pro",
|
10713 |
-
"category": "monospace",
|
10714 |
-
"variants": [
|
10715 |
-
"200",
|
10716 |
-
"300",
|
10717 |
-
"regular",
|
10718 |
-
"500",
|
10719 |
-
"600",
|
10720 |
-
"700",
|
10721 |
-
"900"
|
10722 |
-
],
|
10723 |
-
"subsets": [
|
10724 |
-
"latin",
|
10725 |
-
"latin-ext"
|
10726 |
-
],
|
10727 |
-
"version": "v4",
|
10728 |
-
"lastModified": "2014-03-18",
|
10729 |
-
"files": {
|
10730 |
-
"200": "http://themes.googleusercontent.com/static/fonts/sourcecodepro/v4/leqv3v-yTsJNC7nFznSMqaXvKVW_haheDNrHjziJZVk.ttf",
|
10731 |
-
"300": "http://themes.googleusercontent.com/static/fonts/sourcecodepro/v4/leqv3v-yTsJNC7nFznSMqVP7R5lD_au4SZC6Ks_vyWs.ttf",
|
10732 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sourcecodepro/v4/mrl8jkM18OlOQN8JLgasD9Rl0pGnog23EMYRrBmUzJQ.ttf",
|
10733 |
-
"500": "http://themes.googleusercontent.com/static/fonts/sourcecodepro/v4/leqv3v-yTsJNC7nFznSMqX63uKwMO11Of4rJWV582wg.ttf",
|
10734 |
-
"600": "http://themes.googleusercontent.com/static/fonts/sourcecodepro/v4/leqv3v-yTsJNC7nFznSMqeiMeWyi5E_-XkTgB5psiDg.ttf",
|
10735 |
-
"700": "http://themes.googleusercontent.com/static/fonts/sourcecodepro/v4/leqv3v-yTsJNC7nFznSMqfgXsetDviZcdR5OzC1KPcw.ttf",
|
10736 |
-
"900": "http://themes.googleusercontent.com/static/fonts/sourcecodepro/v4/leqv3v-yTsJNC7nFznSMqRA_awHl7mXRjE_LQVochcU.ttf"
|
10737 |
-
}
|
10738 |
-
},
|
10739 |
-
{
|
10740 |
-
"kind": "webfonts#webfont",
|
10741 |
-
"family": "Source Sans Pro",
|
10742 |
-
"category": "sans-serif",
|
10743 |
-
"variants": [
|
10744 |
-
"200",
|
10745 |
-
"200italic",
|
10746 |
-
"300",
|
10747 |
-
"300italic",
|
10748 |
-
"regular",
|
10749 |
-
"italic",
|
10750 |
-
"600",
|
10751 |
-
"600italic",
|
10752 |
-
"700",
|
10753 |
-
"700italic",
|
10754 |
-
"900",
|
10755 |
-
"900italic"
|
10756 |
-
],
|
10757 |
-
"subsets": [
|
10758 |
-
"latin",
|
10759 |
-
"vietnamese",
|
10760 |
-
"latin-ext"
|
10761 |
-
],
|
10762 |
-
"version": "v7",
|
10763 |
-
"lastModified": "2014-01-07",
|
10764 |
-
"files": {
|
10765 |
-
"200": "http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/toadOcfmlt9b38dHJxOBGKXvKVW_haheDNrHjziJZVk.ttf",
|
10766 |
-
"200italic": "http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/fpTVHK8qsXbIeTHTrnQH6OptKU7UIBg2hLM7eMTU8bI.ttf",
|
10767 |
-
"300": "http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/toadOcfmlt9b38dHJxOBGFP7R5lD_au4SZC6Ks_vyWs.ttf",
|
10768 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/fpTVHK8qsXbIeTHTrnQH6DUpNKoQAsDux-Todp8f29w.ttf",
|
10769 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/ODelI1aHBYDBqgeIAH2zlNRl0pGnog23EMYRrBmUzJQ.ttf",
|
10770 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/M2Jd71oPJhLKp0zdtTvoMwRX4TIfMQQEXLu74GftruE.ttf",
|
10771 |
-
"600": "http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/toadOcfmlt9b38dHJxOBGOiMeWyi5E_-XkTgB5psiDg.ttf",
|
10772 |
-
"600italic": "http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/fpTVHK8qsXbIeTHTrnQH6Pp6lGoTTgjlW0sC4r900Co.ttf",
|
10773 |
-
"700": "http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/toadOcfmlt9b38dHJxOBGPgXsetDviZcdR5OzC1KPcw.ttf",
|
10774 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/fpTVHK8qsXbIeTHTrnQH6LVT4locI09aamSzFGQlDMY.ttf",
|
10775 |
-
"900": "http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/toadOcfmlt9b38dHJxOBGBA_awHl7mXRjE_LQVochcU.ttf",
|
10776 |
-
"900italic": "http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/fpTVHK8qsXbIeTHTrnQH6A0NcF6HPGWR298uWIdxWv0.ttf"
|
10777 |
-
}
|
10778 |
-
},
|
10779 |
-
{
|
10780 |
-
"kind": "webfonts#webfont",
|
10781 |
-
"family": "Special Elite",
|
10782 |
-
"category": "display",
|
10783 |
-
"variants": [
|
10784 |
-
"regular"
|
10785 |
-
],
|
10786 |
-
"subsets": [
|
10787 |
-
"latin"
|
10788 |
-
],
|
10789 |
-
"version": "v4",
|
10790 |
-
"lastModified": "2014-01-07",
|
10791 |
-
"files": {
|
10792 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/specialelite/v4/9-wW4zu3WNoD5Fjka35Jm4jjx0o0jr6fNXxPgYh_a8Q.ttf"
|
10793 |
-
}
|
10794 |
-
},
|
10795 |
-
{
|
10796 |
-
"kind": "webfonts#webfont",
|
10797 |
-
"family": "Spicy Rice",
|
10798 |
-
"category": "display",
|
10799 |
-
"variants": [
|
10800 |
-
"regular"
|
10801 |
-
],
|
10802 |
-
"subsets": [
|
10803 |
-
"latin"
|
10804 |
-
],
|
10805 |
-
"version": "v3",
|
10806 |
-
"lastModified": "2014-01-07",
|
10807 |
-
"files": {
|
10808 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/spicyrice/v3/WGCtz7cLoggXARPi9OGD6_esZW2xOQ-xsNqO47m55DA.ttf"
|
10809 |
-
}
|
10810 |
-
},
|
10811 |
-
{
|
10812 |
-
"kind": "webfonts#webfont",
|
10813 |
-
"family": "Spinnaker",
|
10814 |
-
"category": "sans-serif",
|
10815 |
-
"variants": [
|
10816 |
-
"regular"
|
10817 |
-
],
|
10818 |
-
"subsets": [
|
10819 |
-
"latin",
|
10820 |
-
"latin-ext"
|
10821 |
-
],
|
10822 |
-
"version": "v6",
|
10823 |
-
"lastModified": "2014-01-07",
|
10824 |
-
"files": {
|
10825 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/spinnaker/v6/MQdIXivKITpjROUdiN6Jgg.ttf"
|
10826 |
-
}
|
10827 |
-
},
|
10828 |
-
{
|
10829 |
-
"kind": "webfonts#webfont",
|
10830 |
-
"family": "Spirax",
|
10831 |
-
"category": "display",
|
10832 |
-
"variants": [
|
10833 |
-
"regular"
|
10834 |
-
],
|
10835 |
-
"subsets": [
|
10836 |
-
"latin"
|
10837 |
-
],
|
10838 |
-
"version": "v3",
|
10839 |
-
"lastModified": "2014-01-07",
|
10840 |
-
"files": {
|
10841 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/spirax/v3/IOKqhk-Ccl7y31yDsePPkw.ttf"
|
10842 |
-
}
|
10843 |
-
},
|
10844 |
-
{
|
10845 |
-
"kind": "webfonts#webfont",
|
10846 |
-
"family": "Squada One",
|
10847 |
-
"category": "display",
|
10848 |
-
"variants": [
|
10849 |
-
"regular"
|
10850 |
-
],
|
10851 |
-
"subsets": [
|
10852 |
-
"latin"
|
10853 |
-
],
|
10854 |
-
"version": "v3",
|
10855 |
-
"lastModified": "2014-01-07",
|
10856 |
-
"files": {
|
10857 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/squadaone/v3/3tzGuaJdD65cZVgfQzN8uvesZW2xOQ-xsNqO47m55DA.ttf"
|
10858 |
-
}
|
10859 |
-
},
|
10860 |
-
{
|
10861 |
-
"kind": "webfonts#webfont",
|
10862 |
-
"family": "Stalemate",
|
10863 |
-
"category": "handwriting",
|
10864 |
-
"variants": [
|
10865 |
-
"regular"
|
10866 |
-
],
|
10867 |
-
"subsets": [
|
10868 |
-
"latin",
|
10869 |
-
"latin-ext"
|
10870 |
-
],
|
10871 |
-
"version": "v2",
|
10872 |
-
"lastModified": "2014-01-07",
|
10873 |
-
"files": {
|
10874 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/stalemate/v2/wQLCnG0qB6mOu2Wit2dt_w.ttf"
|
10875 |
-
}
|
10876 |
-
},
|
10877 |
-
{
|
10878 |
-
"kind": "webfonts#webfont",
|
10879 |
-
"family": "Stalinist One",
|
10880 |
-
"category": "display",
|
10881 |
-
"variants": [
|
10882 |
-
"regular"
|
10883 |
-
],
|
10884 |
-
"subsets": [
|
10885 |
-
"latin",
|
10886 |
-
"cyrillic",
|
10887 |
-
"latin-ext"
|
10888 |
-
],
|
10889 |
-
"version": "v3",
|
10890 |
-
"lastModified": "2014-01-07",
|
10891 |
-
"files": {
|
10892 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/stalinistone/v3/ltOD4Zj3WJDXYjAIR-9vZojjx0o0jr6fNXxPgYh_a8Q.ttf"
|
10893 |
-
}
|
10894 |
-
},
|
10895 |
-
{
|
10896 |
-
"kind": "webfonts#webfont",
|
10897 |
-
"family": "Stardos Stencil",
|
10898 |
-
"category": "display",
|
10899 |
-
"variants": [
|
10900 |
-
"regular",
|
10901 |
-
"700"
|
10902 |
-
],
|
10903 |
-
"subsets": [
|
10904 |
-
"latin"
|
10905 |
-
],
|
10906 |
-
"version": "v4",
|
10907 |
-
"lastModified": "2014-01-07",
|
10908 |
-
"files": {
|
10909 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/stardosstencil/v4/ygEOyTW9a6u4fi4OXEZeTFf2eT4jUldwg_9fgfY_tHc.ttf",
|
10910 |
-
"700": "http://themes.googleusercontent.com/static/fonts/stardosstencil/v4/h4ExtgvoXhPtv9Ieqd-XC81wDCbBgmIo8UyjIhmkeSM.ttf"
|
10911 |
-
}
|
10912 |
-
},
|
10913 |
-
{
|
10914 |
-
"kind": "webfonts#webfont",
|
10915 |
-
"family": "Stint Ultra Condensed",
|
10916 |
-
"category": "display",
|
10917 |
-
"variants": [
|
10918 |
-
"regular"
|
10919 |
-
],
|
10920 |
-
"subsets": [
|
10921 |
-
"latin",
|
10922 |
-
"latin-ext"
|
10923 |
-
],
|
10924 |
-
"version": "v3",
|
10925 |
-
"lastModified": "2014-01-07",
|
10926 |
-
"files": {
|
10927 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/stintultracondensed/v3/8DqLK6-YSClFZt3u3EgOUYelbRYnLTTQA1Z5cVLnsI4.ttf"
|
10928 |
-
}
|
10929 |
-
},
|
10930 |
-
{
|
10931 |
-
"kind": "webfonts#webfont",
|
10932 |
-
"family": "Stint Ultra Expanded",
|
10933 |
-
"category": "display",
|
10934 |
-
"variants": [
|
10935 |
-
"regular"
|
10936 |
-
],
|
10937 |
-
"subsets": [
|
10938 |
-
"latin",
|
10939 |
-
"latin-ext"
|
10940 |
-
],
|
10941 |
-
"version": "v2",
|
10942 |
-
"lastModified": "2014-01-07",
|
10943 |
-
"files": {
|
10944 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/stintultraexpanded/v2/FeigX-wDDgHMCKuhekhedQ7dxr0N5HY0cZKknTIL6n4.ttf"
|
10945 |
-
}
|
10946 |
-
},
|
10947 |
-
{
|
10948 |
-
"kind": "webfonts#webfont",
|
10949 |
-
"family": "Stoke",
|
10950 |
-
"category": "serif",
|
10951 |
-
"variants": [
|
10952 |
-
"300",
|
10953 |
-
"regular"
|
10954 |
-
],
|
10955 |
-
"subsets": [
|
10956 |
-
"latin",
|
10957 |
-
"latin-ext"
|
10958 |
-
],
|
10959 |
-
"version": "v4",
|
10960 |
-
"lastModified": "2014-01-07",
|
10961 |
-
"files": {
|
10962 |
-
"300": "http://themes.googleusercontent.com/static/fonts/stoke/v4/Sell9475FOS8jUqQsfFsUQ.ttf",
|
10963 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/stoke/v4/A7qJNoqOm2d6o1E6e0yUFg.ttf"
|
10964 |
-
}
|
10965 |
-
},
|
10966 |
-
{
|
10967 |
-
"kind": "webfonts#webfont",
|
10968 |
-
"family": "Strait",
|
10969 |
-
"category": "sans-serif",
|
10970 |
-
"variants": [
|
10971 |
-
"regular"
|
10972 |
-
],
|
10973 |
-
"subsets": [
|
10974 |
-
"latin"
|
10975 |
-
],
|
10976 |
-
"version": "v2",
|
10977 |
-
"lastModified": "2014-01-07",
|
10978 |
-
"files": {
|
10979 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/strait/v2/m4W73ViNmProETY2ybc-Bg.ttf"
|
10980 |
-
}
|
10981 |
-
},
|
10982 |
-
{
|
10983 |
-
"kind": "webfonts#webfont",
|
10984 |
-
"family": "Sue Ellen Francisco",
|
10985 |
-
"category": "handwriting",
|
10986 |
-
"variants": [
|
10987 |
-
"regular"
|
10988 |
-
],
|
10989 |
-
"subsets": [
|
10990 |
-
"latin"
|
10991 |
-
],
|
10992 |
-
"version": "v5",
|
10993 |
-
"lastModified": "2014-01-07",
|
10994 |
-
"files": {
|
10995 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sueellenfrancisco/v5/TwHX4vSxMUnJUdEz1JIgrhzazJzPVbGl8jnf1tisRz4.ttf"
|
10996 |
-
}
|
10997 |
-
},
|
10998 |
-
{
|
10999 |
-
"kind": "webfonts#webfont",
|
11000 |
-
"family": "Sunshiney",
|
11001 |
-
"category": "handwriting",
|
11002 |
-
"variants": [
|
11003 |
-
"regular"
|
11004 |
-
],
|
11005 |
-
"subsets": [
|
11006 |
-
"latin"
|
11007 |
-
],
|
11008 |
-
"version": "v4",
|
11009 |
-
"lastModified": "2014-01-07",
|
11010 |
-
"files": {
|
11011 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/sunshiney/v4/kaWOb4pGbwNijM7CkxK1sQ.ttf"
|
11012 |
-
}
|
11013 |
-
},
|
11014 |
-
{
|
11015 |
-
"kind": "webfonts#webfont",
|
11016 |
-
"family": "Supermercado One",
|
11017 |
-
"category": "display",
|
11018 |
-
"variants": [
|
11019 |
-
"regular"
|
11020 |
-
],
|
11021 |
-
"subsets": [
|
11022 |
-
"latin"
|
11023 |
-
],
|
11024 |
-
"version": "v4",
|
11025 |
-
"lastModified": "2014-01-07",
|
11026 |
-
"files": {
|
11027 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/supermercadoone/v4/kMGPVTNFiFEp1U274uBMb4mm5hmSKNFf3C5YoMa-lrM.ttf"
|
11028 |
-
}
|
11029 |
-
},
|
11030 |
-
{
|
11031 |
-
"kind": "webfonts#webfont",
|
11032 |
-
"family": "Suwannaphum",
|
11033 |
-
"category": "display",
|
11034 |
-
"variants": [
|
11035 |
-
"regular"
|
11036 |
-
],
|
11037 |
-
"subsets": [
|
11038 |
-
"khmer"
|
11039 |
-
],
|
11040 |
-
"version": "v7",
|
11041 |
-
"lastModified": "2014-01-07",
|
11042 |
-
"files": {
|
11043 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/suwannaphum/v7/1jIPOyXied3T79GCnSlCN6CWcynf_cDxXwCLxiixG1c.ttf"
|
11044 |
-
}
|
11045 |
-
},
|
11046 |
-
{
|
11047 |
-
"kind": "webfonts#webfont",
|
11048 |
-
"family": "Swanky and Moo Moo",
|
11049 |
-
"category": "handwriting",
|
11050 |
-
"variants": [
|
11051 |
-
"regular"
|
11052 |
-
],
|
11053 |
-
"subsets": [
|
11054 |
-
"latin"
|
11055 |
-
],
|
11056 |
-
"version": "v4",
|
11057 |
-
"lastModified": "2014-01-07",
|
11058 |
-
"files": {
|
11059 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/swankyandmoomoo/v4/orVNZ9kDeE3lWp3U3YELu9DVLKqNC3_XMNHhr8S94FU.ttf"
|
11060 |
-
}
|
11061 |
-
},
|
11062 |
-
{
|
11063 |
-
"kind": "webfonts#webfont",
|
11064 |
-
"family": "Syncopate",
|
11065 |
-
"category": "sans-serif",
|
11066 |
-
"variants": [
|
11067 |
-
"regular",
|
11068 |
-
"700"
|
11069 |
-
],
|
11070 |
-
"subsets": [
|
11071 |
-
"latin"
|
11072 |
-
],
|
11073 |
-
"version": "v4",
|
11074 |
-
"lastModified": "2014-01-07",
|
11075 |
-
"files": {
|
11076 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/syncopate/v4/RQVwO52fAH6MI764EcaYtw.ttf",
|
11077 |
-
"700": "http://themes.googleusercontent.com/static/fonts/syncopate/v4/S5z8ixiOoC4WJ1im6jAlYC3USBnSvpkopQaUR-2r7iU.ttf"
|
11078 |
-
}
|
11079 |
-
},
|
11080 |
-
{
|
11081 |
-
"kind": "webfonts#webfont",
|
11082 |
-
"family": "Tangerine",
|
11083 |
-
"category": "handwriting",
|
11084 |
-
"variants": [
|
11085 |
-
"regular",
|
11086 |
-
"700"
|
11087 |
-
],
|
11088 |
-
"subsets": [
|
11089 |
-
"latin"
|
11090 |
-
],
|
11091 |
-
"version": "v4",
|
11092 |
-
"lastModified": "2014-01-07",
|
11093 |
-
"files": {
|
11094 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/tangerine/v4/DTPeM3IROhnkz7aYG2a9sA.ttf",
|
11095 |
-
"700": "http://themes.googleusercontent.com/static/fonts/tangerine/v4/UkFsr-RwJB_d2l9fIWsx3i3USBnSvpkopQaUR-2r7iU.ttf"
|
11096 |
-
}
|
11097 |
-
},
|
11098 |
-
{
|
11099 |
-
"kind": "webfonts#webfont",
|
11100 |
-
"family": "Taprom",
|
11101 |
-
"category": "display",
|
11102 |
-
"variants": [
|
11103 |
-
"regular"
|
11104 |
-
],
|
11105 |
-
"subsets": [
|
11106 |
-
"khmer"
|
11107 |
-
],
|
11108 |
-
"version": "v6",
|
11109 |
-
"lastModified": "2014-01-07",
|
11110 |
-
"files": {
|
11111 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/taprom/v6/-KByU3BaUsyIvQs79qFObg.ttf"
|
11112 |
-
}
|
11113 |
-
},
|
11114 |
-
{
|
11115 |
-
"kind": "webfonts#webfont",
|
11116 |
-
"family": "Tauri",
|
11117 |
-
"category": "sans-serif",
|
11118 |
-
"variants": [
|
11119 |
-
"regular"
|
11120 |
-
],
|
11121 |
-
"subsets": [
|
11122 |
-
"latin",
|
11123 |
-
"latin-ext"
|
11124 |
-
],
|
11125 |
-
"version": "v2",
|
11126 |
-
"lastModified": "2014-01-07",
|
11127 |
-
"files": {
|
11128 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/tauri/v2/XIWeYJDXNqiVNej0zEqtGg.ttf"
|
11129 |
-
}
|
11130 |
-
},
|
11131 |
-
{
|
11132 |
-
"kind": "webfonts#webfont",
|
11133 |
-
"family": "Telex",
|
11134 |
-
"category": "sans-serif",
|
11135 |
-
"variants": [
|
11136 |
-
"regular"
|
11137 |
-
],
|
11138 |
-
"subsets": [
|
11139 |
-
"latin"
|
11140 |
-
],
|
11141 |
-
"version": "v2",
|
11142 |
-
"lastModified": "2014-01-07",
|
11143 |
-
"files": {
|
11144 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/telex/v2/24-3xP9ywYeHOcFU3iGk8A.ttf"
|
11145 |
-
}
|
11146 |
-
},
|
11147 |
-
{
|
11148 |
-
"kind": "webfonts#webfont",
|
11149 |
-
"family": "Tenor Sans",
|
11150 |
-
"category": "sans-serif",
|
11151 |
-
"variants": [
|
11152 |
-
"regular"
|
11153 |
-
],
|
11154 |
-
"subsets": [
|
11155 |
-
"latin",
|
11156 |
-
"cyrillic",
|
11157 |
-
"cyrillic-ext",
|
11158 |
-
"latin-ext"
|
11159 |
-
],
|
11160 |
-
"version": "v5",
|
11161 |
-
"lastModified": "2014-01-07",
|
11162 |
-
"files": {
|
11163 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/tenorsans/v5/dUBulmjNJJInvK5vL7O9yfesZW2xOQ-xsNqO47m55DA.ttf"
|
11164 |
-
}
|
11165 |
-
},
|
11166 |
-
{
|
11167 |
-
"kind": "webfonts#webfont",
|
11168 |
-
"family": "Text Me One",
|
11169 |
-
"category": "sans-serif",
|
11170 |
-
"variants": [
|
11171 |
-
"regular"
|
11172 |
-
],
|
11173 |
-
"subsets": [
|
11174 |
-
"latin",
|
11175 |
-
"latin-ext"
|
11176 |
-
],
|
11177 |
-
"version": "v2",
|
11178 |
-
"lastModified": "2014-01-07",
|
11179 |
-
"files": {
|
11180 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/textmeone/v2/9em_3ckd_P5PQkP4aDyDLqCWcynf_cDxXwCLxiixG1c.ttf"
|
11181 |
-
}
|
11182 |
-
},
|
11183 |
-
{
|
11184 |
-
"kind": "webfonts#webfont",
|
11185 |
-
"family": "The Girl Next Door",
|
11186 |
-
"category": "handwriting",
|
11187 |
-
"variants": [
|
11188 |
-
"regular"
|
11189 |
-
],
|
11190 |
-
"subsets": [
|
11191 |
-
"latin"
|
11192 |
-
],
|
11193 |
-
"version": "v5",
|
11194 |
-
"lastModified": "2014-01-07",
|
11195 |
-
"files": {
|
11196 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/thegirlnextdoor/v5/cWRA4JVGeEcHGcPl5hmX7kzo0nFFoM60ux_D9BUymX4.ttf"
|
11197 |
-
}
|
11198 |
-
},
|
11199 |
-
{
|
11200 |
-
"kind": "webfonts#webfont",
|
11201 |
-
"family": "Tienne",
|
11202 |
-
"category": "serif",
|
11203 |
-
"variants": [
|
11204 |
-
"regular",
|
11205 |
-
"700",
|
11206 |
-
"900"
|
11207 |
-
],
|
11208 |
-
"subsets": [
|
11209 |
-
"latin"
|
11210 |
-
],
|
11211 |
-
"version": "v6",
|
11212 |
-
"lastModified": "2014-01-07",
|
11213 |
-
"files": {
|
11214 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/tienne/v6/-IIfDl701C0z7-fy2kmGvA.ttf",
|
11215 |
-
"700": "http://themes.googleusercontent.com/static/fonts/tienne/v6/JvoCDOlyOSEyYGRwCyfs3g.ttf",
|
11216 |
-
"900": "http://themes.googleusercontent.com/static/fonts/tienne/v6/FBano5T521OWexj2iRYLMw.ttf"
|
11217 |
-
}
|
11218 |
-
},
|
11219 |
-
{
|
11220 |
-
"kind": "webfonts#webfont",
|
11221 |
-
"family": "Tinos",
|
11222 |
-
"category": "serif",
|
11223 |
-
"variants": [
|
11224 |
-
"regular",
|
11225 |
-
"italic",
|
11226 |
-
"700",
|
11227 |
-
"700italic"
|
11228 |
-
],
|
11229 |
-
"subsets": [
|
11230 |
-
"latin",
|
11231 |
-
"greek",
|
11232 |
-
"cyrillic",
|
11233 |
-
"vietnamese",
|
11234 |
-
"cyrillic-ext",
|
11235 |
-
"latin-ext",
|
11236 |
-
"greek-ext"
|
11237 |
-
],
|
11238 |
-
"version": "v6",
|
11239 |
-
"lastModified": "2014-01-07",
|
11240 |
-
"files": {
|
11241 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/tinos/v6/EqpUbkVmutfwZ0PjpoGwCg.ttf",
|
11242 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/tinos/v6/slfyzlasCr9vTsaP4lUh9A.ttf",
|
11243 |
-
"700": "http://themes.googleusercontent.com/static/fonts/tinos/v6/vHXfhX8jZuQruowfon93yQ.ttf",
|
11244 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/tinos/v6/M6kfzvDMM0CdxdraoFpG6vesZW2xOQ-xsNqO47m55DA.ttf"
|
11245 |
-
}
|
11246 |
-
},
|
11247 |
-
{
|
11248 |
-
"kind": "webfonts#webfont",
|
11249 |
-
"family": "Titan One",
|
11250 |
-
"category": "display",
|
11251 |
-
"variants": [
|
11252 |
-
"regular"
|
11253 |
-
],
|
11254 |
-
"subsets": [
|
11255 |
-
"latin",
|
11256 |
-
"latin-ext"
|
11257 |
-
],
|
11258 |
-
"version": "v2",
|
11259 |
-
"lastModified": "2014-01-07",
|
11260 |
-
"files": {
|
11261 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/titanone/v2/FbvpRvzfV_oipS0De3iAZg.ttf"
|
11262 |
-
}
|
11263 |
-
},
|
11264 |
-
{
|
11265 |
-
"kind": "webfonts#webfont",
|
11266 |
-
"family": "Titillium Web",
|
11267 |
-
"category": "sans-serif",
|
11268 |
-
"variants": [
|
11269 |
-
"200",
|
11270 |
-
"200italic",
|
11271 |
-
"300",
|
11272 |
-
"300italic",
|
11273 |
-
"regular",
|
11274 |
-
"italic",
|
11275 |
-
"600",
|
11276 |
-
"600italic",
|
11277 |
-
"700",
|
11278 |
-
"700italic",
|
11279 |
-
"900"
|
11280 |
-
],
|
11281 |
-
"subsets": [
|
11282 |
-
"latin",
|
11283 |
-
"latin-ext"
|
11284 |
-
],
|
11285 |
-
"version": "v2",
|
11286 |
-
"lastModified": "2014-01-07",
|
11287 |
-
"files": {
|
11288 |
-
"200": "http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/anMUvcNT0H1YN4FII8wprzOdCrLccoxq42eaxM802O0.ttf",
|
11289 |
-
"200italic": "http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/RZunN20OBmkvrU7sA4GPPj4N98U-66ThNJvtgddRfBE.ttf",
|
11290 |
-
"300": "http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/anMUvcNT0H1YN4FII8wpr9ZAkYT8DuUZELiKLwMGWAo.ttf",
|
11291 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/RZunN20OBmkvrU7sA4GPPrfzCkqg7ORZlRf2cc4mXu8.ttf",
|
11292 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/7XUFZ5tgS-tD6QamInJTcTyagQBwYgYywpS70xNq8SQ.ttf",
|
11293 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/r9OmwyQxrgzUAhaLET_KO-ixohbIP6lHkU-1Mgq95cY.ttf",
|
11294 |
-
"600": "http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/anMUvcNT0H1YN4FII8wpr28K9dEd5Ue-HTQrlA7E2xQ.ttf",
|
11295 |
-
"600italic": "http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/RZunN20OBmkvrU7sA4GPPgOhzTSndyK8UWja2yJjKLc.ttf",
|
11296 |
-
"700": "http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/anMUvcNT0H1YN4FII8wpr2-6tpSbB9YhmWtmd1_gi_U.ttf",
|
11297 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/RZunN20OBmkvrU7sA4GPPio3LEw-4MM8Ao2j9wPOfpw.ttf",
|
11298 |
-
"900": "http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/anMUvcNT0H1YN4FII8wpr7L0GmZLri-m-nfoo0Vul4Y.ttf"
|
11299 |
-
}
|
11300 |
-
},
|
11301 |
-
{
|
11302 |
-
"kind": "webfonts#webfont",
|
11303 |
-
"family": "Trade Winds",
|
11304 |
-
"category": "display",
|
11305 |
-
"variants": [
|
11306 |
-
"regular"
|
11307 |
-
],
|
11308 |
-
"subsets": [
|
11309 |
-
"latin"
|
11310 |
-
],
|
11311 |
-
"version": "v3",
|
11312 |
-
"lastModified": "2014-01-07",
|
11313 |
-
"files": {
|
11314 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/tradewinds/v3/sDOCVgAxw6PEUi2xdMsoDaCWcynf_cDxXwCLxiixG1c.ttf"
|
11315 |
-
}
|
11316 |
-
},
|
11317 |
-
{
|
11318 |
-
"kind": "webfonts#webfont",
|
11319 |
-
"family": "Trocchi",
|
11320 |
-
"category": "serif",
|
11321 |
-
"variants": [
|
11322 |
-
"regular"
|
11323 |
-
],
|
11324 |
-
"subsets": [
|
11325 |
-
"latin",
|
11326 |
-
"latin-ext"
|
11327 |
-
],
|
11328 |
-
"version": "v2",
|
11329 |
-
"lastModified": "2014-01-07",
|
11330 |
-
"files": {
|
11331 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/trocchi/v2/uldNPaKrUGVeGCVsmacLwA.ttf"
|
11332 |
-
}
|
11333 |
-
},
|
11334 |
-
{
|
11335 |
-
"kind": "webfonts#webfont",
|
11336 |
-
"family": "Trochut",
|
11337 |
-
"category": "display",
|
11338 |
-
"variants": [
|
11339 |
-
"regular",
|
11340 |
-
"italic",
|
11341 |
-
"700"
|
11342 |
-
],
|
11343 |
-
"subsets": [
|
11344 |
-
"latin"
|
11345 |
-
],
|
11346 |
-
"version": "v2",
|
11347 |
-
"lastModified": "2014-01-07",
|
11348 |
-
"files": {
|
11349 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/trochut/v2/6Y65B0x-2JsnYt16OH5omw.ttf",
|
11350 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/trochut/v2/pczUwr4ZFvC79TgNO5cZng.ttf",
|
11351 |
-
"700": "http://themes.googleusercontent.com/static/fonts/trochut/v2/lWqNOv6ISR8ehNzGLFLnJ_esZW2xOQ-xsNqO47m55DA.ttf"
|
11352 |
-
}
|
11353 |
-
},
|
11354 |
-
{
|
11355 |
-
"kind": "webfonts#webfont",
|
11356 |
-
"family": "Trykker",
|
11357 |
-
"category": "serif",
|
11358 |
-
"variants": [
|
11359 |
-
"regular"
|
11360 |
-
],
|
11361 |
-
"subsets": [
|
11362 |
-
"latin",
|
11363 |
-
"latin-ext"
|
11364 |
-
],
|
11365 |
-
"version": "v3",
|
11366 |
-
"lastModified": "2014-01-07",
|
11367 |
-
"files": {
|
11368 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/trykker/v3/YiVrVJpBFN7I1l_CWk6yYQ.ttf"
|
11369 |
-
}
|
11370 |
-
},
|
11371 |
-
{
|
11372 |
-
"kind": "webfonts#webfont",
|
11373 |
-
"family": "Tulpen One",
|
11374 |
-
"category": "display",
|
11375 |
-
"variants": [
|
11376 |
-
"regular"
|
11377 |
-
],
|
11378 |
-
"subsets": [
|
11379 |
-
"latin"
|
11380 |
-
],
|
11381 |
-
"version": "v4",
|
11382 |
-
"lastModified": "2014-01-07",
|
11383 |
-
"files": {
|
11384 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/tulpenone/v4/lwcTfVIEVxpZLZlWzR5baPesZW2xOQ-xsNqO47m55DA.ttf"
|
11385 |
-
}
|
11386 |
-
},
|
11387 |
-
{
|
11388 |
-
"kind": "webfonts#webfont",
|
11389 |
-
"family": "Ubuntu",
|
11390 |
-
"category": "sans-serif",
|
11391 |
-
"variants": [
|
11392 |
-
"300",
|
11393 |
-
"300italic",
|
11394 |
-
"regular",
|
11395 |
-
"italic",
|
11396 |
-
"500",
|
11397 |
-
"500italic",
|
11398 |
-
"700",
|
11399 |
-
"700italic"
|
11400 |
-
],
|
11401 |
-
"subsets": [
|
11402 |
-
"latin",
|
11403 |
-
"greek",
|
11404 |
-
"cyrillic",
|
11405 |
-
"cyrillic-ext",
|
11406 |
-
"latin-ext",
|
11407 |
-
"greek-ext"
|
11408 |
-
],
|
11409 |
-
"version": "v5",
|
11410 |
-
"lastModified": "2014-01-07",
|
11411 |
-
"files": {
|
11412 |
-
"300": "http://themes.googleusercontent.com/static/fonts/ubuntu/v5/7-wH0j2QCTHKgp7vLh9-sQ.ttf",
|
11413 |
-
"300italic": "http://themes.googleusercontent.com/static/fonts/ubuntu/v5/j-TYDdXcC_eQzhhp386SjaCWcynf_cDxXwCLxiixG1c.ttf",
|
11414 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ubuntu/v5/lhhB5ZCwEkBRbHMSnYuKyA.ttf",
|
11415 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/ubuntu/v5/b9hP8wd30SygxZjGGk4DCQ.ttf",
|
11416 |
-
"500": "http://themes.googleusercontent.com/static/fonts/ubuntu/v5/bMbHEMwSUmkzcK2x_74QbA.ttf",
|
11417 |
-
"500italic": "http://themes.googleusercontent.com/static/fonts/ubuntu/v5/NWdMogIO7U6AtEM4dDdf_aCWcynf_cDxXwCLxiixG1c.ttf",
|
11418 |
-
"700": "http://themes.googleusercontent.com/static/fonts/ubuntu/v5/B7BtHjNYwAp3HgLNagENOQ.ttf",
|
11419 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/ubuntu/v5/pqisLQoeO9YTDCNnlQ9bf6CWcynf_cDxXwCLxiixG1c.ttf"
|
11420 |
-
}
|
11421 |
-
},
|
11422 |
-
{
|
11423 |
-
"kind": "webfonts#webfont",
|
11424 |
-
"family": "Ubuntu Condensed",
|
11425 |
-
"category": "sans-serif",
|
11426 |
-
"variants": [
|
11427 |
-
"regular"
|
11428 |
-
],
|
11429 |
-
"subsets": [
|
11430 |
-
"latin",
|
11431 |
-
"greek",
|
11432 |
-
"cyrillic",
|
11433 |
-
"cyrillic-ext",
|
11434 |
-
"latin-ext",
|
11435 |
-
"greek-ext"
|
11436 |
-
],
|
11437 |
-
"version": "v4",
|
11438 |
-
"lastModified": "2014-01-07",
|
11439 |
-
"files": {
|
11440 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ubuntucondensed/v4/DBCt-NXN57MTAFjitYxdrKDbm6fPDOZJsR8PmdG62gY.ttf"
|
11441 |
-
}
|
11442 |
-
},
|
11443 |
-
{
|
11444 |
-
"kind": "webfonts#webfont",
|
11445 |
-
"family": "Ubuntu Mono",
|
11446 |
-
"category": "monospace",
|
11447 |
-
"variants": [
|
11448 |
-
"regular",
|
11449 |
-
"italic",
|
11450 |
-
"700",
|
11451 |
-
"700italic"
|
11452 |
-
],
|
11453 |
-
"subsets": [
|
11454 |
-
"latin",
|
11455 |
-
"greek",
|
11456 |
-
"cyrillic",
|
11457 |
-
"cyrillic-ext",
|
11458 |
-
"latin-ext",
|
11459 |
-
"greek-ext"
|
11460 |
-
],
|
11461 |
-
"version": "v4",
|
11462 |
-
"lastModified": "2014-03-18",
|
11463 |
-
"files": {
|
11464 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ubuntumono/v4/EgeuS9OtEmA0y_JRo03MQaCWcynf_cDxXwCLxiixG1c.ttf",
|
11465 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/ubuntumono/v4/KAKuHXAHZOeECOWAHsRKA0eOrDcLawS7-ssYqLr2Xp4.ttf",
|
11466 |
-
"700": "http://themes.googleusercontent.com/static/fonts/ubuntumono/v4/ceqTZGKHipo8pJj4molytne1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
11467 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/ubuntumono/v4/n_d8tv_JOIiYyMXR4eaV9c_zJjSACmk0BRPxQqhnNLU.ttf"
|
11468 |
-
}
|
11469 |
-
},
|
11470 |
-
{
|
11471 |
-
"kind": "webfonts#webfont",
|
11472 |
-
"family": "Ultra",
|
11473 |
-
"category": "serif",
|
11474 |
-
"variants": [
|
11475 |
-
"regular"
|
11476 |
-
],
|
11477 |
-
"subsets": [
|
11478 |
-
"latin"
|
11479 |
-
],
|
11480 |
-
"version": "v5",
|
11481 |
-
"lastModified": "2014-01-07",
|
11482 |
-
"files": {
|
11483 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/ultra/v5/OW8uXkOstRADuhEmGOFQLA.ttf"
|
11484 |
-
}
|
11485 |
-
},
|
11486 |
-
{
|
11487 |
-
"kind": "webfonts#webfont",
|
11488 |
-
"family": "Uncial Antiqua",
|
11489 |
-
"category": "display",
|
11490 |
-
"variants": [
|
11491 |
-
"regular"
|
11492 |
-
],
|
11493 |
-
"subsets": [
|
11494 |
-
"latin"
|
11495 |
-
],
|
11496 |
-
"version": "v2",
|
11497 |
-
"lastModified": "2014-01-07",
|
11498 |
-
"files": {
|
11499 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/uncialantiqua/v2/F-leefDiFwQXsyd6eaSllqrFJ4O13IHVxZbM6yoslpo.ttf"
|
11500 |
-
}
|
11501 |
-
},
|
11502 |
-
{
|
11503 |
-
"kind": "webfonts#webfont",
|
11504 |
-
"family": "Underdog",
|
11505 |
-
"category": "display",
|
11506 |
-
"variants": [
|
11507 |
-
"regular"
|
11508 |
-
],
|
11509 |
-
"subsets": [
|
11510 |
-
"latin",
|
11511 |
-
"cyrillic",
|
11512 |
-
"latin-ext"
|
11513 |
-
],
|
11514 |
-
"version": "v2",
|
11515 |
-
"lastModified": "2014-01-07",
|
11516 |
-
"files": {
|
11517 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/underdog/v2/gBv9yjez_-5PnTprHWq0ig.ttf"
|
11518 |
-
}
|
11519 |
-
},
|
11520 |
-
{
|
11521 |
-
"kind": "webfonts#webfont",
|
11522 |
-
"family": "Unica One",
|
11523 |
-
"category": "display",
|
11524 |
-
"variants": [
|
11525 |
-
"regular"
|
11526 |
-
],
|
11527 |
-
"subsets": [
|
11528 |
-
"latin",
|
11529 |
-
"latin-ext"
|
11530 |
-
],
|
11531 |
-
"version": "v2",
|
11532 |
-
"lastModified": "2014-01-07",
|
11533 |
-
"files": {
|
11534 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/unicaone/v2/KbYKlhWMDpatWViqDkNQgA.ttf"
|
11535 |
-
}
|
11536 |
-
},
|
11537 |
-
{
|
11538 |
-
"kind": "webfonts#webfont",
|
11539 |
-
"family": "UnifrakturCook",
|
11540 |
-
"category": "display",
|
11541 |
-
"variants": [
|
11542 |
-
"700"
|
11543 |
-
],
|
11544 |
-
"subsets": [
|
11545 |
-
"latin"
|
11546 |
-
],
|
11547 |
-
"version": "v6",
|
11548 |
-
"lastModified": "2014-01-07",
|
11549 |
-
"files": {
|
11550 |
-
"700": "http://themes.googleusercontent.com/static/fonts/unifrakturcook/v6/ASwh69ykD8iaoYijVEU6RrWZkcsCTHKV51zmcUsafQ0.ttf"
|
11551 |
-
}
|
11552 |
-
},
|
11553 |
-
{
|
11554 |
-
"kind": "webfonts#webfont",
|
11555 |
-
"family": "UnifrakturMaguntia",
|
11556 |
-
"category": "display",
|
11557 |
-
"variants": [
|
11558 |
-
"regular"
|
11559 |
-
],
|
11560 |
-
"subsets": [
|
11561 |
-
"latin"
|
11562 |
-
],
|
11563 |
-
"version": "v5",
|
11564 |
-
"lastModified": "2014-01-07",
|
11565 |
-
"files": {
|
11566 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/unifrakturmaguntia/v5/7KWy3ymCVR_xfAvvcIXm3-kdNg30GQauG_DE-tMYtWk.ttf"
|
11567 |
-
}
|
11568 |
-
},
|
11569 |
-
{
|
11570 |
-
"kind": "webfonts#webfont",
|
11571 |
-
"family": "Unkempt",
|
11572 |
-
"category": "display",
|
11573 |
-
"variants": [
|
11574 |
-
"regular",
|
11575 |
-
"700"
|
11576 |
-
],
|
11577 |
-
"subsets": [
|
11578 |
-
"latin"
|
11579 |
-
],
|
11580 |
-
"version": "v5",
|
11581 |
-
"lastModified": "2014-01-07",
|
11582 |
-
"files": {
|
11583 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/unkempt/v5/NLLBeNSspr0RGs71R5LHWA.ttf",
|
11584 |
-
"700": "http://themes.googleusercontent.com/static/fonts/unkempt/v5/V7H-GCl9bgwGwqFqTTgDHvesZW2xOQ-xsNqO47m55DA.ttf"
|
11585 |
-
}
|
11586 |
-
},
|
11587 |
-
{
|
11588 |
-
"kind": "webfonts#webfont",
|
11589 |
-
"family": "Unlock",
|
11590 |
-
"category": "display",
|
11591 |
-
"variants": [
|
11592 |
-
"regular"
|
11593 |
-
],
|
11594 |
-
"subsets": [
|
11595 |
-
"latin"
|
11596 |
-
],
|
11597 |
-
"version": "v4",
|
11598 |
-
"lastModified": "2014-01-07",
|
11599 |
-
"files": {
|
11600 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/unlock/v4/rXEQzK7uIAlhoyoAEiMy1w.ttf"
|
11601 |
-
}
|
11602 |
-
},
|
11603 |
-
{
|
11604 |
-
"kind": "webfonts#webfont",
|
11605 |
-
"family": "Unna",
|
11606 |
-
"category": "serif",
|
11607 |
-
"variants": [
|
11608 |
-
"regular"
|
11609 |
-
],
|
11610 |
-
"subsets": [
|
11611 |
-
"latin"
|
11612 |
-
],
|
11613 |
-
"version": "v6",
|
11614 |
-
"lastModified": "2014-01-07",
|
11615 |
-
"files": {
|
11616 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/unna/v6/UAS0AM7AmbdCNY_80xyAZQ.ttf"
|
11617 |
-
}
|
11618 |
-
},
|
11619 |
-
{
|
11620 |
-
"kind": "webfonts#webfont",
|
11621 |
-
"family": "VT323",
|
11622 |
-
"category": "monospace",
|
11623 |
-
"variants": [
|
11624 |
-
"regular"
|
11625 |
-
],
|
11626 |
-
"subsets": [
|
11627 |
-
"latin"
|
11628 |
-
],
|
11629 |
-
"version": "v5",
|
11630 |
-
"lastModified": "2014-03-18",
|
11631 |
-
"files": {
|
11632 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/vt323/v5/ITU2YQfM073o1iYK3nSOmQ.ttf"
|
11633 |
-
}
|
11634 |
-
},
|
11635 |
-
{
|
11636 |
-
"kind": "webfonts#webfont",
|
11637 |
-
"family": "Vampiro One",
|
11638 |
-
"category": "display",
|
11639 |
-
"variants": [
|
11640 |
-
"regular"
|
11641 |
-
],
|
11642 |
-
"subsets": [
|
11643 |
-
"latin",
|
11644 |
-
"latin-ext"
|
11645 |
-
],
|
11646 |
-
"version": "v3",
|
11647 |
-
"lastModified": "2014-01-07",
|
11648 |
-
"files": {
|
11649 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/vampiroone/v3/OVDs4gY4WpS5u3Qd1gXRW6CWcynf_cDxXwCLxiixG1c.ttf"
|
11650 |
-
}
|
11651 |
-
},
|
11652 |
-
{
|
11653 |
-
"kind": "webfonts#webfont",
|
11654 |
-
|
11655 |
-
"family": "Varela",
|
11656 |
-
"category": "sans-serif",
|
11657 |
-
"variants": [
|
11658 |
-
"regular"
|
11659 |
-
],
|
11660 |
-
"subsets": [
|
11661 |
-
"latin",
|
11662 |
-
"latin-ext"
|
11663 |
-
],
|
11664 |
-
"version": "v5",
|
11665 |
-
"lastModified": "2014-01-07",
|
11666 |
-
"files": {
|
11667 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/varela/v5/ON7qs0cKUUixhhDFXlZUjw.ttf"
|
11668 |
-
}
|
11669 |
-
},
|
11670 |
-
{
|
11671 |
-
"kind": "webfonts#webfont",
|
11672 |
-
"family": "Varela Round",
|
11673 |
-
"category": "sans-serif",
|
11674 |
-
"variants": [
|
11675 |
-
"regular"
|
11676 |
-
],
|
11677 |
-
"subsets": [
|
11678 |
-
"latin"
|
11679 |
-
],
|
11680 |
-
"version": "v4",
|
11681 |
-
"lastModified": "2014-01-07",
|
11682 |
-
"files": {
|
11683 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/varelaround/v4/APH4jr0uSos5wiut5cpjri3USBnSvpkopQaUR-2r7iU.ttf"
|
11684 |
-
}
|
11685 |
-
},
|
11686 |
-
{
|
11687 |
-
"kind": "webfonts#webfont",
|
11688 |
-
"family": "Vast Shadow",
|
11689 |
-
"category": "display",
|
11690 |
-
"variants": [
|
11691 |
-
"regular"
|
11692 |
-
],
|
11693 |
-
"subsets": [
|
11694 |
-
"latin"
|
11695 |
-
],
|
11696 |
-
"version": "v4",
|
11697 |
-
"lastModified": "2014-01-07",
|
11698 |
-
"files": {
|
11699 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/vastshadow/v4/io4hqKX3ibiqQQjYfW0-h6CWcynf_cDxXwCLxiixG1c.ttf"
|
11700 |
-
}
|
11701 |
-
},
|
11702 |
-
{
|
11703 |
-
"kind": "webfonts#webfont",
|
11704 |
-
"family": "Vibur",
|
11705 |
-
"category": "handwriting",
|
11706 |
-
"variants": [
|
11707 |
-
"regular"
|
11708 |
-
],
|
11709 |
-
"subsets": [
|
11710 |
-
"latin"
|
11711 |
-
],
|
11712 |
-
"version": "v5",
|
11713 |
-
"lastModified": "2014-01-07",
|
11714 |
-
"files": {
|
11715 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/vibur/v5/xB9aKsUbJo68XP0bAg2iLw.ttf"
|
11716 |
-
}
|
11717 |
-
},
|
11718 |
-
{
|
11719 |
-
"kind": "webfonts#webfont",
|
11720 |
-
"family": "Vidaloka",
|
11721 |
-
"category": "serif",
|
11722 |
-
"variants": [
|
11723 |
-
"regular"
|
11724 |
-
],
|
11725 |
-
"subsets": [
|
11726 |
-
"latin"
|
11727 |
-
],
|
11728 |
-
"version": "v6",
|
11729 |
-
"lastModified": "2014-01-07",
|
11730 |
-
"files": {
|
11731 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/vidaloka/v6/C6Nul0ogKUWkx356rrt9RA.ttf"
|
11732 |
-
}
|
11733 |
-
},
|
11734 |
-
{
|
11735 |
-
"kind": "webfonts#webfont",
|
11736 |
-
"family": "Viga",
|
11737 |
-
"category": "sans-serif",
|
11738 |
-
"variants": [
|
11739 |
-
"regular"
|
11740 |
-
],
|
11741 |
-
"subsets": [
|
11742 |
-
"latin",
|
11743 |
-
"latin-ext"
|
11744 |
-
],
|
11745 |
-
"version": "v3",
|
11746 |
-
"lastModified": "2014-01-07",
|
11747 |
-
"files": {
|
11748 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/viga/v3/uD87gDbhS7frHLX4uL6agg.ttf"
|
11749 |
-
}
|
11750 |
-
},
|
11751 |
-
{
|
11752 |
-
"kind": "webfonts#webfont",
|
11753 |
-
"family": "Voces",
|
11754 |
-
"category": "display",
|
11755 |
-
"variants": [
|
11756 |
-
"regular"
|
11757 |
-
],
|
11758 |
-
"subsets": [
|
11759 |
-
"latin",
|
11760 |
-
"latin-ext"
|
11761 |
-
],
|
11762 |
-
"version": "v2",
|
11763 |
-
"lastModified": "2014-01-07",
|
11764 |
-
"files": {
|
11765 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/voces/v2/QoBH6g6yKgNIgvL8A2aE2Q.ttf"
|
11766 |
-
}
|
11767 |
-
},
|
11768 |
-
{
|
11769 |
-
"kind": "webfonts#webfont",
|
11770 |
-
"family": "Volkhov",
|
11771 |
-
"category": "serif",
|
11772 |
-
"variants": [
|
11773 |
-
"regular",
|
11774 |
-
"italic",
|
11775 |
-
"700",
|
11776 |
-
"700italic"
|
11777 |
-
],
|
11778 |
-
"subsets": [
|
11779 |
-
"latin"
|
11780 |
-
],
|
11781 |
-
"version": "v6",
|
11782 |
-
"lastModified": "2014-01-07",
|
11783 |
-
"files": {
|
11784 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/volkhov/v6/MDIZAofe1T_J3un5Kgo8zg.ttf",
|
11785 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/volkhov/v6/1rTjmztKEpbkKH06JwF8Yw.ttf",
|
11786 |
-
"700": "http://themes.googleusercontent.com/static/fonts/volkhov/v6/L8PbKS-kEoLHm7nP--NCzPesZW2xOQ-xsNqO47m55DA.ttf",
|
11787 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/volkhov/v6/W6oG0QDDjCgj0gmsHE520C3USBnSvpkopQaUR-2r7iU.ttf"
|
11788 |
-
}
|
11789 |
-
},
|
11790 |
-
{
|
11791 |
-
"kind": "webfonts#webfont",
|
11792 |
-
"family": "Vollkorn",
|
11793 |
-
"category": "serif",
|
11794 |
-
"variants": [
|
11795 |
-
"regular",
|
11796 |
-
"italic",
|
11797 |
-
"700",
|
11798 |
-
"700italic"
|
11799 |
-
],
|
11800 |
-
"subsets": [
|
11801 |
-
"latin"
|
11802 |
-
],
|
11803 |
-
"version": "v4",
|
11804 |
-
"lastModified": "2014-01-07",
|
11805 |
-
"files": {
|
11806 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/vollkorn/v4/IiexqYAeh8uII223thYx3w.ttf",
|
11807 |
-
"italic": "http://themes.googleusercontent.com/static/fonts/vollkorn/v4/UuIzosgR1ovBhJFdwVp3fvesZW2xOQ-xsNqO47m55DA.ttf",
|
11808 |
-
"700": "http://themes.googleusercontent.com/static/fonts/vollkorn/v4/gOwQjJVGXlDOONC12hVoBqCWcynf_cDxXwCLxiixG1c.ttf",
|
11809 |
-
"700italic": "http://themes.googleusercontent.com/static/fonts/vollkorn/v4/KNiAlx6phRqXCwnZZG51JAJKKGfqHaYFsRG-T3ceEVo.ttf"
|
11810 |
-
}
|
11811 |
-
},
|
11812 |
-
{
|
11813 |
-
"kind": "webfonts#webfont",
|
11814 |
-
"family": "Voltaire",
|
11815 |
-
"category": "sans-serif",
|
11816 |
-
"variants": [
|
11817 |
-
"regular"
|
11818 |
-
],
|
11819 |
-
"subsets": [
|
11820 |
-
"latin"
|
11821 |
-
],
|
11822 |
-
"version": "v4",
|
11823 |
-
"lastModified": "2014-01-07",
|
11824 |
-
"files": {
|
11825 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/voltaire/v4/WvqBzaGEBbRV-hrahwO2cA.ttf"
|
11826 |
-
}
|
11827 |
-
},
|
11828 |
-
{
|
11829 |
-
"kind": "webfonts#webfont",
|
11830 |
-
"family": "Waiting for the Sunrise",
|
11831 |
-
"category": "handwriting",
|
11832 |
-
"variants": [
|
11833 |
-
"regular"
|
11834 |
-
],
|
11835 |
-
"subsets": [
|
11836 |
-
"latin"
|
11837 |
-
],
|
11838 |
-
"version": "v5",
|
11839 |
-
"lastModified": "2014-01-07",
|
11840 |
-
"files": {
|
11841 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/waitingforthesunrise/v5/eNfH7kLpF1PZWpsetF-ha9TChrNgrDiT3Zy6yGf3FnM.ttf"
|
11842 |
-
}
|
11843 |
-
},
|
11844 |
-
{
|
11845 |
-
"kind": "webfonts#webfont",
|
11846 |
-
"family": "Wallpoet",
|
11847 |
-
"category": "display",
|
11848 |
-
"variants": [
|
11849 |
-
"regular"
|
11850 |
-
],
|
11851 |
-
"subsets": [
|
11852 |
-
"latin"
|
11853 |
-
],
|
11854 |
-
"version": "v5",
|
11855 |
-
"lastModified": "2014-01-07",
|
11856 |
-
"files": {
|
11857 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/wallpoet/v5/hmum4WuBN4A0Z_7367NDIg.ttf"
|
11858 |
-
}
|
11859 |
-
},
|
11860 |
-
{
|
11861 |
-
"kind": "webfonts#webfont",
|
11862 |
-
"family": "Walter Turncoat",
|
11863 |
-
"category": "handwriting",
|
11864 |
-
"variants": [
|
11865 |
-
"regular"
|
11866 |
-
],
|
11867 |
-
"subsets": [
|
11868 |
-
"latin"
|
11869 |
-
],
|
11870 |
-
"version": "v4",
|
11871 |
-
"lastModified": "2014-01-07",
|
11872 |
-
"files": {
|
11873 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/walterturncoat/v4/sG9su5g4GXy1KP73cU3hvQplL2YwNeota48DxFlGDUo.ttf"
|
11874 |
-
}
|
11875 |
-
},
|
11876 |
-
{
|
11877 |
-
"kind": "webfonts#webfont",
|
11878 |
-
"family": "Warnes",
|
11879 |
-
"category": "display",
|
11880 |
-
"variants": [
|
11881 |
-
"regular"
|
11882 |
-
],
|
11883 |
-
"subsets": [
|
11884 |
-
"latin",
|
11885 |
-
"latin-ext"
|
11886 |
-
],
|
11887 |
-
"version": "v3",
|
11888 |
-
"lastModified": "2014-01-07",
|
11889 |
-
"files": {
|
11890 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/warnes/v3/MXG7_Phj4YpzAXxKGItuBw.ttf"
|
11891 |
-
}
|
11892 |
-
},
|
11893 |
-
{
|
11894 |
-
"kind": "webfonts#webfont",
|
11895 |
-
"family": "Wellfleet",
|
11896 |
-
"category": "display",
|
11897 |
-
"variants": [
|
11898 |
-
"regular"
|
11899 |
-
],
|
11900 |
-
"subsets": [
|
11901 |
-
"latin",
|
11902 |
-
"latin-ext"
|
11903 |
-
],
|
11904 |
-
"version": "v2",
|
11905 |
-
"lastModified": "2014-01-07",
|
11906 |
-
"files": {
|
11907 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/wellfleet/v2/J5tOx72iFRPgHYpbK9J4XQ.ttf"
|
11908 |
-
}
|
11909 |
-
},
|
11910 |
-
{
|
11911 |
-
"kind": "webfonts#webfont",
|
11912 |
-
"family": "Wendy One",
|
11913 |
-
"category": "sans-serif",
|
11914 |
-
"variants": [
|
11915 |
-
"regular"
|
11916 |
-
],
|
11917 |
-
"subsets": [
|
11918 |
-
"latin",
|
11919 |
-
"latin-ext"
|
11920 |
-
],
|
11921 |
-
"version": "v2",
|
11922 |
-
"lastModified": "2014-01-07",
|
11923 |
-
"files": {
|
11924 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/wendyone/v2/R8CJT2oDXdMk_ZtuHTxoxw.ttf"
|
11925 |
-
}
|
11926 |
-
},
|
11927 |
-
{
|
11928 |
-
"kind": "webfonts#webfont",
|
11929 |
-
"family": "Wire One",
|
11930 |
-
"category": "sans-serif",
|
11931 |
-
"variants": [
|
11932 |
-
"regular"
|
11933 |
-
],
|
11934 |
-
"subsets": [
|
11935 |
-
"latin"
|
11936 |
-
],
|
11937 |
-
"version": "v4",
|
11938 |
-
"lastModified": "2014-01-07",
|
11939 |
-
"files": {
|
11940 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/wireone/v4/sRLhaQOQpWnvXwIx0CycQw.ttf"
|
11941 |
-
}
|
11942 |
-
},
|
11943 |
-
{
|
11944 |
-
"kind": "webfonts#webfont",
|
11945 |
-
"family": "Yanone Kaffeesatz",
|
11946 |
-
"category": "sans-serif",
|
11947 |
-
"variants": [
|
11948 |
-
"200",
|
11949 |
-
"300",
|
11950 |
-
"regular",
|
11951 |
-
"700"
|
11952 |
-
],
|
11953 |
-
"subsets": [
|
11954 |
-
"latin",
|
11955 |
-
"latin-ext"
|
11956 |
-
],
|
11957 |
-
"version": "v5",
|
11958 |
-
"lastModified": "2014-01-07",
|
11959 |
-
"files": {
|
11960 |
-
"200": "http://themes.googleusercontent.com/static/fonts/yanonekaffeesatz/v5/We_iSDqttE3etzfdfhuPRbq92v6XxU4pSv06GI0NsGc.ttf",
|
11961 |
-
"300": "http://themes.googleusercontent.com/static/fonts/yanonekaffeesatz/v5/We_iSDqttE3etzfdfhuPRZlIwXPiNoNT_wxzJ2t3mTE.ttf",
|
11962 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/yanonekaffeesatz/v5/YDAoLskQQ5MOAgvHUQCcLdXn3cHbFGWU4T2HrSN6JF4.ttf",
|
11963 |
-
"700": "http://themes.googleusercontent.com/static/fonts/yanonekaffeesatz/v5/We_iSDqttE3etzfdfhuPRf2R4S6PlKaGXWPfWpHpcl0.ttf"
|
11964 |
-
}
|
11965 |
-
},
|
11966 |
-
{
|
11967 |
-
"kind": "webfonts#webfont",
|
11968 |
-
"family": "Yellowtail",
|
11969 |
-
"category": "handwriting",
|
11970 |
-
"variants": [
|
11971 |
-
"regular"
|
11972 |
-
],
|
11973 |
-
"subsets": [
|
11974 |
-
"latin"
|
11975 |
-
],
|
11976 |
-
"version": "v4",
|
11977 |
-
"lastModified": "2014-01-07",
|
11978 |
-
"files": {
|
11979 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/yellowtail/v4/HLrU6lhCTjXfLZ7X60LcB_esZW2xOQ-xsNqO47m55DA.ttf"
|
11980 |
-
}
|
11981 |
-
},
|
11982 |
-
{
|
11983 |
-
"kind": "webfonts#webfont",
|
11984 |
-
"family": "Yeseva One",
|
11985 |
-
"category": "display",
|
11986 |
-
"variants": [
|
11987 |
-
"regular"
|
11988 |
-
],
|
11989 |
-
"subsets": [
|
11990 |
-
"latin",
|
11991 |
-
"cyrillic",
|
11992 |
-
"latin-ext"
|
11993 |
-
],
|
11994 |
-
"version": "v7",
|
11995 |
-
"lastModified": "2014-01-07",
|
11996 |
-
"files": {
|
11997 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/yesevaone/v7/eenQQxvpzSA80JmisGcgX_esZW2xOQ-xsNqO47m55DA.ttf"
|
11998 |
-
}
|
11999 |
-
},
|
12000 |
-
{
|
12001 |
-
"kind": "webfonts#webfont",
|
12002 |
-
"family": "Yesteryear",
|
12003 |
-
"category": "handwriting",
|
12004 |
-
"variants": [
|
12005 |
-
"regular"
|
12006 |
-
],
|
12007 |
-
"subsets": [
|
12008 |
-
"latin"
|
12009 |
-
],
|
12010 |
-
"version": "v3",
|
12011 |
-
"lastModified": "2014-01-07",
|
12012 |
-
"files": {
|
12013 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/yesteryear/v3/dv09hP_ZrdjVOfZQXKXuZvesZW2xOQ-xsNqO47m55DA.ttf"
|
12014 |
-
}
|
12015 |
-
},
|
12016 |
-
{
|
12017 |
-
"kind": "webfonts#webfont",
|
12018 |
-
"family": "Zeyada",
|
12019 |
-
"category": "handwriting",
|
12020 |
-
"variants": [
|
12021 |
-
"regular"
|
12022 |
-
],
|
12023 |
-
"subsets": [
|
12024 |
-
"latin"
|
12025 |
-
],
|
12026 |
-
"version": "v4",
|
12027 |
-
"lastModified": "2014-01-07",
|
12028 |
-
"files": {
|
12029 |
-
"regular": "http://themes.googleusercontent.com/static/fonts/zeyada/v4/hmonmGYYFwqTZQfG2nRswQ.ttf"
|
12030 |
-
}
|
12031 |
-
}
|
12032 |
-
]
|
12033 |
-
}';
|
12034 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/magee-slider.php
DELETED
@@ -1,202 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
// slider
|
3 |
-
|
4 |
-
add_action('init', 'magee_slider_register');
|
5 |
-
function magee_slider_register() {
|
6 |
-
|
7 |
-
$labels = array(
|
8 |
-
'name' => __('Magee Slider','magee-shortcodes'),
|
9 |
-
'singular_name' => 'Magee Slider',
|
10 |
-
'add_new_item' => __('Add New Slider','magee-shortcodes'),
|
11 |
-
'edit_item' => __('Edit Slider', 'magee-shortcodes'),
|
12 |
-
'new_item' => __('New Slider', 'magee-shortcodes'),
|
13 |
-
'view_item' => '',
|
14 |
-
'all_items' => 'All Sliders',
|
15 |
-
'search_items' => __('Search Slider', 'magee-shortcodes'),
|
16 |
-
'not_found' => __('Nothing found', 'magee-shortcodes'),
|
17 |
-
'not_found_in_trash' => __('Nothing found in Trash', 'magee-shortcodes'),
|
18 |
-
);
|
19 |
-
|
20 |
-
$args = array(
|
21 |
-
'labels' => $labels,
|
22 |
-
'public' => false,
|
23 |
-
'show_ui' => true,
|
24 |
-
'menu_icon' => plugins_url( 'assets/images/menu-icon-slider.png',MAGEE_SHORTCODES_PATH ),
|
25 |
-
'can_export' => true,
|
26 |
-
'exclude_from_search' => true,
|
27 |
-
'capability_type' => 'post',
|
28 |
-
'hierarchical' => false,
|
29 |
-
'menu_position' => 8,
|
30 |
-
'rewrite' => array('slug' => 'slider'),
|
31 |
-
'supports' => array('title')
|
32 |
-
);
|
33 |
-
|
34 |
-
register_post_type( 'magee_slider' , $args );
|
35 |
-
}
|
36 |
-
|
37 |
-
add_action("admin_init", "magee_slider_init");
|
38 |
-
|
39 |
-
function magee_slider_init(){
|
40 |
-
add_meta_box("magee_slider_slides", "Slides", "magee_slider_slides", "magee_slider", "normal", "high");
|
41 |
-
}
|
42 |
-
|
43 |
-
function magee_slider_slides(){
|
44 |
-
global $post;
|
45 |
-
$custom = get_post_meta($post->ID);
|
46 |
-
$slider = array();
|
47 |
-
if(isset($custom["magee_custom_slider"][0]))
|
48 |
-
$slider = json_decode( $custom["magee_custom_slider"][0],true );
|
49 |
-
|
50 |
-
|
51 |
-
?>
|
52 |
-
<script>
|
53 |
-
jQuery(document).ready(function() {
|
54 |
-
var nextCell = 0;
|
55 |
-
jQuery(function() {
|
56 |
-
jQuery( "#magee-slider-items" ).sortable({placeholder: ".sort-item"});
|
57 |
-
});
|
58 |
-
|
59 |
-
function magee_custom_slider_uploader(field) {
|
60 |
-
var button = "#upload_"+field;
|
61 |
-
jQuery(button).click(function() {
|
62 |
-
window.restore_send_to_editor = window.send_to_editor;
|
63 |
-
tb_show('', 'media-upload.php?referer=magee-settings&type=image&TB_iframe=true&post_id=0');
|
64 |
-
magee_set_slider_img(field);
|
65 |
-
return false;
|
66 |
-
});
|
67 |
-
|
68 |
-
}
|
69 |
-
function magee_set_slider_img(field) {
|
70 |
-
window.send_to_editor = function(html) {
|
71 |
-
imgurl = jQuery('img',html).attr('src');
|
72 |
-
|
73 |
-
if(typeof imgurl == 'undefined')
|
74 |
-
imgurl = jQuery(html).attr('src');
|
75 |
-
|
76 |
-
classes = jQuery('img', html).attr('class');
|
77 |
-
if(typeof classes != 'undefined')
|
78 |
-
id = classes.replace(/(.*?)wp-image-/, '');
|
79 |
-
|
80 |
-
if(typeof classes == 'undefined'){
|
81 |
-
classes = jQuery(html).attr('class');
|
82 |
-
if(typeof classes != 'undefined')
|
83 |
-
id = classes.replace(/(.*?)wp-image-/, '');
|
84 |
-
}
|
85 |
-
|
86 |
-
jQuery('#magee-slider-items').append('<li id="listItem_'+ nextCell +'" class="ui-state-default" style="margin-bottom:10px;"><div class="widget-content option-item" style="margin:5px; padding:5px;"><div class="slider-img"><img src="'+imgurl+'" alt=""></div><label for="magee_custom_slider['+ nextCell +'][title]"><span>Slide Title :</span><input id="magee_custom_slider['+ nextCell +'][title]" name="magee_custom_slider['+ nextCell +'][title]" value="" type="text" /></label><label for="magee_custom_slider['+ nextCell +'][caption]"><span style="float:left" >Slide Caption :</span><textarea name="magee_custom_slider['+ nextCell +'][caption]" id="magee_custom_slider['+ nextCell +'][caption]"></textarea></label><input id="magee_custom_slider['+ nextCell +'][id]" name="magee_custom_slider['+ nextCell +'][id]" value="'+id+'" type="hidden" /><a class="sort-item">Sort</a><a class="del-item">Delete</a><div class="clear"></div></div><div class="clear"></div></li>');
|
87 |
-
|
88 |
-
nextCell ++ ;
|
89 |
-
tb_remove();
|
90 |
-
window.send_to_editor = window.restore_send_to_editor;
|
91 |
-
}
|
92 |
-
};
|
93 |
-
|
94 |
-
magee_custom_slider_uploader("add_slide");
|
95 |
-
|
96 |
-
jQuery(".del-item").live("click" , function() {
|
97 |
-
jQuery(this).parent().parent().addClass('removered').fadeOut(function() {
|
98 |
-
jQuery(this).remove();
|
99 |
-
});
|
100 |
-
});
|
101 |
-
|
102 |
-
});
|
103 |
-
|
104 |
-
</script>
|
105 |
-
<div style="width:100%; height:30px; text-align:right; padding-top:10px;">
|
106 |
-
<input type="hidden" name="magee-custom-slider" value="1">
|
107 |
-
<input id="upload_add_slide" type="button" class="options-save button-primary" value="Add New Slide">
|
108 |
-
</div>
|
109 |
-
|
110 |
-
<ul id="magee-slider-items">
|
111 |
-
<?php
|
112 |
-
$i=0;
|
113 |
-
if( is_array($slider) ){
|
114 |
-
|
115 |
-
foreach( $slider as $slide ):
|
116 |
-
$i++; ?>
|
117 |
-
<li id="listItem_<?php echo $i ?>" class="ui-state-default" style="margin-bottom:10px;">
|
118 |
-
<div class="widget-content option-item" style="margin:5px; padding:5px;">
|
119 |
-
<div class="slider-img"><?php echo wp_get_attachment_image( $slide['id'] , 'thumbnail' ); ?></div>
|
120 |
-
<label for="magee_custom_slider[<?php echo $i ?>][title]"><span><?php _e("Slide Title",'magee-shortcodes');?> :</span><input id="magee_custom_slider[<?php echo $i ?>][title]" name="magee_custom_slider[<?php echo $i ?>][title]" value="<?php echo esc_textarea(stripslashes( base64_decode($slide['title']) )); ?>" type="text" /></label>
|
121 |
-
|
122 |
-
<label for="magee_custom_slider[<?php echo $i ?>][caption]"><span style="float:left" ><?php _e("Slide Caption",'magee-shortcodes');?> :</span><textarea name="magee_custom_slider[<?php echo $i ?>][caption]" id="magee_custom_slider[<?php echo $i ?>][caption]"><?php echo esc_textarea(stripslashes(base64_decode($slide['caption']))) ; ?></textarea></label>
|
123 |
-
<input id="magee_custom_slider[<?php echo $i ?>][id]" name="magee_custom_slider[<?php echo $i ?>][id]" value="<?php echo $slide['id'] ?>" type="hidden" />
|
124 |
-
<a class="sort-item"><?php _e("Sort",'magee-shortcodes');?></a>
|
125 |
-
<a class="del-item"><?php _e("Delete",'magee-shortcodes');?></a>
|
126 |
-
<div class="clear"></div>
|
127 |
-
</div>
|
128 |
-
</li>
|
129 |
-
<?php endforeach;
|
130 |
-
}else{
|
131 |
-
echo ' <p> '.__("Use the button above to add Slides !",'magee-shortcodes').'</p>';
|
132 |
-
}?>
|
133 |
-
</ul>
|
134 |
-
<div class="clear"></div>
|
135 |
-
<script> var nextCell = <?php echo $i+1 ?> ;</script>
|
136 |
-
|
137 |
-
<?php
|
138 |
-
}
|
139 |
-
add_action('save_post', 'magee_save_slide');
|
140 |
-
function magee_save_slide(){
|
141 |
-
global $post;
|
142 |
-
if(isset($post->ID) && isset($_POST['magee-custom-slider'])){
|
143 |
-
if( isset($_POST['magee_custom_slider']) && $_POST['magee_custom_slider'] != "" ){
|
144 |
-
foreach($_POST['magee_custom_slider'] as $pkey=>$attrs){
|
145 |
-
foreach($attrs as $key => $val){
|
146 |
-
switch($key){
|
147 |
-
case 'title':
|
148 |
-
$_POST['magee_custom_slider'][$pkey]['title'] = base64_encode($val);
|
149 |
-
break;
|
150 |
-
case 'caption':
|
151 |
-
$_POST['magee_custom_slider'][$pkey]['caption'] = base64_encode($val);
|
152 |
-
break;
|
153 |
-
}
|
154 |
-
|
155 |
-
}
|
156 |
-
}
|
157 |
-
$magee_custom_slider = json_encode($_POST['magee_custom_slider']);
|
158 |
-
update_post_meta($post->ID, 'magee_custom_slider' , $magee_custom_slider);
|
159 |
-
}
|
160 |
-
else{
|
161 |
-
|
162 |
-
//delete_post_meta($post->ID, 'magee_custom_slider' );
|
163 |
-
}
|
164 |
-
|
165 |
-
}
|
166 |
-
}
|
167 |
-
|
168 |
-
add_filter("manage_edit-magee_slider_columns", "magee_slider_edit_columns");
|
169 |
-
function magee_slider_edit_columns($columns){
|
170 |
-
$columns = array(
|
171 |
-
"cb" => "<input type=\"checkbox\" />",
|
172 |
-
"title" => __("Title",'magee-shortcodes'),
|
173 |
-
"slides" => __("Number of Slides",'magee-shortcodes'),
|
174 |
-
"date" => __("Date",'magee-shortcodes'),
|
175 |
-
);
|
176 |
-
|
177 |
-
return $columns;
|
178 |
-
}
|
179 |
-
|
180 |
-
add_action("manage_magee_slider_posts_custom_column", "magee_slider_custom_columns");
|
181 |
-
function magee_slider_custom_columns($column){
|
182 |
-
global $post;
|
183 |
-
switch ($column) {
|
184 |
-
case "slides":
|
185 |
-
$magee_custom_slider_args = array( 'post_type' => 'magee_slider', 'p' => $post->ID );
|
186 |
-
$magee_custom_slider = new WP_Query( $magee_custom_slider_args );
|
187 |
-
while ( $magee_custom_slider->have_posts() ) {
|
188 |
-
$number =0;
|
189 |
-
$magee_custom_slider->the_post();
|
190 |
-
$custom = get_post_custom($post->ID);
|
191 |
-
if( !empty($custom["magee_custom_slider"][0])){
|
192 |
-
$slider = json_decode( $custom["magee_custom_slider"][0] ,true);
|
193 |
-
echo $number = count($slider);
|
194 |
-
}
|
195 |
-
else echo 0;
|
196 |
-
}
|
197 |
-
break;
|
198 |
-
}
|
199 |
-
}
|
200 |
-
|
201 |
-
|
202 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/options.php
DELETED
@@ -1,4399 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/*-----------------------------------------------------------------------------------*/
|
3 |
-
/* Default Options
|
4 |
-
/*-----------------------------------------------------------------------------------*/
|
5 |
-
|
6 |
-
//menus
|
7 |
-
function magee_shortcode_menus($name){
|
8 |
-
$menus[''] = 'Default';
|
9 |
-
if( $name !== ''){
|
10 |
-
|
11 |
-
$menu = wp_get_nav_menus();
|
12 |
-
|
13 |
-
foreach ( $menu as $val){
|
14 |
-
if(isset($val->name)){
|
15 |
-
$menus[$val->name] = $val->name;
|
16 |
-
}
|
17 |
-
}
|
18 |
-
if(isset( $menus)){
|
19 |
-
return $menus;
|
20 |
-
}
|
21 |
-
}
|
22 |
-
|
23 |
-
}
|
24 |
-
|
25 |
-
|
26 |
-
global $magee_shortcodes,$magee_sliders,$magee_widget;
|
27 |
-
$magee_sliders = Magee_Core::sliders_meta();
|
28 |
-
$googleFontArray = Magee_Core::magee_countdowns_get_google_fonts();
|
29 |
-
$google_fonts = array_merge(array('' => __( '-- None --', 'magee-shortcodes' ) ), $googleFontArray['magee_of_family']);
|
30 |
-
|
31 |
-
$choices = array( 'yes' => __('Yes', 'magee-shortcodes' ), 'no' => __('No', 'magee-shortcodes') );
|
32 |
-
$reverse_choices = array( 'no' => __('No', 'magee-shortcodes'), 'yes' => __('Yes', 'magee-shortcodes' ) );
|
33 |
-
$choices_with_default = array( '' => __('Default', 'magee-shortcodes'), 'yes' => __('Yes', 'magee-shortcodes' ), 'no' => __('No', 'magee-shortcodes') );
|
34 |
-
$reverse_choices_with_default = array( '' => __('Default', 'magee-shortcodes'), 'no' => __('No', 'magee-shortcodes'), 'yes' => __('Yes', 'magee-shortcodes' ) );
|
35 |
-
$leftright = array( 'left' => __('Left','magee-shortcodes'), 'right' => __( 'Right', 'magee-shortcodes' ) );
|
36 |
-
$textalign = array( 'left' => __( 'Left', 'magee-shortcodes' ), 'center' => __( 'Center', 'magee-shortcodes' ), 'right' => __( 'Right', 'magee-shortcodes' ) );
|
37 |
-
$textalign = array( 'left' => __( 'Left', 'magee-shortcodes' ), 'center' => __( 'Center', 'magee-shortcodes' ), 'right' => __( 'Right', 'magee-shortcodes' ) );
|
38 |
-
$opacity = array('0' => '0', '0.1' => '0.1', '0.2' => '0.2', '0.3' => '0.3', '0.4' => '0.4', '0.5' => '0.5', '0.6' => '0.6', '0.7' => '0.7', '0.8' => '0.8', '0.9' => '0.9', '1' => '1');
|
39 |
-
$dec_numbers = array( '0.1' => '0.1', '0.2' => '0.2', '0.3' => '0.3', '0.4' => '0.4', '0.5' => '0.5', '0.6' => '0.6', '0.7' => '0.7', '0.8' => '0.8', '0.9' => '0.9', '1' => '1', '2' => '2', '2.5' => '2.5', '3' => '3' );
|
40 |
-
$animation_type = array('' => 'None',"bounce" => "bounce", "flash" => "flash", "pulse" => "pulse", "rubberBand" => "rubberBand", "shake" => "shake", "swing" => "swing", "tada" => "tada", "wobble" => "wobble", "bounceIn" => "bounceIn", "bounceInDown" => "bounceInDown", "bounceInLeft" => "bounceInLeft", "bounceInRight" => "bounceInRight", "bounceInUp" => "bounceInUp", "bounceOut" => "bounceOut", "bounceOutDown" => "bounceOutDown", "bounceOutLeft" => "bounceOutLeft", "bounceOutRight" => "bounceOutRight", "bounceOutUp" => "bounceOutUp", "fadeIn" => "fadeIn", "fadeInDown" => "fadeInDown", "fadeInDownBig" => "fadeInDownBig", "fadeInLeft" => "fadeInLeft", "fadeInLeftBig" => "fadeInLeftBig", "fadeInRight" => "fadeInRight", "fadeInRightBig" => "fadeInRightBig", "fadeInUp" => "fadeInUp", "fadeInUpBig" => "fadeInUpBig", "fadeOut" => "fadeOut", "fadeOutDown" => "fadeOutDown", "fadeOutDownBig" => "fadeOutDownBig", "fadeOutLeft" => "fadeOutLeft", "fadeOutLeftBig" => "fadeOutLeftBig", "fadeOutRight" => "fadeOutRight", "fadeOutRightBig" => "fadeOutRightBig", "fadeOutUp" => "fadeOutUp", "fadeOutUpBig" => "fadeOutUpBig", "flip" => "flip", "flipInX" => "flipInX", "flipInY" => "flipInY", "flipOutX" => "flipOutX", "flipOutY" => "flipOutY", "lightSpeedIn" => "lightSpeedIn", "lightSpeedOut" => "lightSpeedOut", "rotateIn" => "rotateIn", "rotateInDownLeft" => "rotateInDownLeft", "rotateInDownRight" => "rotateInDownRight", "rotateInUpLeft" => "rotateInUpLeft", "rotateInUpRight" => "rotateInUpRight", "rotateOut" => "rotateOut", "rotateOutDownLeft" => "rotateOutDownLeft", "rotateOutDownRight" => "rotateOutDownRight", "rotateOutUpLeft" => "rotateOutUpLeft", "rotateOutUpRight" => "rotateOutUpRight", "hinge" => "hinge", "rollIn" => "rollIn", "rollOut" => "rollOut", "zoomIn" => "zoomIn", "zoomInDown" => "zoomInDown", "zoomInLeft" => "zoomInLeft", "zoomInRight" => "zoomInRight", "zoomInUp" => "zoomInUp", "zoomOut" => "zoomOut", "zoomOutDown" => "zoomOutDown", "zoomOutLeft" => "zoomOutLeft", "zoomOutRight" => "zoomOutRight", "zoomOutUp" => "zoomOutUp", "slideInDown" => "slideInDown", "slideInLeft" => "slideInLeft", "slideInRight" => "slideInRight", "slideInUp" => "slideInUp", "slideOutDown" => "slideOutDown", "slideOutLeft" => "slideOutLeft", "slideOutRight" => "slideOutRight", "slideOutUp" => "slideOutUp");
|
41 |
-
$columns = array(""=>"default","1"=>"1/12","2"=>"2/12","3"=>"3/12","4"=>"4/12","5"=>"5/12","6"=>"6/12","7"=>"7/12","8"=>"8/12","9"=>"9/12","10"=>"10/12","11"=>"11/12","12"=>"12/12");
|
42 |
-
// Fontawesome icons list
|
43 |
-
|
44 |
-
$icons = array('fa-glass'=>'\f000', 'fa-music'=>'\f001', 'fa-search'=>'\f002', 'fa-envelope-o'=>'\f003', 'fa-heart'=>'\f004', 'fa-star'=>'\f005', 'fa-star-o'=>'\f006', 'fa-user'=>'\f007', 'fa-film'=>'\f008', 'fa-th-large'=>'\f009', 'fa-th'=>'\f00a', 'fa-th-list'=>'\f00b', 'fa-check'=>'\f00c', 'fa-times'=>'\f00d', 'fa-search-plus'=>'\f00e', 'fa-search-minus'=>'\f010', 'fa-power-off'=>'\f011', 'fa-signal'=>'\f012', 'fa-cog'=>'\f013', 'fa-trash-o'=>'\f014', 'fa-home'=>'\f015', 'fa-file-o'=>'\f016', 'fa-clock-o'=>'\f017', 'fa-road'=>'\f018', 'fa-download'=>'\f019', 'fa-arrow-circle-o-down'=>'\f01a', 'fa-arrow-circle-o-up'=>'\f01b', 'fa-inbox'=>'\f01c', 'fa-play-circle-o'=>'\f01d', 'fa-repeat'=>'\f01e', 'fa-refresh'=>'\f021', 'fa-list-alt'=>'\f022', 'fa-lock'=>'\f023', 'fa-flag'=>'\f024', 'fa-headphones'=>'\f025', 'fa-volume-off'=>'\f026', 'fa-volume-down'=>'\f027', 'fa-volume-up'=>'\f028', 'fa-qrcode'=>'\f029', 'fa-barcode'=>'\f02a', 'fa-tag'=>'\f02b', 'fa-tags'=>'\f02c', 'fa-book'=>'\f02d', 'fa-bookmark'=>'\f02e', 'fa-print'=>'\f02f', 'fa-camera'=>'\f030', 'fa-font'=>'\f031', 'fa-bold'=>'\f032', 'fa-italic'=>'\f033', 'fa-text-height'=>'\f034', 'fa-text-width'=>'\f035', 'fa-align-left'=>'\f036', 'fa-align-center'=>'\f037', 'fa-align-right'=>'\f038', 'fa-align-justify'=>'\f039', 'fa-list'=>'\f03a', 'fa-outdent'=>'\f03b', 'fa-indent'=>'\f03c', 'fa-video-camera'=>'\f03d', 'fa-picture-o'=>'\f03e', 'fa-pencil'=>'\f040', 'fa-map-marker'=>'\f041', 'fa-adjust'=>'\f042', 'fa-tint'=>'\f043', 'fa-pencil-square-o'=>'\f044', 'fa-share-square-o'=>'\f045', 'fa-check-square-o'=>'\f046', 'fa-arrows'=>'\f047', 'fa-step-backward'=>'\f048', 'fa-fast-backward'=>'\f049', 'fa-backward'=>'\f04a', 'fa-play'=>'\f04b', 'fa-pause'=>'\f04c', 'fa-stop'=>'\f04d', 'fa-forward'=>'\f04e', 'fa-fast-forward'=>'\f050', 'fa-step-forward'=>'\f051', 'fa-eject'=>'\f052', 'fa-chevron-left'=>'\f053', 'fa-chevron-right'=>'\f054', 'fa-plus-circle'=>'\f055', 'fa-minus-circle'=>'\f056', 'fa-times-circle'=>'\f057', 'fa-check-circle'=>'\f058', 'fa-question-circle'=>'\f059', 'fa-info-circle'=>'\f05a', 'fa-crosshairs'=>'\f05b', 'fa-times-circle-o'=>'\f05c', 'fa-check-circle-o'=>'\f05d', 'fa-ban'=>'\f05e', 'fa-arrow-left'=>'\f060', 'fa-arrow-right'=>'\f061', 'fa-arrow-up'=>'\f062', 'fa-arrow-down'=>'\f063', 'fa-share'=>'\f064', 'fa-expand'=>'\f065', 'fa-compress'=>'\f066', 'fa-plus'=>'\f067', 'fa-minus'=>'\f068', 'fa-asterisk'=>'\f069', 'fa-exclamation-circle'=>'\f06a', 'fa-gift'=>'\f06b', 'fa-leaf'=>'\f06c', 'fa-fire'=>'\f06d', 'fa-eye'=>'\f06e', 'fa-eye-slash'=>'\f070', 'fa-exclamation-triangle'=>'\f071', 'fa-plane'=>'\f072', 'fa-calendar'=>'\f073', 'fa-random'=>'\f074', 'fa-comment'=>'\f075', 'fa-magnet'=>'\f076', 'fa-chevron-up'=>'\f077', 'fa-chevron-down'=>'\f078', 'fa-retweet'=>'\f079', 'fa-shopping-cart'=>'\f07a', 'fa-folder'=>'\f07b', 'fa-folder-open'=>'\f07c', 'fa-arrows-v'=>'\f07d', 'fa-arrows-h'=>'\f07e', 'fa-bar-chart'=>'\f080', 'fa-twitter-square'=>'\f081', 'fa-facebook-square'=>'\f082', 'fa-camera-retro'=>'\f083', 'fa-key'=>'\f084', 'fa-cogs'=>'\f085', 'fa-comments'=>'\f086', 'fa-thumbs-o-up'=>'\f087', 'fa-thumbs-o-down'=>'\f088', 'fa-star-half'=>'\f089', 'fa-heart-o'=>'\f08a', 'fa-sign-out'=>'\f08b', 'fa-linkedin-square'=>'\f08c', 'fa-thumb-tack'=>'\f08d', 'fa-external-link'=>'\f08e', 'fa-sign-in'=>'\f090', 'fa-trophy'=>'\f091', 'fa-github-square'=>'\f092', 'fa-upload'=>'\f093', 'fa-lemon-o'=>'\f094', 'fa-phone'=>'\f095', 'fa-square-o'=>'\f096', 'fa-bookmark-o'=>'\f097', 'fa-phone-square'=>'\f098', 'fa-twitter'=>'\f099', 'fa-facebook'=>'\f09a', 'fa-github'=>'\f09b', 'fa-unlock'=>'\f09c', 'fa-credit-card'=>'\f09d', 'fa-rss'=>'\f09e', 'fa-hdd-o'=>'\f0a0', 'fa-bullhorn'=>'\f0a1', 'fa-bell'=>'\f0f3', 'fa-certificate'=>'\f0a3', 'fa-hand-o-right'=>'\f0a4', 'fa-hand-o-left'=>'\f0a5', 'fa-hand-o-up'=>'\f0a6', 'fa-hand-o-down'=>'\f0a7', 'fa-arrow-circle-left'=>'\f0a8', 'fa-arrow-circle-right'=>'\f0a9', 'fa-arrow-circle-up'=>'\f0aa', 'fa-arrow-circle-down'=>'\f0ab', 'fa-globe'=>'\f0ac', 'fa-wrench'=>'\f0ad', 'fa-tasks'=>'\f0ae', 'fa-filter'=>'\f0b0', 'fa-briefcase'=>'\f0b1', 'fa-arrows-alt'=>'\f0b2', 'fa-users'=>'\f0c0', 'fa-link'=>'\f0c1', 'fa-cloud'=>'\f0c2', 'fa-flask'=>'\f0c3', 'fa-scissors'=>'\f0c4', 'fa-files-o'=>'\f0c5', 'fa-paperclip'=>'\f0c6', 'fa-floppy-o'=>'\f0c7', 'fa-square'=>'\f0c8', 'fa-bars'=>'\f0c9', 'fa-list-ul'=>'\f0ca', 'fa-list-ol'=>'\f0cb', 'fa-strikethrough'=>'\f0cc', 'fa-underline'=>'\f0cd', 'fa-table'=>'\f0ce', 'fa-magic'=>'\f0d0', 'fa-truck'=>'\f0d1', 'fa-pinterest'=>'\f0d2', 'fa-pinterest-square'=>'\f0d3', 'fa-google-plus-square'=>'\f0d4', 'fa-google-plus'=>'\f0d5', 'fa-money'=>'\f0d6', 'fa-caret-down'=>'\f0d7', 'fa-caret-up'=>'\f0d8', 'fa-caret-left'=>'\f0d9', 'fa-caret-right'=>'\f0da', 'fa-columns'=>'\f0db', 'fa-sort'=>'\f0dc', 'fa-sort-desc'=>'\f0dd', 'fa-sort-asc'=>'\f0de', 'fa-envelope'=>'\f0e0', 'fa-linkedin'=>'\f0e1', 'fa-undo'=>'\f0e2', 'fa-gavel'=>'\f0e3', 'fa-tachometer'=>'\f0e4', 'fa-comment-o'=>'\f0e5', 'fa-comments-o'=>'\f0e6', 'fa-bolt'=>'\f0e7', 'fa-sitemap'=>'\f0e8', 'fa-umbrella'=>'\f0e9', 'fa-clipboard'=>'\f0ea', 'fa-lightbulb-o'=>'\f0eb', 'fa-exchange'=>'\f0ec', 'fa-cloud-download'=>'\f0ed', 'fa-cloud-upload'=>'\f0ee', 'fa-user-md'=>'\f0f0', 'fa-stethoscope'=>'\f0f1', 'fa-suitcase'=>'\f0f2', 'fa-bell-o'=>'\f0a2', 'fa-coffee'=>'\f0f4', 'fa-cutlery'=>'\f0f5', 'fa-file-text-o'=>'\f0f6', 'fa-building-o'=>'\f0f7', 'fa-hospital-o'=>'\f0f8', 'fa-ambulance'=>'\f0f9', 'fa-medkit'=>'\f0fa', 'fa-fighter-jet'=>'\f0fb', 'fa-beer'=>'\f0fc', 'fa-h-square'=>'\f0fd', 'fa-plus-square'=>'\f0fe', 'fa-angle-double-left'=>'\f100', 'fa-angle-double-right'=>'\f101', 'fa-angle-double-up'=>'\f102', 'fa-angle-double-down'=>'\f103', 'fa-angle-left'=>'\f104', 'fa-angle-right'=>'\f105', 'fa-angle-up'=>'\f106', 'fa-angle-down'=>'\f107', 'fa-desktop'=>'\f108', 'fa-laptop'=>'\f109', 'fa-tablet'=>'\f10a', 'fa-mobile'=>'\f10b', 'fa-circle-o'=>'\f10c', 'fa-quote-left'=>'\f10d', 'fa-quote-right'=>'\f10e', 'fa-spinner'=>'\f110', 'fa-circle'=>'\f111', 'fa-reply'=>'\f112', 'fa-github-alt'=>'\f113', 'fa-folder-o'=>'\f114', 'fa-folder-open-o'=>'\f115', 'fa-smile-o'=>'\f118', 'fa-frown-o'=>'\f119', 'fa-meh-o'=>'\f11a', 'fa-gamepad'=>'\f11b', 'fa-keyboard-o'=>'\f11c', 'fa-flag-o'=>'\f11d', 'fa-flag-checkered'=>'\f11e', 'fa-terminal'=>'\f120', 'fa-code'=>'\f121', 'fa-reply-all'=>'\f122', 'fa-star-half-o'=>'\f123', 'fa-location-arrow'=>'\f124', 'fa-crop'=>'\f125', 'fa-code-fork'=>'\f126', 'fa-chain-broken'=>'\f127', 'fa-question'=>'\f128', 'fa-info'=>'\f129', 'fa-exclamation'=>'\f12a', 'fa-superscript'=>'\f12b', 'fa-subscript'=>'\f12c', 'fa-eraser'=>'\f12d', 'fa-puzzle-piece'=>'\f12e', 'fa-microphone'=>'\f130', 'fa-microphone-slash'=>'\f131', 'fa-shield'=>'\f132', 'fa-calendar-o'=>'\f133', 'fa-fire-extinguisher'=>'\f134', 'fa-rocket'=>'\f135', 'fa-maxcdn'=>'\f136', 'fa-chevron-circle-left'=>'\f137', 'fa-chevron-circle-right'=>'\f138', 'fa-chevron-circle-up'=>'\f139', 'fa-chevron-circle-down'=>'\f13a', 'fa-html5'=>'\f13b', 'fa-css3'=>'\f13c', 'fa-anchor'=>'\f13d', 'fa-unlock-alt'=>'\f13e', 'fa-bullseye'=>'\f140', 'fa-ellipsis-h'=>'\f141', 'fa-ellipsis-v'=>'\f142', 'fa-rss-square'=>'\f143', 'fa-play-circle'=>'\f144', 'fa-ticket'=>'\f145', 'fa-minus-square'=>'\f146', 'fa-minus-square-o'=>'\f147', 'fa-level-up'=>'\f148', 'fa-level-down'=>'\f149', 'fa-check-square'=>'\f14a', 'fa-pencil-square'=>'\f14b', 'fa-external-link-square'=>'\f14c', 'fa-share-square'=>'\f14d', 'fa-compass'=>'\f14e', 'fa-caret-square-o-down'=>'\f150', 'fa-caret-square-o-up'=>'\f151', 'fa-caret-square-o-right'=>'\f152', 'fa-eur'=>'\f153', 'fa-gbp'=>'\f154', 'fa-usd'=>'\f155', 'fa-inr'=>'\f156', 'fa-jpy'=>'\f157', 'fa-rub'=>'\f158', 'fa-krw'=>'\f159', 'fa-btc'=>'\f15a', 'fa-file'=>'\f15b', 'fa-file-text'=>'\f15c', 'fa-sort-alpha-asc'=>'\f15d', 'fa-sort-alpha-desc'=>'\f15e', 'fa-sort-amount-asc'=>'\f160', 'fa-sort-amount-desc'=>'\f161', 'fa-sort-numeric-asc'=>'\f162', 'fa-sort-numeric-desc'=>'\f163', 'fa-thumbs-up'=>'\f164', 'fa-thumbs-down'=>'\f165', 'fa-youtube-square'=>'\f166', 'fa-youtube'=>'\f167', 'fa-xing'=>'\f168', 'fa-xing-square'=>'\f169', 'fa-youtube-play'=>'\f16a', 'fa-dropbox'=>'\f16b', 'fa-stack-overflow'=>'\f16c', 'fa-instagram'=>'\f16d', 'fa-flickr'=>'\f16e', 'fa-adn'=>'\f170', 'fa-bitbucket'=>'\f171', 'fa-bitbucket-square'=>'\f172', 'fa-tumblr'=>'\f173', 'fa-tumblr-square'=>'\f174', 'fa-long-arrow-down'=>'\f175', 'fa-long-arrow-up'=>'\f176', 'fa-long-arrow-left'=>'\f177', 'fa-long-arrow-right'=>'\f178', 'fa-apple'=>'\f179', 'fa-windows'=>'\f17a', 'fa-android'=>'\f17b', 'fa-linux'=>'\f17c', 'fa-dribbble'=>'\f17d', 'fa-skype'=>'\f17e', 'fa-foursquare'=>'\f180', 'fa-trello'=>'\f181', 'fa-female'=>'\f182', 'fa-male'=>'\f183', 'fa-gratipay'=>'\f184', 'fa-sun-o'=>'\f185', 'fa-moon-o'=>'\f186', 'fa-archive'=>'\f187', 'fa-bug'=>'\f188', 'fa-vk'=>'\f189', 'fa-weibo'=>'\f18a', 'fa-renren'=>'\f18b', 'fa-pagelines'=>'\f18c', 'fa-stack-exchange'=>'\f18d', 'fa-arrow-circle-o-right'=>'\f18e', 'fa-arrow-circle-o-left'=>'\f190', 'fa-caret-square-o-left'=>'\f191', 'fa-dot-circle-o'=>'\f192', 'fa-wheelchair'=>'\f193', 'fa-vimeo-square'=>'\f194', 'fa-try'=>'\f195', 'fa-plus-square-o'=>'\f196', 'fa-space-shuttle'=>'\f197', 'fa-slack'=>'\f198', 'fa-envelope-square'=>'\f199', 'fa-wordpress'=>'\f19a', 'fa-openid'=>'\f19b', 'fa-university'=>'\f19c', 'fa-graduation-cap'=>'\f19d', 'fa-yahoo'=>'\f19e', 'fa-google'=>'\f1a0', 'fa-reddit'=>'\f1a1', 'fa-reddit-square'=>'\f1a2', 'fa-stumbleupon-circle'=>'\f1a3', 'fa-stumbleupon'=>'\f1a4', 'fa-delicious'=>'\f1a5', 'fa-digg'=>'\f1a6', 'fa-pied-piper'=>'\f1a7', 'fa-pied-piper-alt'=>'\f1a8', 'fa-drupal'=>'\f1a9', 'fa-joomla'=>'\f1aa', 'fa-language'=>'\f1ab', 'fa-fax'=>'\f1ac', 'fa-building'=>'\f1ad', 'fa-child'=>'\f1ae', 'fa-paw'=>'\f1b0', 'fa-spoon'=>'\f1b1', 'fa-cube'=>'\f1b2', 'fa-cubes'=>'\f1b3', 'fa-behance'=>'\f1b4', 'fa-behance-square'=>'\f1b5', 'fa-steam'=>'\f1b6', 'fa-steam-square'=>'\f1b7', 'fa-recycle'=>'\f1b8', 'fa-car'=>'\f1b9', 'fa-taxi'=>'\f1ba', 'fa-tree'=>'\f1bb', 'fa-spotify'=>'\f1bc', 'fa-deviantart'=>'\f1bd', 'fa-soundcloud'=>'\f1be', 'fa-database'=>'\f1c0', 'fa-file-pdf-o'=>'\f1c1', 'fa-file-word-o'=>'\f1c2', 'fa-file-excel-o'=>'\f1c3', 'fa-file-powerpoint-o'=>'\f1c4', 'fa-file-image-o'=>'\f1c5', 'fa-file-archive-o'=>'\f1c6', 'fa-file-audio-o'=>'\f1c7', 'fa-file-video-o'=>'\f1c8', 'fa-file-code-o'=>'\f1c9', 'fa-vine'=>'\f1ca', 'fa-codepen'=>'\f1cb', 'fa-jsfiddle'=>'\f1cc', 'fa-life-ring'=>'\f1cd', 'fa-circle-o-notch'=>'\f1ce', 'fa-rebel'=>'\f1d0', 'fa-empire'=>'\f1d1', 'fa-git-square'=>'\f1d2', 'fa-git'=>'\f1d3', 'fa-hacker-news'=>'\f1d4', 'fa-tencent-weibo'=>'\f1d5', 'fa-qq'=>'\f1d6', 'fa-weixin'=>'\f1d7', 'fa-paper-plane'=>'\f1d8', 'fa-paper-plane-o'=>'\f1d9', 'fa-history'=>'\f1da', 'fa-circle-thin'=>'\f1db', 'fa-header'=>'\f1dc', 'fa-paragraph'=>'\f1dd', 'fa-sliders'=>'\f1de', 'fa-share-alt'=>'\f1e0', 'fa-share-alt-square'=>'\f1e1', 'fa-bomb'=>'\f1e2', 'fa-futbol-o'=>'\f1e3', 'fa-tty'=>'\f1e4', 'fa-binoculars'=>'\f1e5', 'fa-plug'=>'\f1e6', 'fa-slideshare'=>'\f1e7', 'fa-twitch'=>'\f1e8', 'fa-yelp'=>'\f1e9', 'fa-newspaper-o'=>'\f1ea', 'fa-wifi'=>'\f1eb', 'fa-calculator'=>'\f1ec', 'fa-paypal'=>'\f1ed', 'fa-google-wallet'=>'\f1ee', 'fa-cc-visa'=>'\f1f0', 'fa-cc-mastercard'=>'\f1f1', 'fa-cc-discover'=>'\f1f2', 'fa-cc-amex'=>'\f1f3', 'fa-cc-paypal'=>'\f1f4', 'fa-cc-stripe'=>'\f1f5', 'fa-bell-slash'=>'\f1f6', 'fa-bell-slash-o'=>'\f1f7', 'fa-trash'=>'\f1f8', 'fa-copyright'=>'\f1f9', 'fa-at'=>'\f1fa', 'fa-eyedropper'=>'\f1fb', 'fa-paint-brush'=>'\f1fc', 'fa-birthday-cake'=>'\f1fd', 'fa-area-chart'=>'\f1fe', 'fa-pie-chart'=>'\f200', 'fa-line-chart'=>'\f201', 'fa-lastfm'=>'\f202', 'fa-lastfm-square'=>'\f203', 'fa-toggle-off'=>'\f204', 'fa-toggle-on'=>'\f205', 'fa-bicycle'=>'\f206', 'fa-bus'=>'\f207', 'fa-ioxhost'=>'\f208', 'fa-angellist'=>'\f209', 'fa-cc'=>'\f20a', 'fa-ils'=>'\f20b', 'fa-meanpath'=>'\f20c', 'fa-buysellads'=>'\f20d', 'fa-connectdevelop'=>'\f20e', 'fa-dashcube'=>'\f210', 'fa-forumbee'=>'\f211', 'fa-leanpub'=>'\f212', 'fa-sellsy'=>'\f213', 'fa-shirtsinbulk'=>'\f214', 'fa-simplybuilt'=>'\f215', 'fa-skyatlas'=>'\f216', 'fa-cart-plus'=>'\f217', 'fa-cart-arrow-down'=>'\f218', 'fa-diamond'=>'\f219', 'fa-ship'=>'\f21a', 'fa-user-secret'=>'\f21b', 'fa-motorcycle'=>'\f21c', 'fa-street-view'=>'\f21d', 'fa-heartbeat'=>'\f21e', 'fa-venus'=>'\f221', 'fa-mars'=>'\f222', 'fa-mercury'=>'\f223', 'fa-transgender'=>'\f224', 'fa-transgender-alt'=>'\f225', 'fa-venus-double'=>'\f226', 'fa-mars-double'=>'\f227', 'fa-venus-mars'=>'\f228', 'fa-mars-stroke'=>'\f229', 'fa-mars-stroke-v'=>'\f22a', 'fa-mars-stroke-h'=>'\f22b', 'fa-neuter'=>'\f22c', 'fa-genderless'=>'\f22d', 'fa-facebook-official'=>'\f230', 'fa-pinterest-p'=>'\f231', 'fa-whatsapp'=>'\f232', 'fa-server'=>'\f233', 'fa-user-plus'=>'\f234', 'fa-user-times'=>'\f235', 'fa-bed'=>'\f236', 'fa-viacoin'=>'\f237', 'fa-train'=>'\f238', 'fa-subway'=>'\f239', 'fa-medium'=>'\f23a', 'fa-y-combinator'=>'\f23b', 'fa-optin-monster'=>'\f23c', 'fa-opencart'=>'\f23d', 'fa-expeditedssl'=>'\f23e', 'fa-battery-full'=>'\f240', 'fa-battery-three-quarters'=>'\f241', 'fa-battery-half'=>'\f242', 'fa-battery-quarter'=>'\f243', 'fa-battery-empty'=>'\f244', 'fa-mouse-pointer'=>'\f245', 'fa-i-cursor'=>'\f246', 'fa-object-group'=>'\f247', 'fa-object-ungroup'=>'\f248', 'fa-sticky-note'=>'\f249', 'fa-sticky-note-o'=>'\f24a', 'fa-cc-jcb'=>'\f24b', 'fa-cc-diners-club'=>'\f24c', 'fa-clone'=>'\f24d', 'fa-balance-scale'=>'\f24e', 'fa-hourglass-o'=>'\f250', 'fa-hourglass-start'=>'\f251', 'fa-hourglass-half'=>'\f252', 'fa-hourglass-end'=>'\f253', 'fa-hourglass'=>'\f254', 'fa-hand-rock-o'=>'\f255', 'fa-hand-paper-o'=>'\f256', 'fa-hand-scissors-o'=>'\f257', 'fa-hand-lizard-o'=>'\f258', 'fa-hand-spock-o'=>'\f259', 'fa-hand-pointer-o'=>'\f25a', 'fa-hand-peace-o'=>'\f25b', 'fa-trademark'=>'\f25c', 'fa-registered'=>'\f25d', 'fa-creative-commons'=>'\f25e', 'fa-gg'=>'\f260', 'fa-gg-circle'=>'\f261', 'fa-tripadvisor'=>'\f262', 'fa-odnoklassniki'=>'\f263', 'fa-odnoklassniki-square'=>'\f264', 'fa-get-pocket'=>'\f265', 'fa-wikipedia-w'=>'\f266', 'fa-safari'=>'\f267', 'fa-chrome'=>'\f268', 'fa-firefox'=>'\f269', 'fa-opera'=>'\f26a', 'fa-internet-explorer'=>'\f26b', 'fa-television'=>'\f26c', 'fa-contao'=>'\f26d', 'fa-500px'=>'\f26e', 'fa-amazon'=>'\f270', 'fa-calendar-plus-o'=>'\f271', 'fa-calendar-minus-o'=>'\f272', 'fa-calendar-times-o'=>'\f273', 'fa-calendar-check-o'=>'\f274', 'fa-industry'=>'\f275', 'fa-map-pin'=>'\f276', 'fa-map-signs'=>'\f277', 'fa-map-o'=>'\f278', 'fa-map'=>'\f279', 'fa-commenting'=>'\f27a', 'fa-commenting-o'=>'\f27b', 'fa-houzz'=>'\f27c', 'fa-vimeo'=>'\f27d', 'fa-black-tie'=>'\f27e', 'fa-fonticons'=>'\f280');
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
$checklist_icons = array ( 'icon-check' => '\f00c', 'icon-star' => '\f006', 'icon-angle-right' => '\f105', 'icon-asterisk' => '\f069', 'icon-remove' => '\f00d', 'icon-plus' => '\f067' );
|
49 |
-
|
50 |
-
/*-----------------------------------------------------------------------------------*/
|
51 |
-
/* Shortcode Selection Config
|
52 |
-
/*-----------------------------------------------------------------------------------*/
|
53 |
-
|
54 |
-
$magee_shortcodes['shortcode-generator'] = array(
|
55 |
-
'no_preview' => true,
|
56 |
-
'params' => array(),
|
57 |
-
'shortcode' => '',
|
58 |
-
'popup_title' => ''
|
59 |
-
);
|
60 |
-
|
61 |
-
|
62 |
-
/*-----------------------------------------------------------------------------------*/
|
63 |
-
/* Accordion Config
|
64 |
-
/*-----------------------------------------------------------------------------------*/
|
65 |
-
|
66 |
-
$magee_shortcodes['accordion'] = array(
|
67 |
-
'no_preview' => true,
|
68 |
-
'icon' => 'fa-list-ul',
|
69 |
-
'params' => array(
|
70 |
-
'class' => array(
|
71 |
-
'std' => '',
|
72 |
-
'type' => 'text',
|
73 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
74 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
75 |
-
),
|
76 |
-
'id' => array(
|
77 |
-
'std' => '',
|
78 |
-
'type' => 'text',
|
79 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
80 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
81 |
-
),
|
82 |
-
'style' => array(
|
83 |
-
'type' => 'select',
|
84 |
-
'std' => 'simple',
|
85 |
-
'label' => __( 'Style', 'magee-shortcodes' ),
|
86 |
-
'desc' => __( 'The "simple" doesn\'t have a border in the whole accordion, and the "boxed" has.','magee-shortcodes'),
|
87 |
-
'options' => array(
|
88 |
-
'simple' => __( 'Simple Style', 'magee-shortcodes' ),
|
89 |
-
'boxed' => __( 'Boxed Style', 'magee-shortcodes' ),
|
90 |
-
'spacing' => __( 'Spacing Style', 'magee-shortcodes' ),
|
91 |
-
)
|
92 |
-
),
|
93 |
-
'type' => array(
|
94 |
-
'type' => 'select',
|
95 |
-
'label' => __( 'Type', 'magee-shortcodes' ),
|
96 |
-
'desc' => __( 'The differance is in the right of accordion, "1" is a down arrow, and the "2" is a plus in a box','magee-shortcodes'),
|
97 |
-
'std' => '1',
|
98 |
-
'options' => array(
|
99 |
-
'1' => __( 'Type 1', 'magee-shortcodes' ),
|
100 |
-
'2' => __( 'Type 2', 'magee-shortcodes' ),
|
101 |
-
'3' => __( 'None Type', 'magee-shortcodes' ),
|
102 |
-
)
|
103 |
-
),
|
104 |
-
|
105 |
-
),
|
106 |
-
'child_shortcode' => array(
|
107 |
-
'params' => array(
|
108 |
-
|
109 |
-
'title' => array(
|
110 |
-
'std' => 'Title',
|
111 |
-
'type' => 'text',
|
112 |
-
'label' => __( 'Title', 'magee-shortcodes'),
|
113 |
-
'desc' => __( 'Insert the title for the accordion item.', 'magee-shortcodes'),
|
114 |
-
),
|
115 |
-
'color' => array(
|
116 |
-
'std' => '',
|
117 |
-
'type' => 'colorpicker',
|
118 |
-
'label' => __( 'Title Color', 'magee-shortcodes'),
|
119 |
-
'desc' => __( 'Insert the color for the title.', 'magee-shortcodes'),
|
120 |
-
),
|
121 |
-
'background_color' => array(
|
122 |
-
'std' => '',
|
123 |
-
'type' => 'colorpicker',
|
124 |
-
'label' => __( 'Title Background Color', 'magee-shortcodes'),
|
125 |
-
'desc' => __( 'Insert the background color for the title.', 'magee-shortcodes'),
|
126 |
-
),
|
127 |
-
'content' => array(
|
128 |
-
'std' => 'Your Content Goes Here',
|
129 |
-
'type' => 'textarea',
|
130 |
-
'label' => __( 'Text', 'magee-shortcodes'),
|
131 |
-
'desc' => __( 'Insert the content for the accordion item.', 'magee-shortcodes'),
|
132 |
-
),
|
133 |
-
'status' => array(
|
134 |
-
'std' => 'close',
|
135 |
-
'type' => 'select',
|
136 |
-
'label' => __( 'Status', 'magee-shortcodes'),
|
137 |
-
'desc' => __( 'Choose to have the accordion open or close when page loads.', 'magee-shortcodes'),
|
138 |
-
'options' => array("close"=>__('Close','magee-shortcodes'),"open"=>__('Open','magee-shortcodes') )
|
139 |
-
),
|
140 |
-
'close_icon' => array(
|
141 |
-
'type' => 'iconpicker',
|
142 |
-
'label' => __( 'Select Close Status Icon', 'magee-shortcodes'),
|
143 |
-
'desc' => __( 'Click an icon to select, click again to deselect', 'magee-shortcodes'),
|
144 |
-
'options' => $icons
|
145 |
-
),
|
146 |
-
'open_icon' => array(
|
147 |
-
'type' => 'iconpicker',
|
148 |
-
'label' => __( 'Select Open Status Icon', 'magee-shortcodes'),
|
149 |
-
'desc' => __( 'Click an icon to select, click again to deselect', 'magee-shortcodes'),
|
150 |
-
'options' => $icons
|
151 |
-
),
|
152 |
-
)
|
153 |
-
,
|
154 |
-
'shortcode' => "[ms_accordion_item title=\"{{title}}\" color=\"{{color}}\" background_color=\"{{background_color}}\" close_icon=\"{{close_icon}}\" open_icon=\"{{open_icon}}\" status=\"{{status}}\"]{{content}}[/ms_accordion_item]\r\n",
|
155 |
-
),
|
156 |
-
'shortcode' => "[ms_accordion style=\"{{style}}\" type=\"{{type}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{child_shortcode}}[/ms_accordion]",
|
157 |
-
'popup_title' => __( 'Accordion Shortcode', 'magee-shortcodes' ),
|
158 |
-
'name' => __('accordions-shortcode/','magee-shortocdes'),
|
159 |
-
|
160 |
-
);
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
/*-----------------------------------------------------------------------------------*/
|
165 |
-
/* Alert Config
|
166 |
-
/*-----------------------------------------------------------------------------------*/
|
167 |
-
|
168 |
-
$magee_shortcodes['alert'] = array(
|
169 |
-
'no_preview' => true,
|
170 |
-
'icon' => 'fa-exclamation-circle',
|
171 |
-
'params' => array(
|
172 |
-
'icon' => array(
|
173 |
-
'type' => 'iconpicker',
|
174 |
-
'label' => __( 'Icon', 'magee-shortcodes' ),
|
175 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
176 |
-
'options' => $icons
|
177 |
-
),
|
178 |
-
|
179 |
-
'content' => array(
|
180 |
-
'std' => __('Warning! Better check yourself, you\'re not looking too good.', 'magee-shortcodes'),
|
181 |
-
'type' => 'textarea',
|
182 |
-
'label' => __( 'Alert Content', 'magee-shortcodes' ),
|
183 |
-
'desc' => __( 'Insert the content for the alert.', 'magee-shortcodes' ),
|
184 |
-
),
|
185 |
-
|
186 |
-
'background_color' => array(
|
187 |
-
'std' => '#f5f5f5',
|
188 |
-
'type' => 'colorpicker',
|
189 |
-
'label' => __( 'Background Color', 'magee-shortcodes' ),
|
190 |
-
'desc' => __( 'Set background color for alert box.', 'magee-shortcodes' ),
|
191 |
-
),
|
192 |
-
'text_color' => array(
|
193 |
-
'std' => '',
|
194 |
-
'type' => 'colorpicker',
|
195 |
-
'label' => __( 'Text Color', 'magee-shortcodes' ),
|
196 |
-
'desc' =>__( 'Set content color & border color for alert box.', 'magee-shortcodes' ),
|
197 |
-
),
|
198 |
-
|
199 |
-
|
200 |
-
'border_width' => array(
|
201 |
-
'std' => '0',
|
202 |
-
'type' => 'number',
|
203 |
-
'max' => '50',
|
204 |
-
'min' => '0',
|
205 |
-
'label' => __( 'Border Width', 'magee-shortcodes' ),
|
206 |
-
'desc' => __('In pixels (px), eg: 1px.', 'magee-shortcodes')
|
207 |
-
),
|
208 |
-
|
209 |
-
'border_radius' => array(
|
210 |
-
'std' => '0',
|
211 |
-
'type' => 'number',
|
212 |
-
'max' => '50',
|
213 |
-
'min' => '0',
|
214 |
-
'label' => __( 'Border Radius', 'magee-shortcodes' ),
|
215 |
-
'desc' => __('In pixels (px), eg: 1px.', 'magee-shortcodes')
|
216 |
-
),
|
217 |
-
|
218 |
-
'box_shadow' => array(
|
219 |
-
'std' => '',
|
220 |
-
'type' => 'choose',
|
221 |
-
'label' => __( 'Box Shadow', 'magee-shortcodes' ),
|
222 |
-
'desc' => __( 'Display a box shadow for alert.', 'magee-shortcodes' ),
|
223 |
-
'options' => $reverse_choices
|
224 |
-
),
|
225 |
-
'dismissable' => array(
|
226 |
-
'std' => '',
|
227 |
-
'type' => 'choose',
|
228 |
-
'label' => __( 'Dismissable', 'magee-shortcodes' ),
|
229 |
-
'desc' => __( 'The alert box is dismissable.', 'magee-shortcodes' ),
|
230 |
-
'options' => $reverse_choices
|
231 |
-
),
|
232 |
-
|
233 |
-
'class' => array(
|
234 |
-
'std' => '',
|
235 |
-
'type' => 'text',
|
236 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
237 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
238 |
-
),
|
239 |
-
'id' => array(
|
240 |
-
'std' => '',
|
241 |
-
'type' => 'text',
|
242 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
243 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
244 |
-
),
|
245 |
-
),
|
246 |
-
'shortcode' => '[ms_alert icon="{{icon}}" background_color="{{background_color}}" text_color="{{text_color}}" border_width="{{border_width}}" border_radius="{{border_radius}}" box_shadow="{{box_shadow}}" dismissable="{{dismissable}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_alert]',
|
247 |
-
'popup_title' => __( 'Alert Shortcode', 'magee-shortcodes' ),
|
248 |
-
'name' => __('alert-shortcode/','magee-shortocdes'),
|
249 |
-
);
|
250 |
-
|
251 |
-
/*-----------------------------------------------------------------------------------*/
|
252 |
-
/* Audio Config
|
253 |
-
/*-----------------------------------------------------------------------------------*/
|
254 |
-
$magee_shortcodes['audio'] = array(
|
255 |
-
'no_preview' => true,
|
256 |
-
'icon' => 'fa-play-circle-o',
|
257 |
-
'params' => array(
|
258 |
-
'style' => array(
|
259 |
-
'std' => '',
|
260 |
-
'type' => 'select',
|
261 |
-
'label' => __( 'Audio Style', 'magee-shortcodes'),
|
262 |
-
'desc' => __( 'Choose style for audio to show', 'magee-shortcodes'),
|
263 |
-
'options' => array('dark'=>__('Dark Style', 'magee-shortcodes'),'light'=>__('Light Style', 'magee-shortcodes'))
|
264 |
-
),
|
265 |
-
'mp3' => array(
|
266 |
-
'std' => '',
|
267 |
-
'type' => 'link',
|
268 |
-
'label' => __( 'Mp3 URL', 'magee-shortcodes'),
|
269 |
-
'desc' => __( 'Add the URL of audio in MP3 format.', 'magee-shortcodes')
|
270 |
-
),
|
271 |
-
'ogg' => array(
|
272 |
-
'std' => '',
|
273 |
-
'type' => 'link',
|
274 |
-
'label' => __( 'Ogg URL', 'magee-shortcodes'),
|
275 |
-
'desc' => __( 'Add the URL of audio in OGG format.', 'magee-shortcodes')
|
276 |
-
),
|
277 |
-
'wav' => array(
|
278 |
-
'std' => '',
|
279 |
-
'type' => 'link',
|
280 |
-
'label' => __( 'Wav URL', 'magee-shortcodes'),
|
281 |
-
'desc' => __( 'Add the URL of audio in WAV format.', 'magee-shortcodes')
|
282 |
-
),
|
283 |
-
'mute' => array(
|
284 |
-
'type' => 'choose',
|
285 |
-
'label' => __( 'Mute Audio','magee-shortcodes'),
|
286 |
-
'desc' => __('Choose to mute the audio.','magee-shortcodes'),
|
287 |
-
'options' => $reverse_choices,
|
288 |
-
),
|
289 |
-
'autoplay' => array(
|
290 |
-
'type' => 'choose',
|
291 |
-
'label' => __( 'Autoplay Audio','magee-shortcodes'),
|
292 |
-
'desc' => __('Choose to autoplay the audio.','magee-shortcodes'),
|
293 |
-
'options' => $choices,
|
294 |
-
),
|
295 |
-
'loop' => array(
|
296 |
-
'type' => 'choose',
|
297 |
-
'label' => __( 'Loop Audio','magee-shortcodes'),
|
298 |
-
'desc' => __('Choose to loop the audio.','magee-shortcodes'),
|
299 |
-
'options' => $choices,
|
300 |
-
),
|
301 |
-
'controls' => array(
|
302 |
-
'type' => 'choose',
|
303 |
-
'label' => __( 'Controls Audio','magee-shortcodes'),
|
304 |
-
'desc' => __('Choose to display controls of the audio.','magee-shortcodes'),
|
305 |
-
'options' => $choices,
|
306 |
-
),
|
307 |
-
'class' => array(
|
308 |
-
'std' => '',
|
309 |
-
'type' => 'text',
|
310 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
311 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
312 |
-
),
|
313 |
-
'id' => array(
|
314 |
-
'std' => '',
|
315 |
-
'type' => 'text',
|
316 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
317 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
318 |
-
),
|
319 |
-
),
|
320 |
-
'shortcode' => '[ms_audio style="{{style}}" mp3="{{mp3}}" ogg="{{ogg}}" wav="{{wav}}" mute="{{mute}}" autoplay="{{autoplay}}" loop="{{loop}}" controls="{{controls}}" class="{{class}}" id="{{id}}"]' ,
|
321 |
-
'popup_title' => __( 'Audio Shortcode','magee-shortcodes'),
|
322 |
-
'name' => __('audio-shortcode/','magee-shortcodes'),
|
323 |
-
);
|
324 |
-
|
325 |
-
/*******************************************************
|
326 |
-
* Button Config
|
327 |
-
********************************************************/
|
328 |
-
|
329 |
-
$magee_shortcodes['button'] = array(
|
330 |
-
'no_preview' => true,
|
331 |
-
'icon' => 'fa-hand-o-up',
|
332 |
-
'params' => array(
|
333 |
-
'style' => array(
|
334 |
-
'type' => 'select',
|
335 |
-
'label' => __( 'Button Style', 'magee-shortcodes' ),
|
336 |
-
'desc' => __( 'Select the button\'s default style.', 'magee-shortcodes' ),
|
337 |
-
'options' => array(
|
338 |
-
'normal' => __('Normal', 'magee-shortcodes'),
|
339 |
-
'dark' => __('Dark', 'magee-shortcodes'),
|
340 |
-
'light' => __('Light', 'magee-shortcodes'),
|
341 |
-
'2d' => __('2d', 'magee-shortcodes'),
|
342 |
-
'3d' => __('3d', 'magee-shortcodes'),
|
343 |
-
'line' => __('Line', 'magee-shortcodes'),
|
344 |
-
'line_dark' => __('Line Dark', 'magee-shortcodes'),
|
345 |
-
'line_light' => __('Line Light', 'magee-shortcodes'),
|
346 |
-
|
347 |
-
)
|
348 |
-
),
|
349 |
-
'link' => array(
|
350 |
-
'std' => '',
|
351 |
-
'type' => 'text',
|
352 |
-
'label' => __( 'Button URL', 'magee-shortcodes' ),
|
353 |
-
'desc' => __( 'Add the button\'s url eg: http://example.com.', 'magee-shortcodes' )
|
354 |
-
),
|
355 |
-
'size' => array(
|
356 |
-
'type' => 'select',
|
357 |
-
'std' =>'medium',
|
358 |
-
'label' => __( 'Button Size', 'magee-shortcodes' ),
|
359 |
-
'desc' => __( 'Select the button\'s size.', 'magee-shortcodes' ),
|
360 |
-
'options' => array(
|
361 |
-
'small' => __('Small', 'magee-shortcodes'),
|
362 |
-
'medium' => __('Medium', 'magee-shortcodes'),
|
363 |
-
'large' => __('Large', 'magee-shortcodes'),
|
364 |
-
'xlarge' => __('XLarge', 'magee-shortcodes'),
|
365 |
-
)
|
366 |
-
),
|
367 |
-
|
368 |
-
'border_width' => array(
|
369 |
-
'std' => '0',
|
370 |
-
'type' => 'number',
|
371 |
-
'max' => '50',
|
372 |
-
'min' => '0',
|
373 |
-
'label' => __('Border Width', 'magee-shortcodes'),
|
374 |
-
'desc' => __('In pixels (px), default: 2px.', 'magee-shortcodes'),
|
375 |
-
),
|
376 |
-
|
377 |
-
'shape' => array(
|
378 |
-
'type' => 'select',
|
379 |
-
'label' => __( 'Button Shape', 'magee-shortcodes' ),
|
380 |
-
'desc' => __( 'Select the button\'s shape. Choose default for theme option selection.', 'magee-shortcodes' ),
|
381 |
-
'options' => array(
|
382 |
-
'' => __('Default', 'magee-shortcodes'),
|
383 |
-
'square' => __('Square', 'magee-shortcodes'),
|
384 |
-
'rounded' => __('Rounded', 'magee-shortcodes'),
|
385 |
-
'full-rounded' => __('Full Rounded', 'magee-shortcodes'),
|
386 |
-
)
|
387 |
-
),
|
388 |
-
'shadow' => array(
|
389 |
-
'type' => 'choose',
|
390 |
-
'label' => __( 'Text Shadow', 'magee-shortcodes' ),
|
391 |
-
'desc' => __( 'Display shadow for button text.', 'magee-shortcodes' ),
|
392 |
-
'options' => $reverse_choices
|
393 |
-
),
|
394 |
-
'gradient' => array(
|
395 |
-
'type' => 'choose',
|
396 |
-
'label' => __( 'Gradient', 'magee-shortcodes' ),
|
397 |
-
'desc' => __( 'Display gradient for button.', 'magee-shortcodes' ),
|
398 |
-
'options' => $reverse_choices
|
399 |
-
),
|
400 |
-
'block' => array(
|
401 |
-
'type' => 'choose',
|
402 |
-
'label' => __( 'Block Button', 'magee-shortcodes' ),
|
403 |
-
'desc' => __( 'Display in full width.', 'magee-shortcodes' ),
|
404 |
-
'options' => $reverse_choices
|
405 |
-
),
|
406 |
-
|
407 |
-
'target' => array(
|
408 |
-
'type' => 'choose',
|
409 |
-
'label' => __( 'Button Target', 'magee-shortcodes' ),
|
410 |
-
'desc' => __( '_self = open in same window <br />_blank = open in new window.', 'magee-shortcodes' ),
|
411 |
-
'options' => array(
|
412 |
-
'_self' => __( '_self', 'magee-shortcodes' ),
|
413 |
-
'_blank' => __( '_blank' , 'magee-shortcodes' ),
|
414 |
-
)
|
415 |
-
),
|
416 |
-
|
417 |
-
'content' => array(
|
418 |
-
'std' => __('Button Text', 'magee-shortcodes'),
|
419 |
-
'type' => 'text',
|
420 |
-
'label' => __( 'Button\'s Text', 'magee-shortcodes' ),
|
421 |
-
'desc' => __( 'Add the text that will display in the button.', 'magee-shortcodes' ),
|
422 |
-
),
|
423 |
-
|
424 |
-
'color' => array(
|
425 |
-
'type' => 'colorpicker',
|
426 |
-
'desc' => __( 'Set background color for button.', 'magee-shortcodes' ),
|
427 |
-
'label' => __( 'Button Color', 'magee-shortcodes' ),
|
428 |
-
'std' => ''
|
429 |
-
),
|
430 |
-
|
431 |
-
'textcolor' => array(
|
432 |
-
'type' => 'colorpicker',
|
433 |
-
'std' => '#ffffff',
|
434 |
-
'label' => __( 'Text Color', 'magee-shortcodes' ),
|
435 |
-
'desc' => __( 'Set content color & border color for button.', 'magee-shortcodes' )
|
436 |
-
),
|
437 |
-
|
438 |
-
'icon' => array(
|
439 |
-
'type' => 'iconpicker',
|
440 |
-
'label' => __( 'Button Icon', 'magee-shortcodes' ),
|
441 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
442 |
-
'options' => $icons
|
443 |
-
),
|
444 |
-
|
445 |
-
'iconanimationtype' => array(
|
446 |
-
'type' => 'select',
|
447 |
-
'label' => __( 'Icon Animation Type', 'magee-shortcodes' ),
|
448 |
-
'desc' => __( 'Select the type of animation to use on the button icon.', 'magee-shortcodes' ),
|
449 |
-
'options' => $animation_type
|
450 |
-
),
|
451 |
-
|
452 |
-
'class' => array(
|
453 |
-
'std' => '',
|
454 |
-
'type' => 'text',
|
455 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
456 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
457 |
-
),
|
458 |
-
'id' => array(
|
459 |
-
'std' => '',
|
460 |
-
'type' => 'text',
|
461 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
462 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
463 |
-
),
|
464 |
-
),
|
465 |
-
'shortcode' => '[ms_button style="{{style}}" link="{{link}}" size="{{size}}" shape="{{shape}}" shadow="{{shadow}}" block="{{block}}" target="{{target}}" gradient="{{gradient}}" color="{{color}}" text_color="{{textcolor}}" icon="{{icon}}" icon_animation_type="{{iconanimationtype}}" border_width="{{border_width}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_button]',
|
466 |
-
'popup_title' => __( 'Button Shortcode', 'magee-shortcodes'),
|
467 |
-
'name' => __('buttons-shortcode/','magee-shortocdes'),
|
468 |
-
);
|
469 |
-
|
470 |
-
/*-----------------------------------------------------------------------------------*/
|
471 |
-
/* Chart Bar Config
|
472 |
-
/*-----------------------------------------------------------------------------------*/
|
473 |
-
|
474 |
-
$magee_shortcodes['chart_bar'] = array(
|
475 |
-
'no_preview' => true,
|
476 |
-
'icon' => 'fa-bar-chart',
|
477 |
-
'params' => array(
|
478 |
-
'width' => array(
|
479 |
-
'std' => '600',
|
480 |
-
'type' => 'number',
|
481 |
-
'max' => '1000',
|
482 |
-
'min' => '0',
|
483 |
-
'label' => __( 'Canvas Width','magee-shortcodes'),
|
484 |
-
'desc' => '',
|
485 |
-
),
|
486 |
-
'height' => array(
|
487 |
-
'std' => '400',
|
488 |
-
'type' => 'number',
|
489 |
-
'max' => '1000',
|
490 |
-
'min' => '0',
|
491 |
-
'label' => __( 'Canvas Height','magee-shortcodes'),
|
492 |
-
'desc' => '',
|
493 |
-
),
|
494 |
-
'class' => array(
|
495 |
-
'std' => '',
|
496 |
-
'type' => 'text',
|
497 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
498 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
499 |
-
),
|
500 |
-
'id' => array(
|
501 |
-
'std' => '',
|
502 |
-
'type' => 'text',
|
503 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
504 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
505 |
-
),
|
506 |
-
'label' => array(
|
507 |
-
'std' => "'January','February','March','April','May','June'",
|
508 |
-
'type' => 'text',
|
509 |
-
'label' => __('Label For Line','magee-shortcodes') ,
|
510 |
-
'desc' => __( 'separate multiple tags added to chart line with commas','magee-shortcodes')
|
511 |
-
),
|
512 |
-
),
|
513 |
-
'shortcode' => "[ms_chart_bar width=\"{{width}}\" height=\"{{height}}\" class=\"{{class}}\" id=\"{{id}}\" label=\"{{label}}\"]\r\n{{child_shortcode}}[/ms_chart_bar]",
|
514 |
-
'popup_title' => __( 'Chart Bar Shortcode', 'magee-shortcodes'),
|
515 |
-
'child_shortcode' => array(
|
516 |
-
'params' => array(
|
517 |
-
'data' => array(
|
518 |
-
'std' => '456,479,324,569,702,600',
|
519 |
-
'type' => 'text',
|
520 |
-
'label' => __( 'Data','magee-shortcodes'),
|
521 |
-
'desc' => __( 'separate values for each set of data with commas','magee-shortcodes')
|
522 |
-
),
|
523 |
-
'fillcolor' => array(
|
524 |
-
'std' => '#ACC284',
|
525 |
-
'type' => 'colorpicker',
|
526 |
-
'label' => __( 'Fill Color','magee-shortcodes'),
|
527 |
-
'desc' => '',
|
528 |
-
),
|
529 |
-
'fillopacity' => array(
|
530 |
-
'std' => '0.4',
|
531 |
-
'type' => 'select',
|
532 |
-
'label' => __( 'Fill Opacity','magee-shortcodes') ,
|
533 |
-
'desc' => '',
|
534 |
-
'options' => $opacity
|
535 |
-
),
|
536 |
-
'strokecolor' => array(
|
537 |
-
'std' => '#ACC26D',
|
538 |
-
'type' => 'colorpicker',
|
539 |
-
'label' => __( 'Stroke Color','magee-shortcodes'),
|
540 |
-
'desc' => '',
|
541 |
-
),
|
542 |
-
'strokeopacity' => array(
|
543 |
-
'std' => '0.4',
|
544 |
-
'type' => 'select',
|
545 |
-
'label' => __( 'Stroke Opacity','magee-shortcodes') ,
|
546 |
-
'desc' => '',
|
547 |
-
'options' => $opacity
|
548 |
-
),
|
549 |
-
),
|
550 |
-
'shortcode' => "[ms_bar data=\"{{data}}\" fillcolor=\"{{fillcolor}}\" fillopacity=\"{{fillopacity}}\" strokecolor=\"{{strokecolor}}\" strokeopacity=\"{{strokeopacity}}\"][/ms_bar]\r\n",
|
551 |
-
)
|
552 |
-
);
|
553 |
-
|
554 |
-
/*-----------------------------------------------------------------------------------*/
|
555 |
-
/* Chart Doughnut Config
|
556 |
-
/*-----------------------------------------------------------------------------------*/
|
557 |
-
|
558 |
-
$magee_shortcodes['chart_doughnut'] = array(
|
559 |
-
'no_preview' => true,
|
560 |
-
'icon' => 'fa-circle-o-notch',
|
561 |
-
'params' => array(
|
562 |
-
'width' => array(
|
563 |
-
'std' => '600',
|
564 |
-
'type' => 'number',
|
565 |
-
'max' => '1000',
|
566 |
-
'min' => '0',
|
567 |
-
'label' => __( 'Canvas Width','magee-shortcodes'),
|
568 |
-
'desc' => '',
|
569 |
-
),
|
570 |
-
'height' => array(
|
571 |
-
'std' => '400',
|
572 |
-
'type' => 'number',
|
573 |
-
'max' => '1000',
|
574 |
-
'min' => '0',
|
575 |
-
'label' => __( 'Canvas Height','magee-shortcodes'),
|
576 |
-
'desc' => '',
|
577 |
-
),
|
578 |
-
'class' => array(
|
579 |
-
'std' => '',
|
580 |
-
'type' => 'text',
|
581 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
582 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
583 |
-
),
|
584 |
-
'id' => array(
|
585 |
-
'std' => '',
|
586 |
-
'type' => 'text',
|
587 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
588 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
589 |
-
),
|
590 |
-
'content' => array(
|
591 |
-
'std' => "[ms_doughnut value=\"20\" color=\"#878BB6\"]\r\n[ms_doughnut value=\"40\" color=\"#4ACAB4\"]\r\n[ms_doughnut value=\"10\" color=\"#FF8153\"]\r\n[ms_doughnut value=\"30\" color=\"#FFEA88\"]\r\n",
|
592 |
-
'type' => 'textarea',
|
593 |
-
'label' => __( 'Content', 'magee-shortcodes'),
|
594 |
-
'desc' => '',
|
595 |
-
),
|
596 |
-
),
|
597 |
-
'shortcode' => "[ms_chart_doughnut width=\"{{width}}\" height=\"{{height}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{content}}[/ms_chart_doughnut]",
|
598 |
-
'popup_title' => __( 'Chart Doughnut Shortcode', 'magee-shortcodes'),
|
599 |
-
);
|
600 |
-
|
601 |
-
/*-----------------------------------------------------------------------------------*/
|
602 |
-
/* Chart Line Config
|
603 |
-
/*-----------------------------------------------------------------------------------*/
|
604 |
-
|
605 |
-
$magee_shortcodes['chart_line'] = array(
|
606 |
-
'no_preview' => true,
|
607 |
-
'icon' => 'fa-line-chart',
|
608 |
-
'params' => array(
|
609 |
-
'width' => array(
|
610 |
-
'std' => '600',
|
611 |
-
'type' => 'number',
|
612 |
-
'max' => '1000',
|
613 |
-
'min' => '0',
|
614 |
-
'label' => __( 'Canvas Width','magee-shortcodes'),
|
615 |
-
'desc' => '',
|
616 |
-
),
|
617 |
-
'height' => array(
|
618 |
-
'std' => '400',
|
619 |
-
'type' => 'number',
|
620 |
-
'max' => '1000',
|
621 |
-
'min' => '0',
|
622 |
-
'label' => __( 'Canvas Height','magee-shortcodes'),
|
623 |
-
'desc' => '',
|
624 |
-
),
|
625 |
-
'class' => array(
|
626 |
-
'std' => '',
|
627 |
-
'type' => 'text',
|
628 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
629 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
630 |
-
),
|
631 |
-
'id' => array(
|
632 |
-
'std' => '',
|
633 |
-
'type' => 'text',
|
634 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
635 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
636 |
-
),
|
637 |
-
'label' => array(
|
638 |
-
'std' => "'January','February','March','April','May','June'",
|
639 |
-
'type' => 'text',
|
640 |
-
'label' => __('Label For Line','magee-shortcodes') ,
|
641 |
-
'desc' => ''
|
642 |
-
),
|
643 |
-
),
|
644 |
-
'shortcode' => "[ms_chart_line width=\"{{width}}\" height=\"{{height}}\" class=\"{{class}}\" id=\"{{id}}\" label=\"{{label}}\"]\r\n{{child_shortcode}}[/ms_chart_line]",
|
645 |
-
'popup_title' => __( 'Chart Line Shortcode', 'magee-shortcodes'),
|
646 |
-
'child_shortcode' => array(
|
647 |
-
'params' => array(
|
648 |
-
'data' => array(
|
649 |
-
'std' => '203,156,99,251,305,247',
|
650 |
-
'type' => 'text',
|
651 |
-
'label' => __( 'Data','magee-shortcodes'),
|
652 |
-
'desc' => __( 'separate values for each set of data with commas','magee-shortcodes')
|
653 |
-
),
|
654 |
-
'fillcolor' => array(
|
655 |
-
'std' => '#ACC284',
|
656 |
-
'type' => 'colorpicker',
|
657 |
-
'label' => __( 'Fill Color','magee-shortcodes'),
|
658 |
-
'desc' => '',
|
659 |
-
),
|
660 |
-
'fillopacity' => array(
|
661 |
-
'std' => '0.4',
|
662 |
-
'type' => 'select',
|
663 |
-
'label' => __( 'Fill Opacity','magee-shortcodes') ,
|
664 |
-
'desc' => '',
|
665 |
-
'options' => $opacity
|
666 |
-
),
|
667 |
-
'strokecolor' => array(
|
668 |
-
'std' => '#ACC26D',
|
669 |
-
'type' => 'colorpicker',
|
670 |
-
'label' => __( 'Stroke Color','magee-shortcodes'),
|
671 |
-
'desc' => '',
|
672 |
-
),
|
673 |
-
'pointcolor' => array(
|
674 |
-
'std' => '#ffffff',
|
675 |
-
'type' => 'colorpicker',
|
676 |
-
'label' => __( 'Point Color','magee-shortcodes'),
|
677 |
-
'desc' => '',
|
678 |
-
),
|
679 |
-
'pointstrokecolor' => array(
|
680 |
-
'std' => '#9DB86D',
|
681 |
-
'type' => 'colorpicker',
|
682 |
-
'label' => __( 'Point Stroke Color','magee-shortcodes'),
|
683 |
-
'desc' => '',
|
684 |
-
),
|
685 |
-
),
|
686 |
-
'shortcode' => "[ms_line data=\"{{data}}\" fillcolor=\"{{fillcolor}}\" fillopacity=\"{{fillopacity}}\" strokecolor=\"{{strokecolor}}\" pointcolor=\"{{pointcolor}}\" pointstrokecolor=\"{{pointstrokecolor}}\"][/ms_line]\r\n",
|
687 |
-
)
|
688 |
-
);
|
689 |
-
|
690 |
-
/*-----------------------------------------------------------------------------------*/
|
691 |
-
/* Chart Pie Config
|
692 |
-
/*-----------------------------------------------------------------------------------*/
|
693 |
-
|
694 |
-
$magee_shortcodes['chart_pie'] = array(
|
695 |
-
'no_preview' => true,
|
696 |
-
'icon' => 'fa-pie-chart',
|
697 |
-
'params' => array(
|
698 |
-
'width' => array(
|
699 |
-
'std' => '600',
|
700 |
-
'type' => 'number',
|
701 |
-
'max' => '1000',
|
702 |
-
'min' => '0',
|
703 |
-
'label' => __( 'Canvas Width','magee-shortcodes'),
|
704 |
-
'desc' => ''
|
705 |
-
),
|
706 |
-
'height' => array(
|
707 |
-
|
708 |
-
'std' => '400',
|
709 |
-
'type' => 'number',
|
710 |
-
'max' => '1000',
|
711 |
-
'min' => '0',
|
712 |
-
'label' => __( 'Canvas Height','magee-shortcodes'),
|
713 |
-
'desc' => ''
|
714 |
-
),
|
715 |
-
'class' => array(
|
716 |
-
'std' => '',
|
717 |
-
'type' => 'text',
|
718 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
719 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
720 |
-
),
|
721 |
-
'id' => array(
|
722 |
-
'std' => '',
|
723 |
-
'type' => 'text',
|
724 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
725 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
726 |
-
),
|
727 |
-
'content' => array(
|
728 |
-
'std' => "[ms_pie value=\"20\" color=\"#878BB6\"]\r\n[ms_pie value=\"40\" color=\"#4ACAB4\"]\r\n[ms_pie value=\"10\" color=\"#FF8153\"]\r\n[ms_pie value=\"30\" color=\"#FFEA88\"]\r\n",
|
729 |
-
'type' => 'textarea',
|
730 |
-
'label' => __( 'Content', 'magee-shortcodes'),
|
731 |
-
'desc' => '',
|
732 |
-
),
|
733 |
-
),
|
734 |
-
'shortcode' => "[ms_chart_pie width=\"{{width}}\" height=\"{{height}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{content}}[/ms_chart_pie]",
|
735 |
-
'popup_title' => __( 'Chart Pie Shortcode', 'magee-shortcodes')
|
736 |
-
);
|
737 |
-
|
738 |
-
/*******************************************************
|
739 |
-
* Columns Config
|
740 |
-
********************************************************/
|
741 |
-
|
742 |
-
$magee_shortcodes['column'] = array(
|
743 |
-
'no_preview' => true,
|
744 |
-
'icon' => 'fa-columns',
|
745 |
-
'params' => array(
|
746 |
-
|
747 |
-
),
|
748 |
-
'shortcode' => "[ms_row]\r\n{{child_shortcode}}[/ms_row]",
|
749 |
-
'popup_title' => __( 'Column Shortcode', 'magee-shortcodes'),
|
750 |
-
'name' => __('columns-shortcode/','magee-shortocdes'),
|
751 |
-
'child_shortcode' => array(
|
752 |
-
'params' => array(
|
753 |
-
'style' => array(
|
754 |
-
'type' => 'select',
|
755 |
-
'label' => __( 'Column Style', 'magee-shortcodes'),
|
756 |
-
'desc' => __( 'Select the size of column.', 'magee-shortcodes'),
|
757 |
-
'options' => array(
|
758 |
-
'1/1' => __('1/1', 'magee-shortcodes'),
|
759 |
-
'1/2' => __('1/2', 'magee-shortcodes'),
|
760 |
-
'1/3' => __('1/3', 'magee-shortcodes'),
|
761 |
-
'1/4' => __('1/4', 'magee-shortcodes'),
|
762 |
-
'1/5' => __('1/5', 'magee-shortcodes'),
|
763 |
-
'1/6' => __('1/6', 'magee-shortcodes'),
|
764 |
-
'2/3' => __('2/3', 'magee-shortcodes'),
|
765 |
-
'2/5' => __('2/5', 'magee-shortcodes'),
|
766 |
-
'3/4' => __('3/4', 'magee-shortcodes'),
|
767 |
-
'3/5' => __('3/5', 'magee-shortcodes'),
|
768 |
-
'4/5' => __('4/5', 'magee-shortcodes'),
|
769 |
-
'5/6' => __('5/6', 'magee-shortcodes'),
|
770 |
-
)
|
771 |
-
),
|
772 |
-
'content' => array(
|
773 |
-
'std' => __('Column Content', 'magee-shortcodes'),
|
774 |
-
'type' => 'textarea',
|
775 |
-
'label' => __( ' Column Content', 'magee-shortcodes'),
|
776 |
-
'desc' => __( 'Insert the column\'s content', 'magee-shortcodes'),
|
777 |
-
),
|
778 |
-
'align' => array(
|
779 |
-
'std' => __('left', 'magee-shortcodes'),
|
780 |
-
'type' => 'select',
|
781 |
-
'label' => __( 'Content Align', 'magee-shortcodes'),
|
782 |
-
'desc' => '',
|
783 |
-
'options' => array(
|
784 |
-
'left' => __( 'Left', 'magee-shortcodes'),
|
785 |
-
'center' => __( 'Center', 'magee-shortcodes'),
|
786 |
-
'right' => __( 'Right', 'magee-shortcodes'),
|
787 |
-
),
|
788 |
-
),
|
789 |
-
'class' => array(
|
790 |
-
'std' => '',
|
791 |
-
'type' => 'text',
|
792 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
793 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
794 |
-
),
|
795 |
-
'id' => array(
|
796 |
-
'std' => '',
|
797 |
-
'type' => 'text',
|
798 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
799 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
800 |
-
),
|
801 |
-
),
|
802 |
-
'shortcode' => "[ms_column style=\"{{style}}\" align=\"{{align}}\" class=\"{{class}}\" id=\"{{id}}\"]{{content}}[/ms_column]\r\n",
|
803 |
-
)
|
804 |
-
|
805 |
-
);
|
806 |
-
|
807 |
-
/*-----------------------------------------------------------------------------------*/
|
808 |
-
/* Countdowns Config
|
809 |
-
/*-----------------------------------------------------------------------------------*/
|
810 |
-
|
811 |
-
|
812 |
-
$magee_shortcodes['countdowns'] = array(
|
813 |
-
'no_preview' => true,
|
814 |
-
'icon' => 'fa-calendar',
|
815 |
-
'params' => array(
|
816 |
-
|
817 |
-
|
818 |
-
'type' => array(
|
819 |
-
'std' => '',
|
820 |
-
'type' => 'select',
|
821 |
-
'label' => __( 'Type', 'magee-shortcodes' ),
|
822 |
-
'desc' => __('Select type for countdown to show.', 'magee-shortcodes'),
|
823 |
-
'options' => array(
|
824 |
-
'normal' => __('Normal','magee-shortcodes'),
|
825 |
-
'circle' => __('Circle','magee-shortcodes')
|
826 |
-
)
|
827 |
-
),
|
828 |
-
'endtime' => array(
|
829 |
-
'std' => date('d-m-Y H:i',strtotime(' 1 month')),
|
830 |
-
'type' => 'datepicker',
|
831 |
-
'label' => __( 'Set end time for countdown.', 'magee-shortcodes' ),
|
832 |
-
'desc' => '',
|
833 |
-
|
834 |
-
),
|
835 |
-
'day_field_text' => array(
|
836 |
-
'std' => 'Days',
|
837 |
-
'type' => 'text',
|
838 |
-
'label' => __( 'Day Field Text','magee-shortcodes' ),
|
839 |
-
'desc' => '',
|
840 |
-
),
|
841 |
-
'hours_field_text' => array(
|
842 |
-
'std' => 'Hours',
|
843 |
-
'type' => 'text',
|
844 |
-
'label' => __( 'Hours Field Text','magee-shortcodes' ),
|
845 |
-
'desc' => '',
|
846 |
-
),
|
847 |
-
'minutes_field_text' => array(
|
848 |
-
'std' => 'Minutes',
|
849 |
-
'type' => 'text',
|
850 |
-
'label' => __( 'Minutes Field Text','magee-shortcodes' ),
|
851 |
-
'desc' => '',
|
852 |
-
),
|
853 |
-
'seconds_field_text' => array(
|
854 |
-
'std' => 'Seconds',
|
855 |
-
'type' => 'text',
|
856 |
-
'label' => __( 'Seconds Field Text','magee-shortcodes' ),
|
857 |
-
'desc' => '',
|
858 |
-
),
|
859 |
-
'fontcolor' => array(
|
860 |
-
'std' => '',
|
861 |
-
'type' => 'colorpicker',
|
862 |
-
'label' => __( 'Font Color','magee-shortcodes' ),
|
863 |
-
'desc' => __( 'Set font color for countdown.', 'magee-shortcodes')
|
864 |
-
|
865 |
-
),
|
866 |
-
'backgroundcolor' => array(
|
867 |
-
'std' => '',
|
868 |
-
'type' => 'colorpicker',
|
869 |
-
'label' => __( 'Background Color','magee-shortcodes'),
|
870 |
-
'desc' => __( 'Set background color for countdown.','magee-shortcodes')
|
871 |
-
|
872 |
-
),
|
873 |
-
'google_fonts' => array(
|
874 |
-
'std' => '',
|
875 |
-
'type' => 'more_select',
|
876 |
-
'label' => __( 'Google Fonts','magee-shortcodes'),
|
877 |
-
'desc' => __( 'Choose google fonts for countdown.','magee-shortcodes'),
|
878 |
-
'options' => $google_fonts,
|
879 |
-
),
|
880 |
-
'class' => array(
|
881 |
-
'std' => '',
|
882 |
-
'type' => 'text',
|
883 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
884 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
885 |
-
),
|
886 |
-
'id' => array(
|
887 |
-
'std' => '',
|
888 |
-
'type' => 'text',
|
889 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
890 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
891 |
-
),
|
892 |
-
'circle_type_day_color' => array(
|
893 |
-
'std' => '#1abc9c',
|
894 |
-
'type' => 'colorpicker',
|
895 |
-
'label' => __( 'Circle Type Day Color', 'magee-shortcodes' ),
|
896 |
-
'desc' => __( 'If type is circle,the color to be countdowns day nav.', 'magee-shortcodes' )
|
897 |
-
),
|
898 |
-
'circle_type_hours_color' => array(
|
899 |
-
'std' => '#2980b9',
|
900 |
-
'type' => 'colorpicker',
|
901 |
-
'label' => __( 'Circle Type Hours Color', 'magee-shortcodes' ),
|
902 |
-
'desc' => __( 'If type is circle,the color to be countdowns hours nav.', 'magee-shortcodes' )
|
903 |
-
),
|
904 |
-
'circle_type_minutes_color' => array(
|
905 |
-
'std' => '#8e44ad',
|
906 |
-
'type' => 'colorpicker',
|
907 |
-
'label' => __( 'Circle Type Minutes Color', 'magee-shortcodes' ),
|
908 |
-
'desc' => __( 'If type is circle,the color to be countdowns minutes nav.', 'magee-shortcodes' )
|
909 |
-
),
|
910 |
-
'circle_type_seconds_color' => array(
|
911 |
-
'std' => '#f39c12',
|
912 |
-
'type' => 'colorpicker',
|
913 |
-
'label' => __( 'Circle Type Seconds Color', 'magee-shortcodes' ),
|
914 |
-
'desc' => __( 'If type is circle,the color to be countdowns seconds nav.', 'magee-shortcodes' )
|
915 |
-
),
|
916 |
-
|
917 |
-
),
|
918 |
-
'shortcode' => '[ms_countdowns type="{{type}}" nowtime="'.time().'" endtime="{{endtime}}" day_field_text="{{day_field_text}}" hours_field_text="{{hours_field_text}}" minutes_field_text="{{minutes_field_text}}" seconds_field_text="{{seconds_field_text}}" fontcolor="{{fontcolor}}" backgroundcolor="{{backgroundcolor}}" google_fonts="{{google_fonts}}" class="{{class}}" id="{{id}}" circle_type_day_color="{{circle_type_day_color}}" circle_type_hours_color="{{circle_type_hours_color}}" circle_type_minutes_color="{{circle_type_minutes_color}}" circle_type_seconds_color="{{circle_type_seconds_color}}"]',
|
919 |
-
'popup_title' => __( 'Countdowns Shortcode', 'magee-shortcodes' ),
|
920 |
-
'name' => __('countdowns-shortcode/','magee-shortocdes'),
|
921 |
-
);
|
922 |
-
|
923 |
-
|
924 |
-
/*-----------------------------------------------------------------------------------*/
|
925 |
-
/* Counter Box Config
|
926 |
-
/*-----------------------------------------------------------------------------------*/
|
927 |
-
|
928 |
-
|
929 |
-
$magee_shortcodes['counter'] = array(
|
930 |
-
'no_preview' => true,
|
931 |
-
'icon' => 'fa-calculator',
|
932 |
-
'params' => array(
|
933 |
-
|
934 |
-
),
|
935 |
-
'shortcode' => "[ms_row]\r\n{{child_shortcode}}[/ms_row]",
|
936 |
-
'child_shortcode' => array(
|
937 |
-
'params' => array(
|
938 |
-
'box_width' => array(
|
939 |
-
'std' => '1/4',
|
940 |
-
'type' => 'select',
|
941 |
-
'label' => __( 'Box Width', 'magee-shortcodes' ),
|
942 |
-
'desc' => __( 'Select size of counter box', 'magee-shortcodes' ),
|
943 |
-
'options' => array(
|
944 |
-
'1/1' => __('1/1', 'magee-shortcodes'),
|
945 |
-
'1/2' => __('1/2', 'magee-shortcodes'),
|
946 |
-
'1/3' => __('1/3', 'magee-shortcodes'),
|
947 |
-
'1/4' => __('1/4', 'magee-shortcodes'),
|
948 |
-
'1/5' => __('1/5', 'magee-shortcodes'),
|
949 |
-
'1/6' => __('1/6', 'magee-shortcodes'),
|
950 |
-
'2/3' => __('2/3', 'magee-shortcodes'),
|
951 |
-
'2/5' => __('2/5', 'magee-shortcodes'),
|
952 |
-
'3/4' => __('3/4', 'magee-shortcodes'),
|
953 |
-
'3/5' => __('3/5', 'magee-shortcodes'),
|
954 |
-
'4/5' => __('4/5', 'magee-shortcodes'),
|
955 |
-
'5/6' => __('5/6', 'magee-shortcodes'),
|
956 |
-
)
|
957 |
-
),
|
958 |
-
'top_icon' => array(
|
959 |
-
'type' => 'iconpicker',
|
960 |
-
'label' => __( 'Top Icon', 'magee-shortcodes' ),
|
961 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
962 |
-
'options' => $icons
|
963 |
-
),
|
964 |
-
'top_icon_color' => array(
|
965 |
-
'std' => '',
|
966 |
-
'type' => 'colorpicker',
|
967 |
-
'label' => __( 'Top Icon Color', 'magee-shortcodes'),
|
968 |
-
'desc' => __( 'Set color for top icon.','magee-shortcodes')
|
969 |
-
|
970 |
-
),
|
971 |
-
'middle_left_icon' => array(
|
972 |
-
'type' => 'iconpicker',
|
973 |
-
'label' => __( 'Middle Left Icon', 'magee-shortcodes' ),
|
974 |
-
'desc' => __( 'Insert text before the number.', 'magee-shortcodes' ),
|
975 |
-
'options' => $icons
|
976 |
-
),
|
977 |
-
|
978 |
-
'middle_left_text' => array(
|
979 |
-
'std' => '',
|
980 |
-
'type' => 'text',
|
981 |
-
'label' => __( 'Middle Left Text', 'magee-shortcodes' ),
|
982 |
-
'desc' => __( 'Left text of counter num', 'magee-shortcodes' ),
|
983 |
-
),
|
984 |
-
|
985 |
-
'counter_num' => array(
|
986 |
-
'std' => '100',
|
987 |
-
'type' => 'number',
|
988 |
-
'max' => '200',
|
989 |
-
'min' => '0',
|
990 |
-
'label' => __( 'Counter Num', 'magee-shortcodes' ),
|
991 |
-
'desc' => __( 'The animated counter number.', 'magee-shortcodes' ),
|
992 |
-
),
|
993 |
-
'middle_right_text' => array(
|
994 |
-
'std' => '',
|
995 |
-
'type' => 'text',
|
996 |
-
'label' => __( 'Middle Right Text', 'magee-shortcodes' ),
|
997 |
-
'desc' => __( 'Insert text after the number.', 'magee-shortcodes' ),
|
998 |
-
),
|
999 |
-
|
1000 |
-
'bottom_title' => array(
|
1001 |
-
'std' => '',
|
1002 |
-
'type' => 'text',
|
1003 |
-
'label' => __( 'Bottom Title', 'magee-shortcodes' ),
|
1004 |
-
'desc' => __( 'Insert Title for counter.', 'magee-shortcodes' ),
|
1005 |
-
),
|
1006 |
-
|
1007 |
-
'border' => array(
|
1008 |
-
'type' => 'choose',
|
1009 |
-
'label' => __( 'Display Border', 'magee-shortcodes' ),
|
1010 |
-
'desc' => __( 'Choose to display border for counter.', 'magee-shortcodes' ),
|
1011 |
-
'options' => array(
|
1012 |
-
'no' => __('No', 'magee-shortcodes' ),
|
1013 |
-
'yes' => __('Yes', 'magee-shortcodes' ),
|
1014 |
-
)
|
1015 |
-
|
1016 |
-
),
|
1017 |
-
'class' => array(
|
1018 |
-
'std' => '',
|
1019 |
-
'type' => 'text',
|
1020 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
1021 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
1022 |
-
),
|
1023 |
-
'id' => array(
|
1024 |
-
'std' => '',
|
1025 |
-
'type' => 'text',
|
1026 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
1027 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
1028 |
-
)
|
1029 |
-
),
|
1030 |
-
'shortcode' => "[ms_counter box_width=\"{{box_width}}\" top_icon=\"{{top_icon}}\" top_icon_color=\"{{top_icon_color}}\" middle_left_icon=\"{{middle_left_icon}}\" counter_num=\"{{counter_num}}\" middle_left_text=\"{{middle_left_text}}\" middle_right_text=\"{{middle_right_text}}\" bottom_title=\"{{bottom_title}}\" border=\"{{border}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n",
|
1031 |
-
),
|
1032 |
-
'popup_title' => __( 'Counter Shortcode', 'magee-shortcodes' ),
|
1033 |
-
'name' => __('counter-box-shortcode/','magee-shortocdes'),
|
1034 |
-
);
|
1035 |
-
|
1036 |
-
|
1037 |
-
/*******************************************************
|
1038 |
-
* Custom Box Config
|
1039 |
-
********************************************************/
|
1040 |
-
$magee_shortcodes['custom_box'] = array(
|
1041 |
-
'no_preview' => true,
|
1042 |
-
'icon' => 'fa-list-alt',
|
1043 |
-
'params' => array(
|
1044 |
-
'content' => array(
|
1045 |
-
'std' => __('Custom Box Content', 'magee-shortcodes'),
|
1046 |
-
'type' => 'textarea',
|
1047 |
-
'label' => __( 'Content', 'magee-shortcodes' ),
|
1048 |
-
'desc' => __( 'Insert content for custom box.', 'magee-shortcodes' ),
|
1049 |
-
),
|
1050 |
-
'backgroundimage' => array(
|
1051 |
-
'type' => 'uploader',
|
1052 |
-
'label' => __( 'Background Image', 'magee-shortcodes' ),
|
1053 |
-
'desc' => __( 'Upload an image to display in background of custom box.', 'magee-shortcodes' ),
|
1054 |
-
),
|
1055 |
-
'fixed_background' => array(
|
1056 |
-
'type' => 'choose',
|
1057 |
-
'std' => 'yes',
|
1058 |
-
'label' => __( 'Fixed Background', 'magee-shortcodes' ),
|
1059 |
-
'desc' => __( 'Choose to fixed Background Image', 'magee-shortcodes' ),
|
1060 |
-
'options' => $choices,
|
1061 |
-
),
|
1062 |
-
'background_position' => array(
|
1063 |
-
'type' => 'select',
|
1064 |
-
'std' => 'top left',
|
1065 |
-
'label' => __( 'Background Position' , 'magee-shortcodes'),
|
1066 |
-
'desc' => __( 'Choose the postion of the background image' , 'magee-shortcodes'),
|
1067 |
-
'options' => array(
|
1068 |
-
'top left' => __( 'Top Left', 'magee-shortcodes' ),
|
1069 |
-
'top center' => __( 'Top Center', 'magee-shortcodes' ),
|
1070 |
-
'top right' => __( 'Top Right', 'magee-shortcodes' ),
|
1071 |
-
'center left' => __( 'Center Left', 'magee-shortcodes' ),
|
1072 |
-
'center center' => __( 'Center Center', 'magee-shortcodes' ),
|
1073 |
-
'center right' => __( 'Center Right', 'magee-shortcodes' ),
|
1074 |
-
'bottom left' => __( 'Bottom Left', 'magee-shortcodes' ),
|
1075 |
-
'bottom center' => __( 'Bottom Center', 'magee-shortcodes' ),
|
1076 |
-
'bottom right' => __( 'Bottom Right', 'magee-shortcodes' )
|
1077 |
-
)
|
1078 |
-
),
|
1079 |
-
'padding' => array(
|
1080 |
-
'std' => '30',
|
1081 |
-
'type' => 'number',
|
1082 |
-
'min' => '0',
|
1083 |
-
'max' => '100',
|
1084 |
-
'label' => __( 'Padding', 'magee-shortcodes' ),
|
1085 |
-
'desc' => __( 'Content Padding. eg:30px', 'magee-shortcodes')
|
1086 |
-
),
|
1087 |
-
'class' => array(
|
1088 |
-
'std' => '',
|
1089 |
-
'type' => 'text',
|
1090 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
1091 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
1092 |
-
),
|
1093 |
-
'id' => array(
|
1094 |
-
'std' => '',
|
1095 |
-
'type' => 'text',
|
1096 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
1097 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1098 |
-
),
|
1099 |
-
),
|
1100 |
-
'shortcode' => '[ms_custom_box backgroundimage="{{backgroundimage}}" fixed_background="{{fixed_background}}" background_position="{{background_position}}" padding="{{padding}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_custom_box]',
|
1101 |
-
'popup_title' => __( ' Custom Box Shortcode', 'magee-shortcodes'),
|
1102 |
-
'name' => __('custom-box-shortcode/','magee-shortocdes'),
|
1103 |
-
);
|
1104 |
-
|
1105 |
-
/*-----------------------------------------------------------------------------------*/
|
1106 |
-
/* Dailymotion Config
|
1107 |
-
/*-----------------------------------------------------------------------------------*/
|
1108 |
-
|
1109 |
-
$magee_shortcodes['dailymotion'] = array(
|
1110 |
-
'no_preview' => true,
|
1111 |
-
'icon' => 'fa-video-camera',
|
1112 |
-
'params' => array(
|
1113 |
-
|
1114 |
-
'link' => array(
|
1115 |
-
'std' => '',
|
1116 |
-
'type' => 'text',
|
1117 |
-
'label' => __( 'Dailymotion URL', 'magee-shortcodes' ),
|
1118 |
-
'desc' => __( 'Add the URL the video will link to, ex: http://example.com.', 'magee-shortcodes' ),
|
1119 |
-
),
|
1120 |
-
'width' => array(
|
1121 |
-
'std' => '100%',
|
1122 |
-
'type' => 'text',
|
1123 |
-
'label' => __('Width','magee-shortcodes'),
|
1124 |
-
'desc' => __('In pixels (px), eg:1px.','magee-shortcodes'),
|
1125 |
-
),
|
1126 |
-
'height' => array(
|
1127 |
-
'std' => '100%',
|
1128 |
-
'type' => 'text',
|
1129 |
-
'label' => __('Height','magee-shortcodes'),
|
1130 |
-
'desc' => __('In pixels (px), eg:1px.','magee-shortcodes'),
|
1131 |
-
),
|
1132 |
-
'mute' => array(
|
1133 |
-
'std' => '',
|
1134 |
-
'type' => 'choose',
|
1135 |
-
'label' => __('Mute Video' ,'magee-shortcodes'),
|
1136 |
-
'desc' => __('Choose to mute the video.','magee-shortcodes'),
|
1137 |
-
'options' => $reverse_choices
|
1138 |
-
),
|
1139 |
-
'autoplay' =>array(
|
1140 |
-
'std' => '',
|
1141 |
-
'type' => 'choose',
|
1142 |
-
'label' => __('Autoplay Video','magee-shortcodes'),
|
1143 |
-
'desc' => __('Choose to autoplay the video.','magee-shortcodes'),
|
1144 |
-
'options' => array(
|
1145 |
-
'yes' => __('Yes','magee-shortcodes'),
|
1146 |
-
'no' => __('No','magee-shortcodes'),
|
1147 |
-
)
|
1148 |
-
),
|
1149 |
-
'loop' =>array(
|
1150 |
-
'std' => '',
|
1151 |
-
'type' => 'choose',
|
1152 |
-
'label' => __('Loop Video','magee-shortcodes'),
|
1153 |
-
'desc' => __('Choose to loop the video.','magee-shortcodes'),
|
1154 |
-
'options' => array(
|
1155 |
-
'yes' => __('Yes','magee-shortcodes'),
|
1156 |
-
'no' => __('No','magee-shortcodes')
|
1157 |
-
)
|
1158 |
-
),
|
1159 |
-
'controls' =>array(
|
1160 |
-
'std' => '',
|
1161 |
-
'type' => 'choose',
|
1162 |
-
'label' => __('Show Controls','magee-shortcodes'),
|
1163 |
-
'desc' => __('Choose to display controls for the video player.','magee-shortcodes'),
|
1164 |
-
'options' => array(
|
1165 |
-
'yes' => __('Yes','magee-shortcodes'),
|
1166 |
-
'no' => __('No','magee-shortcodes')
|
1167 |
-
)
|
1168 |
-
),
|
1169 |
-
'class' =>array(
|
1170 |
-
'std' => '',
|
1171 |
-
'type' => 'text',
|
1172 |
-
'label' => __('CSS Class','magee-shortcodes'),
|
1173 |
-
'desc' => __('Add a class to the wrapping HTML element.','magee-shortcodes')
|
1174 |
-
),
|
1175 |
-
'id' => array(
|
1176 |
-
'std' => '',
|
1177 |
-
'type' => 'text',
|
1178 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
1179 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1180 |
-
),
|
1181 |
-
),
|
1182 |
-
'shortcode' => '[ms_dailymotion link="{{link}}" width="{{width}}" height="{{height}}" mute="{{mute}}" autoplay="{{autoplay}}" loop="{{loop}}" controls="{{controls}}" class="{{class}}" id="{{id}}"][/ms_dailymotion]',
|
1183 |
-
'popup_title' => __( 'Dailymotion Shortcode', 'magee-shortcodes' ),
|
1184 |
-
'name' => __('dailymotion-shortcode/','magee-shortocdes'),
|
1185 |
-
);
|
1186 |
-
|
1187 |
-
|
1188 |
-
/*******************************************************
|
1189 |
-
* Divider Config
|
1190 |
-
********************************************************/
|
1191 |
-
|
1192 |
-
$magee_shortcodes['divider'] = array(
|
1193 |
-
'no_preview' => true,
|
1194 |
-
'icon' => 'fa-ellipsis-h',
|
1195 |
-
'params' => array(
|
1196 |
-
'style' => array(
|
1197 |
-
'type' => 'select',
|
1198 |
-
'label' => __( 'Divider Style', 'magee-shortcodes' ),
|
1199 |
-
'desc' => __( 'Select the Divider\'s Style.', 'magee-shortcodes' ),
|
1200 |
-
'options' => array(
|
1201 |
-
'normal' => __('Normal', 'magee-shortcodes'),
|
1202 |
-
'shadow' => __('Shadow', 'magee-shortcodes'),
|
1203 |
-
'dashed' => __('Dashed', 'magee-shortcodes'),
|
1204 |
-
'dotted' => __('Dotted', 'magee-shortcodes'),
|
1205 |
-
'double_line' => __('Double Line', 'magee-shortcodes'),
|
1206 |
-
'double_dashed' => __('Double Dashed', 'magee-shortcodes'),
|
1207 |
-
'double_dotted' => __('Double Dotted', 'magee-shortcodes'),
|
1208 |
-
'image' => __('Image', 'magee-shortcodes'),
|
1209 |
-
'icon' => __('Icon', 'magee-shortcodes'),
|
1210 |
-
'back_to_top' => __('Back to Top', 'magee-shortcodes'),
|
1211 |
-
)
|
1212 |
-
),
|
1213 |
-
'width' => array(
|
1214 |
-
'std' => '100%',
|
1215 |
-
'type' => 'text',
|
1216 |
-
'label' => __( 'Width', 'magee-shortcodes' ),
|
1217 |
-
'desc' => __( 'In pixels. Default: 100%', 'magee-shortcodes' ),
|
1218 |
-
),
|
1219 |
-
'align' => array(
|
1220 |
-
'type' => 'select',
|
1221 |
-
'label' => __( 'Align', 'magee-shortcodes' ),
|
1222 |
-
'desc' => __( 'When the width is not 100%.', 'magee-shortcodes' ),
|
1223 |
-
'options' => array(
|
1224 |
-
'left' => __('Left', 'magee-shortcodes'),
|
1225 |
-
'center' => __('Center', 'magee-shortcodes'),
|
1226 |
-
)
|
1227 |
-
),
|
1228 |
-
'margin_top' => array(
|
1229 |
-
'std' => '30',
|
1230 |
-
'type' => 'number',
|
1231 |
-
'min' => '0',
|
1232 |
-
'max' => '100',
|
1233 |
-
'label' => __( 'Margin Top', 'magee-shortcodes' ),
|
1234 |
-
'desc' => __( 'Spacing above the separator. In pixels.', 'magee-shortcodes' ),
|
1235 |
-
),
|
1236 |
-
'margin_bottom' => array(
|
1237 |
-
'std' => '30',
|
1238 |
-
'type' => 'number',
|
1239 |
-
'max' => '100',
|
1240 |
-
'min' => '0',
|
1241 |
-
'label' => __( 'Margin Bottom', 'magee-shortcodes' ),
|
1242 |
-
'desc' => __( 'Spacing under the separator. In pixels.', 'magee-shortcodes' ),
|
1243 |
-
),
|
1244 |
-
|
1245 |
-
'border_size' => array(
|
1246 |
-
'std' => '5',
|
1247 |
-
'type' => 'number',
|
1248 |
-
'max' => '50',
|
1249 |
-
'min' => '0',
|
1250 |
-
'label' => __( 'Border Size', 'magee-shortcodes' ),
|
1251 |
-
'desc' => __( 'In pixels (px), eg: 1px. ', 'magee-shortcodes' ),
|
1252 |
-
),
|
1253 |
-
'border_color' => array(
|
1254 |
-
'std' => '#f2f2f2',
|
1255 |
-
'type' => 'colorpicker',
|
1256 |
-
'label' => __( 'Border Color', 'magee-shortcodes' ),
|
1257 |
-
'desc' => __( 'Set the border color.', 'magee-shortcodes' )
|
1258 |
-
),
|
1259 |
-
|
1260 |
-
'icon' => array(
|
1261 |
-
'type' => 'iconpicker',
|
1262 |
-
'label' => __( 'Icon', 'magee-shortcodes' ),
|
1263 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
1264 |
-
'options' => $icons
|
1265 |
-
),
|
1266 |
-
|
1267 |
-
'class' => array(
|
1268 |
-
'std' => '',
|
1269 |
-
'type' => 'text',
|
1270 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
1271 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
1272 |
-
),
|
1273 |
-
'id' => array(
|
1274 |
-
'std' => '',
|
1275 |
-
'type' => 'text',
|
1276 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
1277 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1278 |
-
),
|
1279 |
-
),
|
1280 |
-
'shortcode' => '[ms_divider style="{{style}}" align="{{align}}" width="{{width}}" margin_top="{{margin_top}}" margin_bottom="{{margin_bottom}}" border_size="{{border_size}}" border_color="{{border_color}}" icon="{{icon}}" class="{{class}}" id="{{id}}"][/ms_divider]',
|
1281 |
-
'popup_title' => __( 'Divider Shortcode', 'magee-shortcodes'),
|
1282 |
-
'name' => __('divider-shortcode/','magee-shortocdes'),
|
1283 |
-
);
|
1284 |
-
|
1285 |
-
/*-----------------------------------------------------------------------------------*/
|
1286 |
-
/* Document Config
|
1287 |
-
/*-----------------------------------------------------------------------------------*/
|
1288 |
-
|
1289 |
-
$magee_shortcodes['document'] = array(
|
1290 |
-
'no_preview' => true,
|
1291 |
-
'icon' => 'fa-file-text-o',
|
1292 |
-
'params' => array(
|
1293 |
-
'url' => array(
|
1294 |
-
'std' => '',
|
1295 |
-
'type' => 'link',
|
1296 |
-
'label' => __( 'Doc URL','magee-shortcodes'),
|
1297 |
-
'desc' => __( 'Upload document to display. Supported formats: doc, xls, pdf etc.','magee-shortcodes')
|
1298 |
-
),
|
1299 |
-
'width' => array(
|
1300 |
-
'std' => '300',
|
1301 |
-
'type' => 'number',
|
1302 |
-
'max' => '1000',
|
1303 |
-
'min' => '0',
|
1304 |
-
'label' => __( 'Width', 'magee-shortcodes'),
|
1305 |
-
'desc' => __( 'Set width for doc.', 'magee-shortcodes')
|
1306 |
-
),
|
1307 |
-
'height' => array(
|
1308 |
-
'std' => '300',
|
1309 |
-
'type' => 'number',
|
1310 |
-
'max' => '1000',
|
1311 |
-
'min' => '0',
|
1312 |
-
'label' => __( 'Height', 'magee-shortcodes'),
|
1313 |
-
'desc' => __( 'Set height for doc.', 'magee-shortcodes')
|
1314 |
-
),
|
1315 |
-
'responsive' => array(
|
1316 |
-
'type' => 'choose',
|
1317 |
-
'label' => __( 'Responsive','magee-shortcodes'),
|
1318 |
-
'desc' => __( 'Choose to responsive or not', 'magee-shortcodes'),
|
1319 |
-
'options' => $choices
|
1320 |
-
),
|
1321 |
-
'viewer' => array(
|
1322 |
-
'type' => 'select',
|
1323 |
-
'label' => __('Viewer','magee-shortcodes'),
|
1324 |
-
'desc' => __( 'Choose viewer for document.','magee-shortocodes'),
|
1325 |
-
'options' => array(
|
1326 |
-
'google' => __( 'Google','magee-shortcodes'),
|
1327 |
-
'microsoft' => __( 'Microsoft','magee-shortcodes'),
|
1328 |
-
)
|
1329 |
-
),
|
1330 |
-
'class' => array(
|
1331 |
-
'std' => '',
|
1332 |
-
'type' => 'text',
|
1333 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
1334 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
1335 |
-
),
|
1336 |
-
'id' => array(
|
1337 |
-
'std' => '',
|
1338 |
-
'type' => 'text',
|
1339 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
1340 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1341 |
-
),
|
1342 |
-
),
|
1343 |
-
'shortcode' => '[ms_document url="{{url}}" width="{{width}}" height="{{height}}" responsive="{{responsive}}" viewer="{{viewer}}" class="{{class}}" id="{{id}}"][/ms_document]',
|
1344 |
-
'popup_title' => __( 'Document Shortcode','magee-shortcodes'),
|
1345 |
-
'name' => __('document-shortcode/','magee-shortocdes'),
|
1346 |
-
);
|
1347 |
-
|
1348 |
-
/*-----------------------------------------------------------------------------------*/
|
1349 |
-
/* Dropcap Config
|
1350 |
-
/*-----------------------------------------------------------------------------------*/
|
1351 |
-
|
1352 |
-
$magee_shortcodes['dropcap'] = array(
|
1353 |
-
'no_preview' => true,
|
1354 |
-
'icon' => 'fa-square',
|
1355 |
-
'params' => array(
|
1356 |
-
'content' => array(
|
1357 |
-
'std' => 'A',
|
1358 |
-
'type' => 'textarea',
|
1359 |
-
'label' => __( 'Dropcap Letter', 'magee-shortcodes' ),
|
1360 |
-
'desc' => __( 'Add the letter to be used as dropcap', 'magee-shortcodes' ),
|
1361 |
-
),
|
1362 |
-
'color' => array(
|
1363 |
-
'type' => 'colorpicker',
|
1364 |
-
'label' => __( 'Color', 'magee-shortcodes' ),
|
1365 |
-
'desc' => __( 'Controls the color of the dropcap letter. Leave blank for theme option selection.', 'magee ')
|
1366 |
-
),
|
1367 |
-
'boxed' => array(
|
1368 |
-
'type' => 'choose',
|
1369 |
-
'label' => __( 'Boxed Dropcap', 'magee-shortcodes' ),
|
1370 |
-
'desc' => __( 'Choose to get a boxed dropcap.', 'magee-shortcodes' ),
|
1371 |
-
'options' => $reverse_choices
|
1372 |
-
),
|
1373 |
-
'boxedradius' => array(
|
1374 |
-
'std' => '8',
|
1375 |
-
'type' => 'number',
|
1376 |
-
'max' => '50',
|
1377 |
-
'min' => '0',
|
1378 |
-
'label' => __( 'Box Radius', 'magee-shortcodes' ),
|
1379 |
-
'desc' => __('Choose the radius of the boxed dropcap. In pixels (px), eg: 1px', 'magee-shortcodes')
|
1380 |
-
),
|
1381 |
-
'class' => array(
|
1382 |
-
'std' => '',
|
1383 |
-
'type' => 'text',
|
1384 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
1385 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
1386 |
-
),
|
1387 |
-
'id' => array(
|
1388 |
-
'std' => '',
|
1389 |
-
'type' => 'text',
|
1390 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
1391 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1392 |
-
),
|
1393 |
-
),
|
1394 |
-
'shortcode' => '[ms_dropcap color="{{color}}" boxed="{{boxed}}" boxed_radius="{{boxedradius}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_dropcap]',
|
1395 |
-
'popup_title' => __( 'Dropcap Shortcode', 'magee-shortcodes' ),
|
1396 |
-
'name' => __('dropcap-shortcode/','magee-shortocdes'),
|
1397 |
-
);
|
1398 |
-
|
1399 |
-
/*-----------------------------------------------------------------------------------*/
|
1400 |
-
/* Dummy_image Config
|
1401 |
-
/*-----------------------------------------------------------------------------------*/
|
1402 |
-
|
1403 |
-
$magee_shortcodes['dummy_image'] = array(
|
1404 |
-
'no_preview' => true,
|
1405 |
-
'icon' => 'fa-picture-o',
|
1406 |
-
'params' => array(
|
1407 |
-
'style' =>array(
|
1408 |
-
'type' => 'select',
|
1409 |
-
'label' => __( 'Style','magee-shortcodes'),
|
1410 |
-
'desc' => __( 'Select style for dummy image','magee-shortcodes'),
|
1411 |
-
'options' => array(
|
1412 |
-
'any' => __( 'Any', 'magee-shortcodes' ),
|
1413 |
-
'transport' => __( 'Transport', 'magee-shortcodes' ),
|
1414 |
-
'technics' => __( 'Technics', 'magee-shortcodes' ),
|
1415 |
-
'people' => __( 'People', 'magee-shortcodes' ),
|
1416 |
-
'sports' => __( 'Sports', 'magee-shortcodes' ),
|
1417 |
-
'cats' => __( 'Cats', 'magee-shortcodes' ),
|
1418 |
-
'city' => __( 'City', 'magee-shortcodes' ),
|
1419 |
-
'food' => __( 'Food', 'magee-shortcodes' ),
|
1420 |
-
'nightlife' => __( 'Night life', 'magee-shortcodes' ),
|
1421 |
-
'fashion' => __( 'Fashion', 'magee-shortcodes' ),
|
1422 |
-
'animals' => __( 'Animals', 'magee-shortcodes' ),
|
1423 |
-
'business' => __( 'Business', 'magee-shortcodes' ),
|
1424 |
-
'nature' => __( 'Nature', 'magee-shortcodes' ),
|
1425 |
-
'abstract' => __( 'Abstract', 'magee-shortcodes' ),
|
1426 |
-
)
|
1427 |
-
),
|
1428 |
-
'width' => array(
|
1429 |
-
'std' => '500',
|
1430 |
-
'type' => 'number',
|
1431 |
-
'max' => '1000',
|
1432 |
-
'min' => '0' ,
|
1433 |
-
'label' => __( 'Width', 'magee-shortcodes'),
|
1434 |
-
'desc' => __( 'Set width for image.', 'magee-shortcodes')
|
1435 |
-
),
|
1436 |
-
'height' => array(
|
1437 |
-
'std' => '300',
|
1438 |
-
'type' => 'number',
|
1439 |
-
'max' => '1000',
|
1440 |
-
'min' => '0',
|
1441 |
-
'label' => __( 'Height', 'magee-shortcodes'),
|
1442 |
-
'desc' => __( 'Set height for image.', 'magee-shortcodes')
|
1443 |
-
),
|
1444 |
-
'class' => array(
|
1445 |
-
'std' => '',
|
1446 |
-
'type' => 'text',
|
1447 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
1448 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
1449 |
-
),
|
1450 |
-
'id' => array(
|
1451 |
-
'std' => '',
|
1452 |
-
'type' => 'text',
|
1453 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
1454 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1455 |
-
),
|
1456 |
-
|
1457 |
-
),
|
1458 |
-
'shortcode' => '[ms_dummy_image style="{{style}}" width="{{width}}" height="{{height}}" class="{{class}}" id="{{id}}"][/ms_dummy_image]' ,
|
1459 |
-
'popup_title' => __( 'Dummy Image Shortcode','magee-shortcodes'),
|
1460 |
-
'name' => __('dummy-image-shortcode/','magee-shortocdes'),
|
1461 |
-
);
|
1462 |
-
|
1463 |
-
|
1464 |
-
/*-----------------------------------------------------------------------------------*/
|
1465 |
-
/* Dummy_text Config
|
1466 |
-
/*-----------------------------------------------------------------------------------*/
|
1467 |
-
|
1468 |
-
$magee_shortcodes['dummy_text'] = array(
|
1469 |
-
'no_preview' => true,
|
1470 |
-
'icon' => 'fa-text-height',
|
1471 |
-
'params' => array(
|
1472 |
-
'style' =>array(
|
1473 |
-
'type' => 'select',
|
1474 |
-
'label' => __( 'Style','magee-shortcodes'),
|
1475 |
-
'desc' => __( 'Select text type.','magee-shortcodes'),
|
1476 |
-
'options' => array(
|
1477 |
-
'paras' => __( 'Paragraphs', 'magee-shortcodes' ),
|
1478 |
-
'words' => __( 'Words', 'magee-shortcodes' ),
|
1479 |
-
'bytes' => __( 'Bytes', 'magee-shortcodes' ),
|
1480 |
-
)
|
1481 |
-
),
|
1482 |
-
'amount' => array(
|
1483 |
-
'std' => '3',
|
1484 |
-
'type' => 'number',
|
1485 |
-
'max' => '50',
|
1486 |
-
'min' => '0',
|
1487 |
-
'label' => __( 'Amount','magee-shortcodes'),
|
1488 |
-
'desc' => __( 'Choose how many paragraphs or words to show','magee-shortcodes')
|
1489 |
-
),
|
1490 |
-
'class' => array(
|
1491 |
-
'std' => '',
|
1492 |
-
'type' => 'text',
|
1493 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
1494 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
1495 |
-
),
|
1496 |
-
'id' => array(
|
1497 |
-
'std' => '',
|
1498 |
-
'type' => 'text',
|
1499 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
1500 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1501 |
-
),
|
1502 |
-
),
|
1503 |
-
'shortcode' => '[ms_dummy_text style="{{style}}" amount="{{amount}}" class="{{class}}" id="{{id}}"][/ms_dummy_text]' ,
|
1504 |
-
'popup_title' => __( 'Dummy Text Shortcode','magee-shortcodes'),
|
1505 |
-
'name' => __('dummy-text-shortcode/','magee-shortocdes'),
|
1506 |
-
);
|
1507 |
-
|
1508 |
-
|
1509 |
-
/*-----------------------------------------------------------------------------------*/
|
1510 |
-
/* Expand Config
|
1511 |
-
/*-----------------------------------------------------------------------------------*/
|
1512 |
-
|
1513 |
-
$magee_shortcodes['expand'] = array(
|
1514 |
-
'no_preview' => true,
|
1515 |
-
'icon' => 'fa-sort-amount-asc',
|
1516 |
-
'params' => array(
|
1517 |
-
'more_icon' => array(
|
1518 |
-
'type' => 'iconpicker',
|
1519 |
-
'label' => __('More Icon' ,'magee-shortcodes'),
|
1520 |
-
'desc' => __('Set icon for expand title. Click an icon to select, click again to deselect.','magee-shortcodes'),
|
1521 |
-
'options' => $icons
|
1522 |
-
),
|
1523 |
-
'more_icon_color' => array(
|
1524 |
-
'std' => '',
|
1525 |
-
'type' => 'colorpicker',
|
1526 |
-
'label' => __('More Icon Color' ,'magee-shortcodes'),
|
1527 |
-
'desc' => __('Set color for more icon.','magee-shortcodes'),
|
1528 |
-
),
|
1529 |
-
'more_text' => array(
|
1530 |
-
'std' => '',
|
1531 |
-
'type' => 'text',
|
1532 |
-
'label' => __( 'More Text', 'magee-shortcodes'),
|
1533 |
-
'desc' => __( 'Set text for expand title.', 'magee-shortcodes'),
|
1534 |
-
),
|
1535 |
-
'less_icon' => array(
|
1536 |
-
'type' => 'iconpicker',
|
1537 |
-
'label' => __('Less Icon' ,'magee-shortcodes'),
|
1538 |
-
'desc' => __('Set icon for fold title. Click an icon to select, click again to deselect.','magee-shortcodes'),
|
1539 |
-
'options' => $icons
|
1540 |
-
),
|
1541 |
-
'less_icon_color' => array(
|
1542 |
-
'std' => '',
|
1543 |
-
'type' => 'colorpicker',
|
1544 |
-
'label' => __('Less Icon Color' ,'magee-shortcodes'),
|
1545 |
-
'desc' => __('Set color for less icon.','magee-shortcodes'),
|
1546 |
-
),
|
1547 |
-
'less_text' => array(
|
1548 |
-
'std' => '',
|
1549 |
-
'type' => 'text',
|
1550 |
-
'label' => __( 'Less Text', 'magee-shortcodes'),
|
1551 |
-
'desc' => __( 'Set text for fold title. ', 'magee-shortcodes'),
|
1552 |
-
),
|
1553 |
-
'content' => array(
|
1554 |
-
'std' => '',
|
1555 |
-
'type' => 'textarea',
|
1556 |
-
'label' => __( 'Content', 'magee-shortcodes'),
|
1557 |
-
'desc' => __( 'This text block can be expanded.', 'magee-shortcodes')
|
1558 |
-
),
|
1559 |
-
'class' => array(
|
1560 |
-
'std' => '',
|
1561 |
-
'type' => 'text',
|
1562 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
1563 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
1564 |
-
),
|
1565 |
-
'id' => array(
|
1566 |
-
'std' => '',
|
1567 |
-
'type' => 'text',
|
1568 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
1569 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1570 |
-
),
|
1571 |
-
),
|
1572 |
-
'shortcode' => '[ms_expand class="{{class}}" id="{{id}}" more_icon="{{more_icon}}" more_icon_color="{{more_icon_color}}" more_text="{{more_text}}" less_icon="{{less_icon}}" less_icon_color="{{less_icon_color}}" less_text="{{less_text}}"]{{content}}[/ms_expand]',
|
1573 |
-
'popup_title' => __( 'Expand Shortcode', 'magee-shortcodes'),
|
1574 |
-
'name' => __('expand-shortcode/','magee-shortocdes'),
|
1575 |
-
);
|
1576 |
-
|
1577 |
-
/*-----------------------------------------------------------------------------------*/
|
1578 |
-
/* Feature Boxes Config
|
1579 |
-
/*-----------------------------------------------------------------------------------*/
|
1580 |
-
|
1581 |
-
$magee_shortcodes['featurebox'] = array(
|
1582 |
-
'no_preview' => true,
|
1583 |
-
'icon' => 'fa-list-alt',
|
1584 |
-
'params' => array(
|
1585 |
-
'style' => array(
|
1586 |
-
'type' => 'select',
|
1587 |
-
'label' => __( 'Feature Box Style', 'magee-shortcodes' ),
|
1588 |
-
'desc' => __( 'Select the Feature Box\'s Style.', 'magee-shortcodes' ),
|
1589 |
-
'options' => array(
|
1590 |
-
'1' => __('Icon on Top of Title', 'magee-shortcodes'),
|
1591 |
-
'2' => __('Icon Beside Title and Content', 'magee-shortcodes'),
|
1592 |
-
'3' => __('Icon Beside Title', 'magee-shortcodes'),
|
1593 |
-
'4' => __('Boxed', 'magee-shortcodes'),
|
1594 |
-
)
|
1595 |
-
),
|
1596 |
-
|
1597 |
-
'title' => array(
|
1598 |
-
'std' => 'Feature Box',
|
1599 |
-
'type' => 'text',
|
1600 |
-
'label' => __( 'Title', 'magee-shortcodes' ),
|
1601 |
-
'desc' => __( 'Insert title for feature box.', 'magee-shortcodes' ),
|
1602 |
-
),
|
1603 |
-
|
1604 |
-
'title_font_size' => array(
|
1605 |
-
'std' => '18',
|
1606 |
-
'type' => 'number',
|
1607 |
-
'max' => '50',
|
1608 |
-
'min' => '0',
|
1609 |
-
'label' => __( 'Title Font Size', 'magee-shortcodes' ),
|
1610 |
-
'desc' => __( 'Set font size for title of feature box.', 'magee-shortcodes' ),
|
1611 |
-
),
|
1612 |
-
'title_color' => array(
|
1613 |
-
'type' => 'colorpicker',
|
1614 |
-
'label' => __( 'Title Color', 'magee-shortcodes' ),
|
1615 |
-
'desc' => __( 'Set color for title of feature box.', 'magee-shortcodes' ),
|
1616 |
-
),
|
1617 |
-
'icon_animation_type' => array(
|
1618 |
-
'type' => 'select',
|
1619 |
-
'label' => __( 'Icon Hover Animation', 'magee-shortcodes' ),
|
1620 |
-
'desc' => __( 'Select the Icon\'s Animation.', 'magee-shortcodes' ),
|
1621 |
-
'options' => $animation_type
|
1622 |
-
),
|
1623 |
-
'icon' => array(
|
1624 |
-
'type' => 'icon',
|
1625 |
-
'label' => __( 'Icon', 'magee-shortcodes' ),
|
1626 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
1627 |
-
'options' => $icons
|
1628 |
-
),
|
1629 |
-
'icon_size' => array(
|
1630 |
-
'std' => '46',
|
1631 |
-
'type' => 'number',
|
1632 |
-
'max' => '100',
|
1633 |
-
'min' => '0',
|
1634 |
-
'label' => __( 'Icon Size', 'magee-shortcodes' ),
|
1635 |
-
'desc' => __( 'Set size for icon of feature box.', 'magee-shortcodes' ),
|
1636 |
-
),
|
1637 |
-
'icon_color' => array(
|
1638 |
-
'type' => 'colorpicker',
|
1639 |
-
'label' => __( 'Icon Color', 'magee-shortcodes' ),
|
1640 |
-
'desc' => __( 'Set color for icon of feature box.', 'magee-shortcodes' ),
|
1641 |
-
),
|
1642 |
-
'icon_border_color' => array(
|
1643 |
-
'type' => 'colorpicker',
|
1644 |
-
'label' => __( 'Icon Border Color', 'magee-shortcodes' ),
|
1645 |
-
'desc' => __( 'Set border color for icon of feature box.', 'magee-shortcodes' ),
|
1646 |
-
),
|
1647 |
-
'icon_border_width' => array(
|
1648 |
-
'std' => '0',
|
1649 |
-
'type' => 'number',
|
1650 |
-
'max' => '50',
|
1651 |
-
'min' => '0',
|
1652 |
-
'label' => __( 'Icon Border Width', 'magee-shortcodes' ),
|
1653 |
-
'desc' => __( 'Set border width for icon of feature box.', 'magee-shortcodes' ),
|
1654 |
-
),
|
1655 |
-
|
1656 |
-
'flip_icon' => array(
|
1657 |
-
'std' => '',
|
1658 |
-
'type' => 'select',
|
1659 |
-
'label' => __( 'Flip Icon', 'magee-shortcodes' ),
|
1660 |
-
'desc' => __( 'Choose to flip the icon of feature box.', 'magee-shortcodes' ),
|
1661 |
-
'options' => array(
|
1662 |
-
'none' => __('None', 'magee-shortcodes'),
|
1663 |
-
'horizontal' => __('Horizontal', 'magee-shortcodes'),
|
1664 |
-
'vertical' => __('Vertical', 'magee-shortcodes'),
|
1665 |
-
)
|
1666 |
-
),
|
1667 |
-
|
1668 |
-
'spinning_icon' => array(
|
1669 |
-
'std' => '',
|
1670 |
-
'type' => 'choose',
|
1671 |
-
'label' => __( 'Spinning Icon', 'magee-shortcodes' ),
|
1672 |
-
'desc' => __( 'Choose to spin the icon of feature box.', 'magee-shortcodes' ),
|
1673 |
-
'options' => $reverse_choices
|
1674 |
-
),
|
1675 |
-
|
1676 |
-
'icon_background_color' => array(
|
1677 |
-
'type' => 'colorpicker',
|
1678 |
-
'label' => __( 'Icon Circle Background Color', 'magee-shortcodes' ),
|
1679 |
-
'desc' => __( 'Set background for icon circle of feature box.', 'magee-shortcodes' ),
|
1680 |
-
),
|
1681 |
-
|
1682 |
-
'alignment' => array(
|
1683 |
-
'std' => '',
|
1684 |
-
'type' => 'choose',
|
1685 |
-
'label' => __( 'Icon Alignment', 'magee-shortcodes' ),
|
1686 |
-
'desc' => __( 'Set alignment for style2/style3 of feature box.', 'magee-shortcodes' ),
|
1687 |
-
'options' => array(
|
1688 |
-
'left' => __('Left', 'magee-shortcodes'),
|
1689 |
-
'right' => __('Right', 'magee-shortcodes'),
|
1690 |
-
|
1691 |
-
)
|
1692 |
-
),
|
1693 |
-
'icon_circle' => array(
|
1694 |
-
'std' => '',
|
1695 |
-
'type' => 'choose',
|
1696 |
-
'label' => __( 'Icon Circle', 'magee-shortcodes' ),
|
1697 |
-
'desc' => __( 'Choose to display icon of feature box in circle.', 'magee-shortcodes' ),
|
1698 |
-
'options' => $reverse_choices
|
1699 |
-
),
|
1700 |
-
|
1701 |
-
'icon_image' => array(
|
1702 |
-
'std' => '',
|
1703 |
-
'type' => 'uploader',
|
1704 |
-
'label' => __( 'Icon Image', 'magee-shortcodes' ),
|
1705 |
-
'desc' => __( 'To upload your own icon image, remember to deselect icon above.', 'magee-shortcodes' ),
|
1706 |
-
),
|
1707 |
-
'icon_image_width' => array(
|
1708 |
-
'std' => '0',
|
1709 |
-
'type' => 'number',
|
1710 |
-
'max' => '1000',
|
1711 |
-
'min' => '0',
|
1712 |
-
'label' => __( 'Icon Image Width', 'magee-shortcodes' ),
|
1713 |
-
'desc' => __( 'If using custom icon image, set icon image width. In percentage of pixels (px), eg: 1px.', 'magee-shortcodes' ),
|
1714 |
-
),
|
1715 |
-
'icon_image_height' => array(
|
1716 |
-
'std' => '',
|
1717 |
-
'type' => 'number',
|
1718 |
-
'max' => '1000',
|
1719 |
-
'min' => '0',
|
1720 |
-
'label' => __( 'Icon Image Height', 'magee-shortcodes' ),
|
1721 |
-
'desc' => __( 'If using custom icon image, set icon image height. In percentage of pixels (px), eg: 1px.', 'magee-shortcodes' ),
|
1722 |
-
),
|
1723 |
-
|
1724 |
-
|
1725 |
-
'link_url' => array(
|
1726 |
-
'std' => '',
|
1727 |
-
'type' => 'text',
|
1728 |
-
'label' => __( 'Link URL', 'magee-shortcodes' ),
|
1729 |
-
'desc' => __( 'Set link for feature box, eg: http://example.com.', 'magee-shortcodes' ),
|
1730 |
-
),
|
1731 |
-
'link_target' => array(
|
1732 |
-
'std' => '',
|
1733 |
-
'type' => 'choose',
|
1734 |
-
'label' => __( 'Link Target', 'magee-shortcodes' ),
|
1735 |
-
'desc' => __( '_self = open in same window _blank = open in new window.', 'magee-shortcodes' ),
|
1736 |
-
'options' => array(
|
1737 |
-
'_blank' => __('_blank', 'magee-shortcodes'),
|
1738 |
-
'_self' => __('_self', 'magee-shortcodes'),
|
1739 |
-
|
1740 |
-
)
|
1741 |
-
),
|
1742 |
-
'link_text' => array(
|
1743 |
-
'std' => 'Read More',
|
1744 |
-
'type' => 'text',
|
1745 |
-
'label' => __( 'Link Text', 'magee-shortcodes' ),
|
1746 |
-
'desc' => __( 'Insert link text for feature box. It would not display if you leave it as blank.', 'magee-shortcodes' ),
|
1747 |
-
),
|
1748 |
-
'link_color' => array(
|
1749 |
-
'type' => 'colorpicker',
|
1750 |
-
'label' => __( 'Link Color', 'magee-shortcodes' ),
|
1751 |
-
'desc' => __( 'Set color for link of feature box.', 'magee-shortcodes' ),
|
1752 |
-
),
|
1753 |
-
'content_color' => array(
|
1754 |
-
'type' => 'colorpicker',
|
1755 |
-
'label' => __( 'Content Color', 'magee-shortcodes' ),
|
1756 |
-
'desc' => __( 'Set color for content of feature box.', 'magee-shortcodes' ),
|
1757 |
-
),
|
1758 |
-
'content_box_background_color' => array(
|
1759 |
-
'type' => 'colorpicker',
|
1760 |
-
'label' => __( 'Set box background color for Boxed Style.', 'magee-shortcodes' ),
|
1761 |
-
'desc' => __( 'For Boxed Style', 'magee-shortcodes' ),
|
1762 |
-
),
|
1763 |
-
|
1764 |
-
'class' => array(
|
1765 |
-
'std' => '',
|
1766 |
-
'type' => 'text',
|
1767 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
1768 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
1769 |
-
),
|
1770 |
-
'id' => array(
|
1771 |
-
'std' => '',
|
1772 |
-
'type' => 'text',
|
1773 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
1774 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1775 |
-
),
|
1776 |
-
'content' => array(
|
1777 |
-
'std' => __('Your Content Goes Here', 'magee-shortcodes'),
|
1778 |
-
'type' => 'textarea',
|
1779 |
-
'label' => __( 'Feature Box Content', 'magee-shortcodes' ),
|
1780 |
-
'desc' => '',
|
1781 |
-
),
|
1782 |
-
),
|
1783 |
-
'shortcode' => '[ms_featurebox style="{{style}}" title_font_size="{{title_font_size}}" title_color="{{title_color}}" icon_circle="{{icon_circle}}" icon_size="{{icon_size}}" title="{{title}}" icon="{{icon}}" alignment="{{alignment}}" icon_animation_type="{{icon_animation_type}}" icon_color="{{icon_color}}" icon_background_color="{{icon_background_color}}" icon_border_color="{{icon_border_color}}" icon_border_width="{{icon_border_width}}" flip_icon="{{flip_icon}}" spinning_icon="{{spinning_icon}}" icon_image="{{icon_image}}" icon_image_width="{{icon_image_width}}" icon_image_height="{{icon_image_height}}" link_url="{{link_url}}" link_target="{{link_target}}" link_text="{{link_text}}" link_color="{{link_color}}" content_color="{{content_color}}" content_box_background_color="{{content_box_background_color}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_featurebox]',
|
1784 |
-
'popup_title' => __( 'Feature Box Shortcode', 'magee-shortcodes'),
|
1785 |
-
'name' => __('feature-box-shortcode/','magee-shortcodes'),
|
1786 |
-
);
|
1787 |
-
|
1788 |
-
|
1789 |
-
/*******************************************************
|
1790 |
-
* Flip Box Config
|
1791 |
-
********************************************************/
|
1792 |
-
|
1793 |
-
$magee_shortcodes['flip_box'] = array(
|
1794 |
-
'no_preview' => true,
|
1795 |
-
'icon' => 'fa-list-alt',
|
1796 |
-
'params' => array(
|
1797 |
-
'direction' => array(
|
1798 |
-
'type' => 'select',
|
1799 |
-
'label' => __( 'Direction', 'magee-shortcodes' ),
|
1800 |
-
'desc' => __( 'Select flip directioon.', 'magee-shortcodes' ),
|
1801 |
-
'options' => array(
|
1802 |
-
'horizontal' => __('Horizontal', 'magee-shortcodes'),
|
1803 |
-
'vertical' => __('Vertical', 'magee-shortcodes'),
|
1804 |
-
'flip-left' => __('Flip Left', 'magee-shortcodes'),
|
1805 |
-
'flip-right' => __('Flip Right', 'magee-shortcodes'),
|
1806 |
-
'flip-top' => __('Flip Top', 'magee-shortcodes'),
|
1807 |
-
'flip-bottom' => __('Flip Bottom', 'magee-shortcodes'),
|
1808 |
-
'slide-left' => __('Slide Left', 'magee-shortcodes'),
|
1809 |
-
'slide-right' => __('Slide Right', 'magee-shortcodes'),
|
1810 |
-
'slide-top' => __('Slide Top', 'magee-shortcodes'),
|
1811 |
-
'slide-bottom' => __('Slide Bottom', 'magee-shortcodes'),
|
1812 |
-
)
|
1813 |
-
),
|
1814 |
-
'front_paddings' => array(
|
1815 |
-
'std' => '15',
|
1816 |
-
'type' => 'number',
|
1817 |
-
'max' => '100',
|
1818 |
-
'min' => '0',
|
1819 |
-
'label' => __( 'Front Container Paddings', 'magee-shortcodes' ),
|
1820 |
-
'desc' => __( 'Set paddings for front container of flip box.', 'magee-shortcodes' ),
|
1821 |
-
),
|
1822 |
-
'front_background' => array(
|
1823 |
-
'type' => 'colorpicker',
|
1824 |
-
'std'=>'',
|
1825 |
-
'label' => __( 'Front Background Color', 'magee-shortcodes' ),
|
1826 |
-
'desc' => __( 'Set background color for front container of flip box.', 'magee-shortcodes')
|
1827 |
-
),
|
1828 |
-
'front_color' => array(
|
1829 |
-
'type' => 'colorpicker',
|
1830 |
-
'std' =>'#ffffff',
|
1831 |
-
'label' => __( 'Front Font Color', 'magee-shortcodes' ),
|
1832 |
-
'desc' => __( 'Custom setting only. Set the background color for custom alert boxes.', 'magee-shortcodes')
|
1833 |
-
),
|
1834 |
-
'front_content' => array(
|
1835 |
-
'std' => __('Front Content', 'magee-shortcodes'),
|
1836 |
-
'type' => 'textarea',
|
1837 |
-
'label' => __( 'Front content.', 'magee-shortcodes' ),
|
1838 |
-
'desc' => __( 'Insert content for front container of flip box.', 'magee-shortcodes' ),
|
1839 |
-
),
|
1840 |
-
'back_paddings' => array(
|
1841 |
-
'std' => '15',
|
1842 |
-
'type' => 'number',
|
1843 |
-
'max' => '100',
|
1844 |
-
'min' => '0',
|
1845 |
-
'label' => __( 'Back Container Paddings', 'magee-shortcodes' ),
|
1846 |
-
'desc' => __( 'Set paddings for back container of flip box.', 'magee-shortcodes' ),
|
1847 |
-
),
|
1848 |
-
'back_background' => array(
|
1849 |
-
'std'=>'',
|
1850 |
-
'type' => 'colorpicker',
|
1851 |
-
'label' => __( 'Back Background Color', 'magee-shortcodes' ),
|
1852 |
-
'desc' => __( 'Set background color for back container of flip box.', 'magee-shortcodes')
|
1853 |
-
),
|
1854 |
-
'back_color' => array(
|
1855 |
-
'std' =>'#ffffff',
|
1856 |
-
'type' => 'colorpicker',
|
1857 |
-
'label' => __( 'Back Font Color', 'magee-shortcodes' ),
|
1858 |
-
'desc' => __( 'Custom setting only. Set the background color for custom alert boxes.', 'magee-shortcodes')
|
1859 |
-
),
|
1860 |
-
'back_content' => array(
|
1861 |
-
'std' => __('Back Content', 'magee-shortcodes'),
|
1862 |
-
'type' => 'textarea',
|
1863 |
-
'label' => __( 'Back Content.', 'magee-shortcodes' ),
|
1864 |
-
'desc' => __('Insert content for back container of flip box.', 'magee-shortcodes'),
|
1865 |
-
),
|
1866 |
-
|
1867 |
-
'class' => array(
|
1868 |
-
'std' => '',
|
1869 |
-
'type' => 'text',
|
1870 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
1871 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
1872 |
-
),
|
1873 |
-
'id' => array(
|
1874 |
-
'std' => '',
|
1875 |
-
'type' => 'text',
|
1876 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
1877 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1878 |
-
),
|
1879 |
-
),
|
1880 |
-
'shortcode' => '[ms_flip_box direction="{{direction}}" front_paddings="{{front_paddings}}" front_background="{{front_background}}" front_color="{{front_color}}" back_paddings="{{back_paddings}}" back_background="{{back_background}}" back_color="{{back_color}}" class="{{class}}" id="{{id}}"]{{front_content}}|||{{back_content}}[/ms_flip_box]',
|
1881 |
-
'popup_title' => __( 'Flip Box Shortcode', 'magee-shortcodes'),
|
1882 |
-
'name' => __('flip-box-shortcode/','magee-shortocdes'),
|
1883 |
-
);
|
1884 |
-
|
1885 |
-
/*-----------------------------------------------------------------------------------*/
|
1886 |
-
/* Heading Config
|
1887 |
-
/*-----------------------------------------------------------------------------------*/
|
1888 |
-
|
1889 |
-
$magee_shortcodes['heading'] = array(
|
1890 |
-
'icon' => 'fa-header',
|
1891 |
-
'no_preview' => true,
|
1892 |
-
'params' => array(
|
1893 |
-
|
1894 |
-
'title' => array(
|
1895 |
-
'std' => 'Title Text',
|
1896 |
-
'type' => 'text',
|
1897 |
-
'label' => __( 'Title', 'magee-shortcodes'),
|
1898 |
-
'desc' => __( 'Insert heading text', 'magee-shortcodes')
|
1899 |
-
),
|
1900 |
-
|
1901 |
-
'style' => array(
|
1902 |
-
'type' => 'select',
|
1903 |
-
'label' => __( 'Style', 'magee-shortcodes'),
|
1904 |
-
'std' => 'border',
|
1905 |
-
'desc' => __( 'Choose a heading style. Leave blank as default.', 'magee-shortcodes'),
|
1906 |
-
'options' => array(
|
1907 |
-
'none' => __('None', 'magee-shortcodes' ),
|
1908 |
-
'border' => __('Border', 'magee-shortcodes' ),
|
1909 |
-
'boxed' => __('Boxed', 'magee-shortcodes' ),
|
1910 |
-
'boxed-reverse' => __('Boxed-reverse', 'magee-shortcodes' ),
|
1911 |
-
'doubleline' => __('Doubleline', 'magee-shortcodes' )
|
1912 |
-
)
|
1913 |
-
),
|
1914 |
-
|
1915 |
-
'color' => array(
|
1916 |
-
'type' => 'colorpicker',
|
1917 |
-
'label' => __( 'Font Color', 'magee-shortcodes'),
|
1918 |
-
'desc' => __( 'Set color for heading text.', 'magee-shortcodes'),
|
1919 |
-
),
|
1920 |
-
'border_color' => array(
|
1921 |
-
'type' => 'colorpicker',
|
1922 |
-
'label' => __( 'Border Color', 'magee-shortcodes'),
|
1923 |
-
'desc' => __( 'Set border color for heading.', 'magee-shortcodes'),
|
1924 |
-
),
|
1925 |
-
|
1926 |
-
'text_align' => array(
|
1927 |
-
'type' => 'select',
|
1928 |
-
'label' => __( 'Text Align', 'magee-shortcodes'),
|
1929 |
-
'desc' => __( 'Set text align for this heading.', 'magee-shortcodes'),
|
1930 |
-
'options' => $textalign
|
1931 |
-
),
|
1932 |
-
'font_weight' => array(
|
1933 |
-
'type' => 'select',
|
1934 |
-
'std' => '400',
|
1935 |
-
'label' => __( 'Font Weight', 'magee-shortcodes'),
|
1936 |
-
'desc' => __( 'Set font weight for heading text.', 'magee-shortcodes'),
|
1937 |
-
'options' => array(
|
1938 |
-
'100' => '100',
|
1939 |
-
'200' => '200',
|
1940 |
-
'300' => '300',
|
1941 |
-
'400' => '400',
|
1942 |
-
'500' => '500',
|
1943 |
-
'600' => '600',
|
1944 |
-
'700' => '700',
|
1945 |
-
'800' => '800',
|
1946 |
-
'900' => '900',
|
1947 |
-
)
|
1948 |
-
),
|
1949 |
-
|
1950 |
-
'font_size' => array(
|
1951 |
-
'std' => '36',
|
1952 |
-
'type' => 'number',
|
1953 |
-
'max' => '50',
|
1954 |
-
'min' => '0',
|
1955 |
-
'label' => __( 'Font Size', 'magee-shortcodes'),
|
1956 |
-
'desc' => __( 'Set font size for heading text. In pixels (px), eg: 1px.', 'magee-shortcodes'),
|
1957 |
-
),
|
1958 |
-
'margin_top' => array(
|
1959 |
-
'std' => '0',
|
1960 |
-
'type' => 'number',
|
1961 |
-
'max' => '100',
|
1962 |
-
'min' => '0',
|
1963 |
-
'label' => __( 'Margin Top', 'magee-shortcodes'),
|
1964 |
-
'desc' => __( 'In pixels (px), eg: 1px.', 'magee-shortcodes'),
|
1965 |
-
),
|
1966 |
-
'margin_bottom' => array(
|
1967 |
-
'std' => '0',
|
1968 |
-
'type' => 'number',
|
1969 |
-
'max' => '100',
|
1970 |
-
'min' => '0',
|
1971 |
-
'label' => __( 'Margin Bottom', 'magee-shortcodes'),
|
1972 |
-
'desc' => __( 'In pixels (px), eg: 1px.', 'magee-shortcodes'),
|
1973 |
-
),
|
1974 |
-
'border_width' => array(
|
1975 |
-
'std' => '5',
|
1976 |
-
'type' => 'number',
|
1977 |
-
'max' => '50',
|
1978 |
-
'min' => '0',
|
1979 |
-
'label' => __( 'Border Width', 'magee-shortcodes'),
|
1980 |
-
'desc' => __( 'In pixels (px), eg: 1px.', 'magee-shortcodes'),
|
1981 |
-
),
|
1982 |
-
'responsive_text' => array(
|
1983 |
-
'std' => '',
|
1984 |
-
'type' => 'choose',
|
1985 |
-
'label' => __( 'Responsive Text','magee-shortcodes'),
|
1986 |
-
'desc' => __( 'Choose to display responsive text.', 'magee-shortcodes'),
|
1987 |
-
'options' => $reverse_choices
|
1988 |
-
),
|
1989 |
-
'class' => array(
|
1990 |
-
'std' => '',
|
1991 |
-
'type' => 'text',
|
1992 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
1993 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
1994 |
-
),
|
1995 |
-
'id' => array(
|
1996 |
-
'std' => '',
|
1997 |
-
'type' => 'text',
|
1998 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
1999 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
2000 |
-
),
|
2001 |
-
|
2002 |
-
|
2003 |
-
),
|
2004 |
-
'shortcode' => '[ms_heading style="{{style}}" color="{{color}}" border_color="{{border_color}}" text_align="{{text_align}}" font_weight="{{font_weight}}" font_size="{{font_size}}" margin_top="{{margin_top}}" margin_bottom="{{margin_bottom}}" border_width="{{border_width}}" responsive_text="{{responsive_text}}" class="{{class}}" id="{{id}}"]{{title}}[/ms_heading]',
|
2005 |
-
'popup_title' => __( 'Heading Shortcode', 'magee-shortcodes'),
|
2006 |
-
'name' => __('heading-shortcode/','magee-shortocdes'),
|
2007 |
-
);
|
2008 |
-
|
2009 |
-
/*-----------------------------------------------------------------------------------*/
|
2010 |
-
/* Highlight Config
|
2011 |
-
/*-----------------------------------------------------------------------------------*/
|
2012 |
-
|
2013 |
-
$magee_shortcodes['highlight'] = array(
|
2014 |
-
'no_preview' => true,
|
2015 |
-
'icon' => 'fa-magic',
|
2016 |
-
'params' => array(
|
2017 |
-
|
2018 |
-
'background_color' => array(
|
2019 |
-
'type' => 'colorpicker',
|
2020 |
-
'label' => __( 'Background Color', 'magee-shortcodes' ),
|
2021 |
-
'desc' => __( 'Set background color for highlight item.', 'magee-shortcodes')
|
2022 |
-
),
|
2023 |
-
'border_radius' => array(
|
2024 |
-
'type' => 'number',
|
2025 |
-
'std' =>'5',
|
2026 |
-
'max' => '50',
|
2027 |
-
'min' => '0',
|
2028 |
-
'label' => __( 'Border Radius', 'magee-shortcodes' ),
|
2029 |
-
'desc' => __( 'In pixels (px), eg: 1px.', 'magee-shortcodes' ),
|
2030 |
-
),
|
2031 |
-
'color' => array(
|
2032 |
-
'type' => 'colorpicker',
|
2033 |
-
'label' => __( 'Font Color', 'magee-shortcodes' ),
|
2034 |
-
'desc' => __( 'Set font color for highlight item.', 'magee-shortcodes')
|
2035 |
-
),
|
2036 |
-
'content' => array(
|
2037 |
-
'std' => __('Your Content Goes Here', 'magee-shortcodes'),
|
2038 |
-
'type' => 'textarea',
|
2039 |
-
'label' => __( 'Content to Higlight', 'magee-shortcodes' ),
|
2040 |
-
'desc' => __( 'Insert content to highlight.', 'magee-shortcodes' ),
|
2041 |
-
),
|
2042 |
-
'class' => array(
|
2043 |
-
'std' => '',
|
2044 |
-
'type' => 'text',
|
2045 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
2046 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
2047 |
-
),
|
2048 |
-
'id' => array(
|
2049 |
-
'std' => '',
|
2050 |
-
'type' => 'text',
|
2051 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
2052 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
2053 |
-
),
|
2054 |
-
|
2055 |
-
),
|
2056 |
-
'shortcode' => '[ms_highlight background_color="{{background_color}}" border_radius="{{border_radius}}" color="{{color}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_highlight]',
|
2057 |
-
'popup_title' => __( 'Highlight Shortcode', 'magee-shortcodes' ),
|
2058 |
-
'name' => __('highlight-shortcode/','magee-shortocdes'),
|
2059 |
-
);
|
2060 |
-
|
2061 |
-
|
2062 |
-
/*-----------------------------------------------------------------------------------*/
|
2063 |
-
/* Icon Config
|
2064 |
-
/*-----------------------------------------------------------------------------------*/
|
2065 |
-
|
2066 |
-
$magee_shortcodes['icon'] = array(
|
2067 |
-
'icon' => 'fa-flag',
|
2068 |
-
'no_preview' => true,
|
2069 |
-
'params' => array(
|
2070 |
-
|
2071 |
-
'icon' => array(
|
2072 |
-
'type' => 'icon',
|
2073 |
-
'label' => __( 'Icon', 'magee-shortcodes'),
|
2074 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes'),
|
2075 |
-
'options' => $icons
|
2076 |
-
),
|
2077 |
-
'size' => array(
|
2078 |
-
'type' => 'number',
|
2079 |
-
'std' => '14',
|
2080 |
-
'max' => '50',
|
2081 |
-
'min' => '0',
|
2082 |
-
'label' => __( 'Icon Size', 'magee-shortcodes'),
|
2083 |
-
'desc' => __( 'Set text size for item.', 'magee-shortcodes'),
|
2084 |
-
),
|
2085 |
-
'color' => array(
|
2086 |
-
'type' => 'colorpicker',
|
2087 |
-
'std' => '#fdd200',
|
2088 |
-
'label' => __( 'Icon Color', 'magee-shortcodes'),
|
2089 |
-
'desc' => __( 'Set color for icon.', 'magee-shortcodes'),
|
2090 |
-
),
|
2091 |
-
'icon_box' => array(
|
2092 |
-
'std' => '',
|
2093 |
-
'type' => 'choose',
|
2094 |
-
'label' => __( 'Icon Box', 'magee-shortcodes'),
|
2095 |
-
'desc' => __( 'Choose to display boxed icon.', 'magee-shortcodes'),
|
2096 |
-
'options' => $reverse_choices
|
2097 |
-
),
|
2098 |
-
'class' => array(
|
2099 |
-
'std' => '',
|
2100 |
-
'type' => 'text',
|
2101 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
2102 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
2103 |
-
),
|
2104 |
-
'id' => array(
|
2105 |
-
'std' => '',
|
2106 |
-
'type' => 'text',
|
2107 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
2108 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
2109 |
-
),
|
2110 |
-
|
2111 |
-
),
|
2112 |
-
'shortcode' => '[ms_icon icon="{{icon}}" size="{{size}}" color="{{color}}" icon_box="{{icon_box}}" class="{{class}}" id="{{id}}"]',
|
2113 |
-
'popup_title' => __( 'Icon Shortcode', 'magee-shortcodes'),
|
2114 |
-
'name' => __('icon-shortcode/','magee-shortocdes'),
|
2115 |
-
);
|
2116 |
-
|
2117 |
-
/*-----------------------------------------------------------------------------------*/
|
2118 |
-
/* Image Compare Config
|
2119 |
-
/*-----------------------------------------------------------------------------------*/
|
2120 |
-
|
2121 |
-
$magee_shortcodes['image_compare'] = array(
|
2122 |
-
'icon' => 'fa-file-image-o',
|
2123 |
-
'no_preview' => true,
|
2124 |
-
'params' => array(
|
2125 |
-
'style' => array(
|
2126 |
-
'type' => 'select',
|
2127 |
-
'std' => 'horizontal',
|
2128 |
-
'label' => __( 'Style', 'magee-shortcodes'),
|
2129 |
-
'desc' => __( 'Select how the image compare display.', 'magee-shortcodes'),
|
2130 |
-
'options' => array(
|
2131 |
-
'horizontal' => __('Horizontal', 'magee-shortcodes' ),
|
2132 |
-
'vertical' => __('Vertical', 'magee-shortcodes' )
|
2133 |
-
)
|
2134 |
-
),
|
2135 |
-
'percent' => array(
|
2136 |
-
'type' => 'select',
|
2137 |
-
'std' => '0.5',
|
2138 |
-
'label' => __( 'Percent', 'magee-shortcodes'),
|
2139 |
-
'desc' => __( 'Choose default offset pct', 'magee-shortcodes'),
|
2140 |
-
'options' => $opacity
|
2141 |
-
),
|
2142 |
-
'image_left' => array(
|
2143 |
-
'std' => '',
|
2144 |
-
'type' => 'uploader',
|
2145 |
-
'label' => __( 'Image Left', 'magee-shortcodes' ),
|
2146 |
-
'desc' => __( 'Insert the image displayed in the left.', 'magee-shortcodes')
|
2147 |
-
),
|
2148 |
-
'image_right' => array(
|
2149 |
-
'std' => '',
|
2150 |
-
'type' => 'uploader',
|
2151 |
-
'label' => __( 'Image Right', 'magee-shortcodes' ),
|
2152 |
-
'desc' => __( 'Insert the image displayed in the right.', 'magee-shortcodes')
|
2153 |
-
),
|
2154 |
-
'class' => array(
|
2155 |
-
'std' => '',
|
2156 |
-
'type' => 'text',
|
2157 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
2158 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
2159 |
-
),
|
2160 |
-
'id' => array(
|
2161 |
-
'std' => '',
|
2162 |
-
'type' => 'text',
|
2163 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
2164 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
2165 |
-
),
|
2166 |
-
),
|
2167 |
-
'shortcode' => '[ms_image_compare style="{{style}}" percent="{{percent}}" image_left="{{image_left}}" image_right="{{image_right}}" class="{{class}}" id="{{id}}"]',
|
2168 |
-
'popup_title' => __( 'Image Compare Shortcode', 'magee-shortcodes' ),
|
2169 |
-
'name' => __('image-compare-shortcode/','magee-shortocdes'),
|
2170 |
-
);
|
2171 |
-
|
2172 |
-
/*-----------------------------------------------------------------------------------*/
|
2173 |
-
/* Image Frame Config
|
2174 |
-
/*-----------------------------------------------------------------------------------*/
|
2175 |
-
|
2176 |
-
$magee_shortcodes['image_frame'] = array(
|
2177 |
-
'icon' => 'fa-file-image-o',
|
2178 |
-
'no_preview' => true,
|
2179 |
-
'params' => array(
|
2180 |
-
|
2181 |
-
'src' => array(
|
2182 |
-
'type' => 'uploader',
|
2183 |
-
'label' => __( 'Image', 'magee-shortcodes' ),
|
2184 |
-
'desc' => __( 'Upload an image to display.', 'magee-shortcodes' ),
|
2185 |
-
),
|
2186 |
-
'link' => array(
|
2187 |
-
'std' => '',
|
2188 |
-
'type' => 'text',
|
2189 |
-
'label' => __( 'Image Link URL', 'magee-shortcodes' ),
|
2190 |
-
'desc' => __( 'Add the URL the picture will link to, ex: http://example.com.', 'magee-shortcodes' ),
|
2191 |
-
),
|
2192 |
-
'link_target' => array(
|
2193 |
-
'std' => '',
|
2194 |
-
'type' => 'choose',
|
2195 |
-
'label' => __( 'Link Target', 'magee-shortcodes' ),
|
2196 |
-
'desc' => __( '_self = open in same window _blank = open in new window.', 'magee-shortcodes' ),
|
2197 |
-
'options' => array(
|
2198 |
-
'_blank' => __('_blank', 'magee-shortcodes'),
|
2199 |
-
'_self' => __('_self', 'magee-shortcodes'),
|
2200 |
-
|
2201 |
-
),
|
2202 |
-
),
|
2203 |
-
'border_radius' => array(
|
2204 |
-
'std' => '0',
|
2205 |
-
'type' => 'number',
|
2206 |
-
'max' => '50',
|
2207 |
-
'min' => '0' ,
|
2208 |
-
'label' => __( 'Border Radius', 'magee-shortcodes' ),
|
2209 |
-
'desc' => __( 'Choose the border radius of the image frame. In pixels (px), ex: 1px, or "round". Leave blank for theme option selection.', 'magee-shortcodes' ),
|
2210 |
-
),
|
2211 |
-
'light_box' => array(
|
2212 |
-
'std' => '',
|
2213 |
-
'type' => 'choose' ,
|
2214 |
-
'label' => __( 'Light Box','magee-shortcodes'),
|
2215 |
-
'desc' => __( 'Choose to display light box once click.', 'magee-shortcodes'),
|
2216 |
-
'options' => $reverse_choices
|
2217 |
-
),
|
2218 |
-
'class' => array(
|
2219 |
-
'std' => '',
|
2220 |
-
'type' => 'text',
|
2221 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
2222 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
2223 |
-
),
|
2224 |
-
'id' => array(
|
2225 |
-
'std' => '',
|
2226 |
-
'type' => 'text',
|
2227 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
2228 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
2229 |
-
),
|
2230 |
-
|
2231 |
-
),
|
2232 |
-
'shortcode' => '[ms_image_frame src="{{src}}" border_radius="{{border_radius}}" link="{{link}}" link_target="{{link_target}}" light_box="{{light_box}}" class="{{class}}" id="{{id}}"]',
|
2233 |
-
'popup_title' => __( 'Image Frame Shortcode', 'magee-shortcodes' ),
|
2234 |
-
'name' => __('image-frame-shortcode/','magee-shortocdes'),
|
2235 |
-
);
|
2236 |
-
|
2237 |
-
|
2238 |
-
/*-----------------------------------------------------------------------------------*/
|
2239 |
-
/* Label Config
|
2240 |
-
/*-----------------------------------------------------------------------------------*/
|
2241 |
-
|
2242 |
-
$magee_shortcodes['label'] = array(
|
2243 |
-
'no_preview' => true,
|
2244 |
-
'icon' => 'fa-bookmark',
|
2245 |
-
'params' => array(
|
2246 |
-
|
2247 |
-
'content' => array(
|
2248 |
-
'std' => '',
|
2249 |
-
'type' => 'text',
|
2250 |
-
'label' => __( 'Text', 'magee-shortcodes' ),
|
2251 |
-
'desc' => __( 'Insert text to be displayed in label.','magee-shortcodes')
|
2252 |
-
),
|
2253 |
-
'background_color' => array(
|
2254 |
-
'std' => '',
|
2255 |
-
'type' => 'colorpicker',
|
2256 |
-
'label' => __( 'Background Color' , 'magee-shortcodes'),
|
2257 |
-
'desc' => __( 'Set background color for label.','magee-shortcodes')
|
2258 |
-
),
|
2259 |
-
),
|
2260 |
-
'shortcode' => '[ms_label background_color="{{background_color}}" ]{{content}}[/ms_label]',
|
2261 |
-
'popup_title' => __( 'Label Shortcode', 'magee-shortcodes' ),
|
2262 |
-
'name' => __('label-shortcode/','magee-shortocdes'),
|
2263 |
-
);
|
2264 |
-
|
2265 |
-
/*******************************************************
|
2266 |
-
* List Config
|
2267 |
-
********************************************************/
|
2268 |
-
$magee_shortcodes['list'] = array(
|
2269 |
-
'no_preview' => true,
|
2270 |
-
'icon' => 'fa-list',
|
2271 |
-
'params' => array(
|
2272 |
-
'icon' => array(
|
2273 |
-
'type' => 'iconpicker',
|
2274 |
-
'label' => __( 'Icon', 'magee-shortcodes' ),
|
2275 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
2276 |
-
'options' => $icons
|
2277 |
-
),
|
2278 |
-
'icon_color' => array(
|
2279 |
-
'type' => 'colorpicker',
|
2280 |
-
'label' => __( 'Icon Color', 'magee-shortcodes' ),
|
2281 |
-
'desc' => __( 'Set color fo list icon.', 'magee-shortcodes')
|
2282 |
-
),
|
2283 |
-
'icon_boxed' => array(
|
2284 |
-
'type' => 'choose',
|
2285 |
-
'label' => __( 'Icon Boxed', 'magee-shortcodes' ),
|
2286 |
-
'desc' => __( 'Choose to set icon boxed.', 'magee-shortcodes'),
|
2287 |
-
'options' =>array(
|
2288 |
-
'no' => __('No','magee-shortcodes'),
|
2289 |
-
'yes' => __('Yes','magee-shortcodes'),)
|
2290 |
-
),
|
2291 |
-
'background_color' => array(
|
2292 |
-
'type' => 'colorpicker',
|
2293 |
-
'label' => __( 'Icon Circle Background Color', 'magee-shortcodes' ),
|
2294 |
-
'desc' => __( 'Set background color for list icon.', 'magee-shortcodes')
|
2295 |
-
),
|
2296 |
-
'boxed_shape' => array(
|
2297 |
-
'type' => 'select',
|
2298 |
-
'label' => __( 'Boxed Shape', 'magee-shortcodes' ),
|
2299 |
-
'desc' => __( 'Choose boxed shape for list icon.', 'magee-shortcodes'),
|
2300 |
-
'options' =>array(
|
2301 |
-
'square' => __('Square','magee-shortcodes'),
|
2302 |
-
'circle' => __('Circle','magee-shortcodes'),)
|
2303 |
-
),
|
2304 |
-
'item_border' => array(
|
2305 |
-
'type' => 'choose',
|
2306 |
-
'label' => __( 'Item Border', 'magee-shortcodes' ),
|
2307 |
-
'desc' => __( 'Choose to display item border for list.', 'magee-shortcodes'),
|
2308 |
-
'options' =>array(
|
2309 |
-
'no' => __('No','magee-shortcodes'),
|
2310 |
-
'yes' => __('Yes','magee-shortcodes'),)
|
2311 |
-
),
|
2312 |
-
'item_size' => array(
|
2313 |
-
'type' => 'number',
|
2314 |
-
'std' => '12',
|
2315 |
-
'max' => '50',
|
2316 |
-
'min' => '0',
|
2317 |
-
'label' => __( 'Item Size', 'magee-shortcodes' ),
|
2318 |
-
'desc' => __( 'Set text font size for item.', 'magee-shortcodes'),
|
2319 |
-
),
|
2320 |
-
'class' => array(
|
2321 |
-
'std' => '',
|
2322 |
-
'type' => 'text',
|
2323 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
2324 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
2325 |
-
),
|
2326 |
-
'id' => array(
|
2327 |
-
'std' => '',
|
2328 |
-
'type' => 'text',
|
2329 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
2330 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
2331 |
-
),
|
2332 |
-
'content' => array(
|
2333 |
-
'std' => "\r\n[ms_list_item]List item 1[/ms_list_item]\r\n[ms_list_item]List item 2[/ms_list_item]\r\n[ms_list_item]List item 3[/ms_list_item]\r\n",
|
2334 |
-
'type' => 'textarea',
|
2335 |
-
'label' => __( 'List items', 'magee-shortcodes' ),
|
2336 |
-
'desc' => ''
|
2337 |
-
),
|
2338 |
-
),
|
2339 |
-
'shortcode' => "[ms_list icon=\"{{icon}}\" icon_color=\"{{icon_color}}\" icon_boxed=\"{{icon_boxed}}\" background_color=\"{{background_color}}\" boxed_shape=\"{{boxed_shape}}\" item_border=\"{{item_border}}\" item_size=\"{{item_size}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{content}}[/ms_list]",
|
2340 |
-
'popup_title' => __( 'List Shortcode', 'magee-shortcodes' ),
|
2341 |
-
'name' => __('list-shortcode/','magee-shortcodes'),
|
2342 |
-
);
|
2343 |
-
|
2344 |
-
/*******************************************************
|
2345 |
-
* Modal Config
|
2346 |
-
********************************************************/
|
2347 |
-
|
2348 |
-
$magee_shortcodes['modal'] = array(
|
2349 |
-
'no_preview' => true,
|
2350 |
-
'icon' => 'fa-comment-o',
|
2351 |
-
'params' => array(
|
2352 |
-
'modal_anchor_text' => array(
|
2353 |
-
'std' => 'Modal Anchor Text',
|
2354 |
-
'type' => 'textarea',
|
2355 |
-
'label' => __( 'Modal Anchor Text', 'magee-shortcodes' ),
|
2356 |
-
'desc' => __( 'Insert anchor text for the modal.', 'magee-shortcodes' ),
|
2357 |
-
),
|
2358 |
-
'effect' => array(
|
2359 |
-
'std' => 'effect-1',
|
2360 |
-
'type' => 'select',
|
2361 |
-
'label' => __( 'Modal Show Effect', 'magee-shortcodes' ),
|
2362 |
-
'desc' => __( 'Choose one effect to show the modal.', 'magee-shortcodes' ),
|
2363 |
-
'options' => array(
|
2364 |
-
'effect-1' => __('Effect 1 ( Slide Right )','magee-shortcodes'),
|
2365 |
-
'effect-2' => __('Effect 2 ( Slide Bottom )','magee-shortcodes'),
|
2366 |
-
'effect-3' => __('Effect 3 ( Slide Left )','magee-shortcodes'),
|
2367 |
-
'effect-4' => __('Effect 4 ( Slide Top )','magee-shortcodes'),
|
2368 |
-
'effect-5' => __('Effect 5 ( Scale Up )','magee-shortcodes'),
|
2369 |
-
'effect-6' => __('Effect 6 ( 3D Flip Horizontal )','magee-shortcodes'),
|
2370 |
-
'effect-7' => __('Effect 7 ( 3D Flip Vertical )','magee-shortcodes'),
|
2371 |
-
'effect-8' => __('Effect 8 ( 3D Sign )','magee-shortcodes'),
|
2372 |
-
'effect-9' => __('Effect 9 ( 3D Rotate In Left )','magee-shortcodes'),
|
2373 |
-
'effect-10' => __('Effect 10 ( 3D Rotate In Bottom )','magee-shortcodes'),
|
2374 |
-
'effect-11' => __('Effect 11 ( 3D Slit )','magee-shortcodes'),
|
2375 |
-
'effect-12' => __('Effect 12 ( Newspaper )','magee-shortcodes'),
|
2376 |
-
'effect-13' => __('Effect 13 ( Fall )','magee-shortcodes'),
|
2377 |
-
'effect-14' => __('Effect 14 ( Side Fall )','magee-shortcodes'),
|
2378 |
-
'effect-15' => __('Effect 15 ( Super Scaled )','magee-shortcodes'),
|
2379 |
-
),
|
2380 |
-
),
|
2381 |
-
'title' => array(
|
2382 |
-
'std' => '',
|
2383 |
-
'type' => 'text',
|
2384 |
-
'label' => __( 'Modal Heading Title', 'magee-shortcodes' ),
|
2385 |
-
'desc' => __( 'Insert heading title for the modal.', 'magee-shortcodes' ),
|
2386 |
-
),
|
2387 |
-
'title_color' => array(
|
2388 |
-
'std' => '',
|
2389 |
-
'type' => 'colorpicker',
|
2390 |
-
'label' => __( 'Modal Heading Title Color', 'magee-shortcodes' ),
|
2391 |
-
'desc' => __( 'Set color for the modal heading title.', 'magee-shortcodes' ),
|
2392 |
-
),
|
2393 |
-
'heading_background' => array(
|
2394 |
-
'std' => '',
|
2395 |
-
'type' => 'colorpicker',
|
2396 |
-
'label' => __( 'Modal Heading Background', 'magee-shortcodes' ),
|
2397 |
-
'desc' => __( 'Set background for the modal heading.', 'magee-shortcodes' ),
|
2398 |
-
),
|
2399 |
-
'close_icon' => array(
|
2400 |
-
'std' => 'yes',
|
2401 |
-
'type' => 'choose',
|
2402 |
-
'label' => __( 'Close Icon', 'magee-shortcodes' ),
|
2403 |
-
'desc' => __( 'Choose close icon to show in modal heading.', 'magee-shortcodes' ),
|
2404 |
-
'options' => $choices
|
2405 |
-
),
|
2406 |
-
'content' => array(
|
2407 |
-
'std' => __('Your Content Goes Here', 'magee-shortcodes'),
|
2408 |
-
'type' => 'textarea',
|
2409 |
-
'label' => __( 'Contents of Modal', 'magee-shortcodes' ),
|
2410 |
-
'desc' => __( 'Add your content to be displayed in modal.', 'magee-shortcodes' ),
|
2411 |
-
),
|
2412 |
-
'background' => array(
|
2413 |
-
'std' => '',
|
2414 |
-
'type' => 'colorpicker',
|
2415 |
-
'label' => __( 'Modal Background', 'magee-shortcodes' ),
|
2416 |
-
'desc' => __( 'Set background for the modal.', 'magee-shortcodes' ),
|
2417 |
-
),
|
2418 |
-
'color' => array(
|
2419 |
-
'std' => '',
|
2420 |
-
'type' => 'colorpicker',
|
2421 |
-
'label' => __( 'Modal Color', 'magee-shortcodes' ),
|
2422 |
-
'desc' => __( 'Set color for the modal.', 'magee-shortcodes' ),
|
2423 |
-
),
|
2424 |
-
'width' => array(
|
2425 |
-
'std' => '',
|
2426 |
-
'type' => 'number',
|
2427 |
-
'label' => __( 'Modal Width', 'magee-shortcodes' ),
|
2428 |
-
'desc' => '',
|
2429 |
-
'min' => '0',
|
2430 |
-
'max' => '1000'
|
2431 |
-
),
|
2432 |
-
'height' => array(
|
2433 |
-
'std' => '',
|
2434 |
-
'type' => 'number',
|
2435 |
-
'label' => __( 'Modal Height', 'magee-shortcodes' ),
|
2436 |
-
'desc' => '',
|
2437 |
-
'min' => '0',
|
2438 |
-
'max' => '500'
|
2439 |
-
),
|
2440 |
-
'overlay_color' => array(
|
2441 |
-
'std' => '',
|
2442 |
-
'type' => 'colorpicker',
|
2443 |
-
'label' => __( 'Overlay Color', 'magee-shortcodes' ),
|
2444 |
-
'desc' => __( 'Set background color for the modal overlay.', 'magee-shortcodes' ),
|
2445 |
-
),
|
2446 |
-
'overlay_opacity' => array(
|
2447 |
-
'std' => '0',
|
2448 |
-
'type' => 'select',
|
2449 |
-
'label' => __( 'Overlay Color Opacity', 'magee-shortcodes' ),
|
2450 |
-
'desc' => __( 'Choose background color opacity for the modal overlay.', 'magee-shortcodes' ),
|
2451 |
-
'options' => $opacity
|
2452 |
-
),
|
2453 |
-
'class' => array(
|
2454 |
-
'std' => '',
|
2455 |
-
'type' => 'text',
|
2456 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
2457 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
2458 |
-
),
|
2459 |
-
'id' => array(
|
2460 |
-
'std' => '',
|
2461 |
-
'type' => 'text',
|
2462 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
2463 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
2464 |
-
),
|
2465 |
-
),
|
2466 |
-
'shortcode' => '[ms_modal effect=\"{{effect}}\" title=\"{{title}}\" title_color=\"{{title_color}}\" heading_background=\"{{heading_background}}\" close_icon =\"{{close_icon}}\" background=\"{{background}}\" color=\"{{color}}\" width=\"{{width}}\" height=\"{{height}}\" overlay_color=\"{{overlay_color}}\" overlay_opacity=\"{{overlay_opacity}}\" class="{{class}}" id="{{id}}"][ms_modal_anchor_text]{{modal_anchor_text}}[/ms_modal_anchor_text][ms_modal_content]{{content}}[/ms_modal_content][/ms_modal]',
|
2467 |
-
'popup_title' => __( 'Modal Shortcode', 'magee-shortcodes' ),
|
2468 |
-
'name' => __('modal-shortcode/','magee-shortocdes'),
|
2469 |
-
);
|
2470 |
-
|
2471 |
-
/*-----------------------------------------------------------------------------------*/
|
2472 |
-
/* Menu Config
|
2473 |
-
/*-----------------------------------------------------------------------------------*/
|
2474 |
-
|
2475 |
-
$magee_shortcodes['menu'] = array(
|
2476 |
-
'no_preview' => true,
|
2477 |
-
'icon' => 'fa-bars',
|
2478 |
-
'params' => array(
|
2479 |
-
'menu' => array(
|
2480 |
-
'std' => '',
|
2481 |
-
'type' => 'select',
|
2482 |
-
'label' => __( 'Select a menu','magee-shortcodes'),
|
2483 |
-
'options' => magee_shortcode_menus('name')
|
2484 |
-
),
|
2485 |
-
'class' => array(
|
2486 |
-
'std' => '',
|
2487 |
-
'type' => 'text',
|
2488 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
2489 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
2490 |
-
),
|
2491 |
-
'id' => array(
|
2492 |
-
'std' => '',
|
2493 |
-
'type' => 'text',
|
2494 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
2495 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
2496 |
-
),
|
2497 |
-
),
|
2498 |
-
'shortcode' => '[ms_menu menu="{{menu}}" class="{{class}}" id="{{id}}"][/ms_menu]' ,
|
2499 |
-
'popup_title' => __( 'Menu Shortcode', 'magee-shortcodes'),
|
2500 |
-
);
|
2501 |
-
|
2502 |
-
/*-----------------------------------------------------------------------------------*/
|
2503 |
-
/* panel Config
|
2504 |
-
/*-----------------------------------------------------------------------------------*/
|
2505 |
-
|
2506 |
-
$magee_shortcodes['panel'] = array(
|
2507 |
-
'no_preview' => true,
|
2508 |
-
'icon' => 'fa-list-alt',
|
2509 |
-
'params' => array(
|
2510 |
-
|
2511 |
-
'title' => array(
|
2512 |
-
'std' => 'Panel title',
|
2513 |
-
'type' => 'text',
|
2514 |
-
'label' => __( 'Title', 'magee-shortcodes' ),
|
2515 |
-
'desc' => __( 'Insert title for panel.', 'magee-shortcodes' ),
|
2516 |
-
),
|
2517 |
-
'content' => array(
|
2518 |
-
'std' => __('Panel content.', 'magee-shortcodes'),
|
2519 |
-
'type' => 'textarea',
|
2520 |
-
'label' => __( 'Panel Content', 'magee-shortcodes' ),
|
2521 |
-
'desc' => __( 'Insert content for panel.', 'magee-shortcodes' ),
|
2522 |
-
),
|
2523 |
-
|
2524 |
-
|
2525 |
-
'title_color' => array(
|
2526 |
-
'std' => '#000',
|
2527 |
-
'type' => 'colorpicker',
|
2528 |
-
'label' => __( 'Title Color', 'magee-shortcodes' ),
|
2529 |
-
'desc' => __( 'Set color for panel title.', 'magee-shortcodes' ),
|
2530 |
-
),
|
2531 |
-
'border_color' => array(
|
2532 |
-
'std' => '#ddd',
|
2533 |
-
'type' => 'colorpicker',
|
2534 |
-
'label' => __( 'Border Color', 'magee-shortcodes' ),
|
2535 |
-
'desc' => __( 'Set color for panel border.', 'magee-shortcodes' ),
|
2536 |
-
),
|
2537 |
-
|
2538 |
-
'title_background_color' => array(
|
2539 |
-
'std' => '#f5f5f5',
|
2540 |
-
'type' => 'colorpicker',
|
2541 |
-
'label' => __( 'Title Background Color', 'magee-shortcodes' ),
|
2542 |
-
'desc' => __( 'Set background color for panel title.', 'magee-shortcodes' ),
|
2543 |
-
),
|
2544 |
-
'border_radius' => array(
|
2545 |
-
'std' => '0',
|
2546 |
-
'type' => 'number',
|
2547 |
-
'max' => '50',
|
2548 |
-
'min' => '0',
|
2549 |
-
'label' => __( 'Border Radius', 'magee-shortcodes' ),
|
2550 |
-
'desc' => __('In pixels (px), eg: 1px.', 'magee-shortcodes')
|
2551 |
-
),
|
2552 |
-
'class' => array(
|
2553 |
-
'std' => '',
|
2554 |
-
'type' => 'text',
|
2555 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
2556 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
2557 |
-
),
|
2558 |
-
'id' => array(
|
2559 |
-
'std' => '',
|
2560 |
-
'type' => 'text',
|
2561 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
2562 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
2563 |
-
),
|
2564 |
-
),
|
2565 |
-
'shortcode' => '[ms_panel title="{{title}}" title_color="{{title_color}}" border_color="{{border_color}}" title_background_color="{{title_background_color}}" border_radius="{{border_radius}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_panel]',
|
2566 |
-
'popup_title' => __( 'Panel Shortcode', 'magee-shortcodes' ),
|
2567 |
-
'name' => __('panel-shortcode/','magee-shortcodes'),
|
2568 |
-
);
|
2569 |
-
|
2570 |
-
/*-----------------------------------------------------------------------------------*/
|
2571 |
-
/* Person Config
|
2572 |
-
/*-----------------------------------------------------------------------------------*/
|
2573 |
-
|
2574 |
-
$magee_shortcodes['person'] = array(
|
2575 |
-
'no_preview' => true,
|
2576 |
-
'icon' => 'fa-user',
|
2577 |
-
'params' => array(
|
2578 |
-
'style' => array(
|
2579 |
-
'std' => '',
|
2580 |
-
'type' => 'select',
|
2581 |
-
'label' => __( 'Style', 'magee-shortcodes'),
|
2582 |
-
'desc' => __( 'Choose to display info below or beside the image.','magee-shortcodes'),
|
2583 |
-
'options' => array(
|
2584 |
-
'below' => __('Below', 'magee-shortcodes') ,
|
2585 |
-
'beside' => __('Beside', 'magee-shortcodes'),
|
2586 |
-
),
|
2587 |
-
),
|
2588 |
-
'name' => array(
|
2589 |
-
'std' => '',
|
2590 |
-
'type' => 'text',
|
2591 |
-
'label' => __( 'Name', 'magee-shortcodes' ),
|
2592 |
-
'desc' => __( 'Insert the name of the person.', 'magee-shortcodes' ),
|
2593 |
-
),
|
2594 |
-
'title' => array(
|
2595 |
-
'std' => '',
|
2596 |
-
'type' => 'text',
|
2597 |
-
'label' => __( 'Title', 'magee-shortcodes' ),
|
2598 |
-
'desc' => __( 'Insert the title of the person', 'magee-shortcodes' ),
|
2599 |
-
),
|
2600 |
-
'link_target' => array(
|
2601 |
-
'std' => '',
|
2602 |
-
'type' => 'choose',
|
2603 |
-
'label' => __( 'Link Target', 'magee-shortcodes' ),
|
2604 |
-
'desc' => __( '_self = open in same window _blank = open in new window.', 'magee-shortcodes' ),
|
2605 |
-
'options' => array(
|
2606 |
-
'_blank' => __('_blank', 'magee-shortcodes'),
|
2607 |
-
'_self' => __('_self', 'magee-shortcodes'),
|
2608 |
-
|
2609 |
-
),
|
2610 |
-
),
|
2611 |
-
'overlay_color' => array(
|
2612 |
-
'std' => '',
|
2613 |
-
'type' => 'colorpicker',
|
2614 |
-
'label' => __('Image Overlay Color','magee-shortcodes'),
|
2615 |
-
'desc' => __('Select a hover color to show over the image as an overlay.','magee-shortcodes')
|
2616 |
-
),
|
2617 |
-
'overlay_opacity' => array(
|
2618 |
-
'std' => '0.5',
|
2619 |
-
'type' => 'select',
|
2620 |
-
'label' => __('Image Overlay Opacity', 'magee-shortcodes'),
|
2621 |
-
'desc' => __('Opacity ranges between 0 (transparent) and 1 (opaque). ex: .5','magee-shortcodes'),
|
2622 |
-
'options' => $opacity
|
2623 |
-
),
|
2624 |
-
'content' => array(
|
2625 |
-
'std' => '',
|
2626 |
-
'type' => 'textarea',
|
2627 |
-
'label' => __( 'Profile Description', 'magee-shortcodes' ),
|
2628 |
-
'desc' => __( 'Insert profile description.', 'magee-shortcodes' )
|
2629 |
-
),
|
2630 |
-
'picture' => array(
|
2631 |
-
'type' => 'uploader',
|
2632 |
-
'label' => __( 'Picture', 'magee-shortcodes' ),
|
2633 |
-
'desc' => __( 'Upload an image to display.', 'magee-shortcodes' ),
|
2634 |
-
),
|
2635 |
-
'piclink' => array(
|
2636 |
-
'std' => '',
|
2637 |
-
'type' => 'text',
|
2638 |
-
'label' => __( 'Picture Link URL', 'magee-shortcodes' ),
|
2639 |
-
'desc' => __( 'Add the URL the picture will link to, ex: http://example.com.', 'magee-shortcodes' ),
|
2640 |
-
),
|
2641 |
-
'picborder' => array(
|
2642 |
-
'std' => '0',
|
2643 |
-
'type' => 'number',
|
2644 |
-
'max' => '50',
|
2645 |
-
'min' => '0',
|
2646 |
-
'label' => __( 'Picture Border Size', 'magee-shortcodes' ),
|
2647 |
-
'desc' => __( 'In pixels (px), ex: 1px. Leave blank for theme option selection.', 'magee-shortcodes' ),
|
2648 |
-
),
|
2649 |
-
'picbordercolor' => array(
|
2650 |
-
'type' => 'colorpicker',
|
2651 |
-
'label' => __( 'Picture Border Color', 'magee-shortcodes' ),
|
2652 |
-
'desc' => __( 'Controls the picture\'s border color. Leave blank for theme option selection.', 'magee-shortcodes' ),
|
2653 |
-
),
|
2654 |
-
'picborderradius' => array(
|
2655 |
-
'std' => '0',
|
2656 |
-
'type' => 'number',
|
2657 |
-
'max' => '50',
|
2658 |
-
'min' => '0',
|
2659 |
-
'label' => __( 'Picture Border Radius', 'magee-shortcodes' ),
|
2660 |
-
'desc' => __( 'Choose the border radius of the person image. In pixels (px), ex: 1px, or "round". Leave blank for theme option selection.', 'magee-shortcodes' ),
|
2661 |
-
),
|
2662 |
-
'iconboxedradius' => array(
|
2663 |
-
'std' => '4',
|
2664 |
-
'type' => 'number',
|
2665 |
-
'max' => '50',
|
2666 |
-
'min' => '0',
|
2667 |
-
'label' => __( 'Social Icon Box Radius', 'magee-shortcodes' ),
|
2668 |
-
'desc' => __( 'Choose the border radius of the boxed icons. In pixels (px), ex: 1px, or "round". Leave blank for theme option selection.', 'magee-shortcodes' ),
|
2669 |
-
),
|
2670 |
-
'iconcolor' => array(
|
2671 |
-
'std' => '',
|
2672 |
-
'type' => 'colorpicker',
|
2673 |
-
'label' => __( 'Social Icon Custom Colors', 'magee-shortcodes' ),
|
2674 |
-
'desc' => __( 'Controls the Icon\'s border color. Leave blank for theme option selection.', 'magee-shortcodes' ),
|
2675 |
-
),
|
2676 |
-
'icon1' => array(
|
2677 |
-
'type' => 'icon',
|
2678 |
-
'label' => __( 'Icon1', 'magee-shortcodes' ),
|
2679 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
2680 |
-
'options' => $icons
|
2681 |
-
),
|
2682 |
-
'link1' => array(
|
2683 |
-
'std' => '',
|
2684 |
-
'type' => 'text',
|
2685 |
-
'label' => __( 'Link1 ', 'magee-shortcodes' ),
|
2686 |
-
'desc' => __( 'The Icon1 Link ', 'magee-shortcodes' ),
|
2687 |
-
),
|
2688 |
-
'icon2' => array(
|
2689 |
-
'type' => 'icon',
|
2690 |
-
'label' => __( 'Icon2', 'magee-shortcodes' ),
|
2691 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
2692 |
-
'options' => $icons
|
2693 |
-
),
|
2694 |
-
'link2' => array(
|
2695 |
-
'std' => '',
|
2696 |
-
'type' => 'text',
|
2697 |
-
'label' => __( 'Link2 ', 'magee-shortcodes' ),
|
2698 |
-
'desc' => __( 'The Icon2 Link ', 'magee-shortcodes' ),
|
2699 |
-
),
|
2700 |
-
'icon3' => array(
|
2701 |
-
'type' => 'icon',
|
2702 |
-
'label' => __( 'Icon3', 'magee-shortcodes' ),
|
2703 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
2704 |
-
'options' => $icons
|
2705 |
-
),
|
2706 |
-
'link3' => array(
|
2707 |
-
'std' => '',
|
2708 |
-
'type' => 'text',
|
2709 |
-
'label' => __( 'Link3 ', 'magee-shortcodes' ),
|
2710 |
-
'desc' => __( 'The Icon3 Link ', 'magee-shortcodes' ),
|
2711 |
-
),
|
2712 |
-
'icon4' => array(
|
2713 |
-
'type' => 'icon',
|
2714 |
-
'label' => __( 'Icon4', 'magee-shortcodes' ),
|
2715 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
2716 |
-
'options' => $icons
|
2717 |
-
),
|
2718 |
-
'link4' => array(
|
2719 |
-
'std' => '',
|
2720 |
-
'type' => 'text',
|
2721 |
-
'label' => __( 'Link4', 'magee-shortcodes' ),
|
2722 |
-
'desc' => __( 'The Icon4 Link ', 'magee-shortcodes' ),
|
2723 |
-
),
|
2724 |
-
'icon5' => array(
|
2725 |
-
'type' => 'icon',
|
2726 |
-
'label' => __( 'Icon5', 'magee-shortcodes' ),
|
2727 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
2728 |
-
'options' => $icons
|
2729 |
-
),
|
2730 |
-
'link5' => array(
|
2731 |
-
'std' => '',
|
2732 |
-
'type' => 'text',
|
2733 |
-
'label' => __( 'Link5', 'magee-shortcodes' ),
|
2734 |
-
'desc' => __( 'The Icon5 Link ', 'magee-shortcodes' ),
|
2735 |
-
),
|
2736 |
-
'class' => array(
|
2737 |
-
'std' => '',
|
2738 |
-
'type' => 'text',
|
2739 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
2740 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
2741 |
-
),
|
2742 |
-
'id' => array(
|
2743 |
-
'std' => '',
|
2744 |
-
'type' => 'text',
|
2745 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
2746 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
2747 |
-
),
|
2748 |
-
),
|
2749 |
-
'shortcode' => '[ms_person name="{{name}}" style="{{style}}" title="{{title}}" link_target="{{link_target}}" overlay_color="{{overlay_color}}" overlay_opacity="{{overlay_opacity}}" picture="{{picture}}" piclink="{{piclink}}" picborder="{{picborder}}" picbordercolor="{{picbordercolor}}" picborderradius="{{picborderradius}}" iconboxedradius="{{iconboxedradius}}" iconcolor="{{iconcolor}}" icon1="{{icon1}}" icon2="{{icon2}}" icon3="{{icon3}}" icon4="{{icon4}}" icon5="{{icon5}}" link1="{{link1}}" link2="{{link2}}" link3="{{link3}}" link4="{{link4}}" link5="{{link5}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_person]',
|
2750 |
-
'popup_title' => __( 'Person Shortcode', 'magee-shortcodes' ),
|
2751 |
-
'name' => __('person-shortcode/','magee-shortcodes'),
|
2752 |
-
);
|
2753 |
-
|
2754 |
-
/*-----------------------------------------------------------------------------------*/
|
2755 |
-
/* Piechart Config
|
2756 |
-
/*-----------------------------------------------------------------------------------*/
|
2757 |
-
|
2758 |
-
|
2759 |
-
$magee_shortcodes['piechart'] = array(
|
2760 |
-
'no_preview' => true,
|
2761 |
-
'icon' => 'fa-circle-o-notch',
|
2762 |
-
'params' => array(
|
2763 |
-
'line_cap' => array(
|
2764 |
-
'std' => 'round',
|
2765 |
-
'type' => 'select',
|
2766 |
-
'label' => __( 'Line Cap', 'magee-shortcodes' ),
|
2767 |
-
'desc' => __( 'Select how the ending of the bar line looks like.', 'magee-shortcodes' ),
|
2768 |
-
'options' => array(
|
2769 |
-
'round' => __( 'Round','magee-shortcodes') ,
|
2770 |
-
'butt' => __( 'Butt','magee-shortcodes') ,
|
2771 |
-
'square' => __( 'Square','magee-shortcodes') ,
|
2772 |
-
),
|
2773 |
-
),
|
2774 |
-
'percent' => array(
|
2775 |
-
'std' => '80',
|
2776 |
-
'type' => 'number',
|
2777 |
-
'max' => '100',
|
2778 |
-
'min' => '0',
|
2779 |
-
'label' => __( 'Percent', 'magee-shortcodes' ),
|
2780 |
-
'desc' => __( 'From 1 to 100.', 'magee-shortcodes' ),
|
2781 |
-
|
2782 |
-
),
|
2783 |
-
|
2784 |
-
'content' => array(
|
2785 |
-
'std' => '80%',
|
2786 |
-
'type' => 'textarea',
|
2787 |
-
'label' => __( 'Title', 'magee-shortcodes' ),
|
2788 |
-
'desc' => __( 'Insert title for piechart. It need to be short.', 'magee-shortcodes' ),
|
2789 |
-
|
2790 |
-
),
|
2791 |
-
'size' => array(
|
2792 |
-
'std' => '200',
|
2793 |
-
'type' => 'number',
|
2794 |
-
'max' => '500',
|
2795 |
-
'min' => '0',
|
2796 |
-
'label' => __( 'Size', 'magee-shortcodes' ),
|
2797 |
-
'desc' => __( 'Set size for piechart.', 'magee-shortcodes' ),
|
2798 |
-
|
2799 |
-
),
|
2800 |
-
'font_size' => array(
|
2801 |
-
'std' => '40',
|
2802 |
-
'type' => 'number',
|
2803 |
-
'max' => '50',
|
2804 |
-
'min' => '0',
|
2805 |
-
'label' => __( 'Font Size', 'magee-shortcodes' ),
|
2806 |
-
'desc' => __( 'Set font size for piechart title.', 'magee-shortcodes' ),
|
2807 |
-
|
2808 |
-
),
|
2809 |
-
'filledcolor' => array(
|
2810 |
-
'type' => 'colorpicker',
|
2811 |
-
'label' => __( 'Filled Color', 'magee-shortcodes' ),
|
2812 |
-
'desc' => __( 'Set color for filled area in piechart.', 'magee-shortcodes' ),
|
2813 |
-
'std' => '#fdd200'
|
2814 |
-
),
|
2815 |
-
'unfilledcolor' => array(
|
2816 |
-
'type' => 'colorpicker',
|
2817 |
-
'label' => __( 'Unfilled Color', 'magee-shortcodes' ),
|
2818 |
-
'desc' => __( 'Set color for unfilled area in piechart.', 'magee-shortcodes' ),
|
2819 |
-
'std' => '#f5f5f5'
|
2820 |
-
),
|
2821 |
-
|
2822 |
-
'class' => array(
|
2823 |
-
'std' => '',
|
2824 |
-
'type' => 'text',
|
2825 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
2826 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
2827 |
-
),
|
2828 |
-
|
2829 |
-
),
|
2830 |
-
'shortcode' => '[ms_piechart line_cap="{{line_cap}}" percent="{{percent}}" filledcolor="{{filledcolor}}" size="{{size}}" font_size="{{font_size}}" unfilledcolor="{{unfilledcolor}}" class="{{class}}" ]{{content}}[/ms_piechart]',
|
2831 |
-
'popup_title' => __( 'Piechart Shortcode', 'magee-shortcodes' ),
|
2832 |
-
'name' => __('piechart-shortcode/','magee-shortcodes'),
|
2833 |
-
);
|
2834 |
-
|
2835 |
-
/*-----------------------------------------------------------------------------------*/
|
2836 |
-
/* Popover Config
|
2837 |
-
/*-----------------------------------------------------------------------------------*/
|
2838 |
-
|
2839 |
-
$magee_shortcodes['popover'] = array(
|
2840 |
-
'no_preview' => true,
|
2841 |
-
'icon' => 'fa-comment-o',
|
2842 |
-
'params' => array(
|
2843 |
-
'title' => array(
|
2844 |
-
'std' => '',
|
2845 |
-
'type' => 'text',
|
2846 |
-
'label' => __( 'Popover Heading', 'magee-shortcodes' ),
|
2847 |
-
'desc' => __( 'Insert heading text of the popover.', 'magee-shortcodes' ),
|
2848 |
-
),
|
2849 |
-
'triggering_text' => array(
|
2850 |
-
'std' => '',
|
2851 |
-
'type' => 'text',
|
2852 |
-
'label' => __( 'Triggering Text', 'magee-shortcodes' ),
|
2853 |
-
'desc' => __( 'Content that will trigger the popover.', 'magee-shortcodes' ),
|
2854 |
-
),
|
2855 |
-
|
2856 |
-
|
2857 |
-
'content' => array(
|
2858 |
-
'std' => '',
|
2859 |
-
'type' => 'textarea',
|
2860 |
-
'label' => __( 'Contents Inside Popover', 'magee-shortcodes' ),
|
2861 |
-
'desc' => __( 'Text to be displayed inside the popover.', 'magee-shortcodes' ),
|
2862 |
-
),
|
2863 |
-
|
2864 |
-
'trigger' => array(
|
2865 |
-
'type' => 'select',
|
2866 |
-
'label' => __( 'Popover Trigger Method', 'magee-shortcodes' ),
|
2867 |
-
'desc' => __( 'Choose mouse action to trigger popover.', 'magee-shortcodes' ),
|
2868 |
-
'options' => array(
|
2869 |
-
'click' => __('Click', 'magee-shortcodes'),
|
2870 |
-
'hover' => __('Hover', 'magee-shortcodes'),
|
2871 |
-
)
|
2872 |
-
),
|
2873 |
-
'placement' => array(
|
2874 |
-
'type' => 'select',
|
2875 |
-
'label' => __( 'Popover Position', 'magee-shortcodes' ),
|
2876 |
-
'desc' => __( 'Choose the display position of the popover.', 'magee-shortcodes' ),
|
2877 |
-
'options' => array(
|
2878 |
-
'top' => __('Top', 'magee-shortcodes'),
|
2879 |
-
'bottom' => __('Bottom', 'magee-shortcodes'),
|
2880 |
-
'left' => __('Left', 'magee-shortcodes'),
|
2881 |
-
'Right' => __('Right', 'magee-shortcodes'),
|
2882 |
-
)
|
2883 |
-
),
|
2884 |
-
|
2885 |
-
'class' => array(
|
2886 |
-
'std' => '',
|
2887 |
-
'type' => 'text',
|
2888 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
2889 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
2890 |
-
),
|
2891 |
-
'id' => array(
|
2892 |
-
'std' => '',
|
2893 |
-
'type' => 'text',
|
2894 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
2895 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
2896 |
-
),
|
2897 |
-
),
|
2898 |
-
'shortcode' => '[ms_popover title="{{title}}" triggering_text="{{triggering_text}}" trigger="{{trigger}}" placement="{{placement}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_popover]', // as there is no wrapper shortcode
|
2899 |
-
'popup_title' => __( 'Popover Shortcode', 'magee-shortcodes' ),
|
2900 |
-
'name' => __('popover-shortcode/','magee-shortocdes'),
|
2901 |
-
);
|
2902 |
-
|
2903 |
-
/*-----------------------------------------------------------------------------------*/
|
2904 |
-
/* Progress Config
|
2905 |
-
/*-----------------------------------------------------------------------------------*/
|
2906 |
-
|
2907 |
-
|
2908 |
-
$magee_shortcodes['progress'] = array(
|
2909 |
-
'no_preview' => true,
|
2910 |
-
'icon' => 'fa-tasks',
|
2911 |
-
'params' => array(
|
2912 |
-
'style' => array(
|
2913 |
-
'type' => 'select',
|
2914 |
-
'label' => __( 'Style', 'magee-shortcodes' ),
|
2915 |
-
'desc' => __( 'Choose the show of progress bar.', 'magee-shortcodes' ),
|
2916 |
-
'options' => array(
|
2917 |
-
'normal' => __( 'Normal Style', 'magee-shortcodes' ),
|
2918 |
-
'circle' => __( 'Circle Style', 'magee-shortcodes' ),
|
2919 |
-
)
|
2920 |
-
|
2921 |
-
),
|
2922 |
-
'striped' => array(
|
2923 |
-
'type' => 'select',
|
2924 |
-
'label' => __( 'Striped', 'magee-shortcodes' ),
|
2925 |
-
'desc' => __( 'Choose to get the filled area striped.', 'magee-shortcodes' ),
|
2926 |
-
'options' => array(
|
2927 |
-
'none' => __( 'None Striped', 'magee-shortcodes' ),
|
2928 |
-
'striped' => __( 'Striped', 'magee-shortcodes' ),
|
2929 |
-
'striped animated' => __( 'Striped Animated', 'magee-shortcodes' ),
|
2930 |
-
)
|
2931 |
-
|
2932 |
-
),
|
2933 |
-
'rounded' => array(
|
2934 |
-
'type' => 'select',
|
2935 |
-
'label' => __( 'Rounded', 'magee-shortcodes' ),
|
2936 |
-
'desc' => __( 'Choose to set the progress bar as rounded.', 'magee-shortcodes' ),
|
2937 |
-
'options' => array(
|
2938 |
-
'on' => __( 'On', 'magee-shortcodes' ),
|
2939 |
-
'off' => __( 'Off', 'magee-shortcodes' ),
|
2940 |
-
)
|
2941 |
-
|
2942 |
-
),
|
2943 |
-
'number' => array(
|
2944 |
-
'type' => 'choose',
|
2945 |
-
'label' => __( 'Display Number', 'magee-shortcodes' ),
|
2946 |
-
'desc' => __( 'Choose to diplay number for progress bar.', 'magee-shortcodes' ),
|
2947 |
-
'options' =>$choices
|
2948 |
-
|
2949 |
-
),
|
2950 |
-
|
2951 |
-
'percent' => array(
|
2952 |
-
'std' => '50',
|
2953 |
-
'type' => 'number',
|
2954 |
-
'max' => '100',
|
2955 |
-
'min' => '0',
|
2956 |
-
'label' => __( 'Percent', 'magee-shortcodes' ),
|
2957 |
-
'desc' => __( 'Set percentage for progress bar. 0~100.', 'magee-shortcodes' )
|
2958 |
-
),
|
2959 |
-
|
2960 |
-
'text' => array(
|
2961 |
-
'std' => '',
|
2962 |
-
'type' => 'text',
|
2963 |
-
'label' => __( 'Text', 'magee-shortcodes' ),
|
2964 |
-
'desc' => __( 'Insert text for progress bar.', 'magee-shortcodes' ),
|
2965 |
-
),
|
2966 |
-
|
2967 |
-
'height' => array(
|
2968 |
-
'std' => '30',
|
2969 |
-
'type' => 'number',
|
2970 |
-
'max' => '200',
|
2971 |
-
'min' => '0',
|
2972 |
-
'label' => __( 'Height', 'magee-shortcodes' ),
|
2973 |
-
'desc' =>__( 'Set height for progress bar.', 'magee-shortcodes' ),
|
2974 |
-
),
|
2975 |
-
|
2976 |
-
|
2977 |
-
|
2978 |
-
'color' => array(
|
2979 |
-
'type' => 'colorpicker',
|
2980 |
-
'label' => __( 'Color', 'magee-shortcodes' ),
|
2981 |
-
'desc' => __( 'Set background color for filled area in progress bar.', 'magee-shortcodes' ),
|
2982 |
-
'std' => ''
|
2983 |
-
),
|
2984 |
-
'textalign' => array(
|
2985 |
-
'type' => 'select',
|
2986 |
-
'label' => __( 'Text Align', 'magee-shortcodes' ),
|
2987 |
-
'desc' => __( 'Set align for progress bar.', 'magee-shortcodes' ),
|
2988 |
-
'options' => array(
|
2989 |
-
'left' => __( 'Left', 'magee-shortcodes' ),
|
2990 |
-
'right' => __( 'Right', 'magee-shortcodes' ),
|
2991 |
-
)
|
2992 |
-
|
2993 |
-
),
|
2994 |
-
'textposition' => array(
|
2995 |
-
'type' => 'select',
|
2996 |
-
'label' => __( 'Text Position', 'magee-shortcodes' ),
|
2997 |
-
'desc' => __( 'Choose text position for progress bar.', 'magee-shortcodes' ),
|
2998 |
-
'options' => array(
|
2999 |
-
'1' => __('Text on Progress bars', 'magee-shortcodes' ),
|
3000 |
-
'2' => __('Text above progress bars', 'magee-shortcodes' ),
|
3001 |
-
)
|
3002 |
-
|
3003 |
-
),
|
3004 |
-
|
3005 |
-
'class' => array(
|
3006 |
-
'std' => '',
|
3007 |
-
'type' => 'text',
|
3008 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
3009 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
3010 |
-
),
|
3011 |
-
'id' => array(
|
3012 |
-
'std' => '',
|
3013 |
-
'type' => 'text',
|
3014 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
3015 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
3016 |
-
)
|
3017 |
-
|
3018 |
-
|
3019 |
-
),
|
3020 |
-
'shortcode' => '[ms_progress style="{{style}}" striped="{{striped}}" rounded="{{rounded}}" number="{{number}}" percent="{{percent}}" text="{{text}}" height="{{height}}" color="{{color}}" textalign="{{textalign}}" textposition="{{textposition}}" class="{{class}}" id="{{id}}"]',
|
3021 |
-
'popup_title' => __( 'Progress Shortcode', 'magee-shortcodes' ),
|
3022 |
-
'name' => __('progress-bar-shortcode/','magee-shortcodes'),
|
3023 |
-
);
|
3024 |
-
|
3025 |
-
/*-----------------------------------------------------------------------------------*/
|
3026 |
-
/* Promo_box Config
|
3027 |
-
/*-----------------------------------------------------------------------------------*/
|
3028 |
-
|
3029 |
-
$magee_shortcodes['promo_box'] = array(
|
3030 |
-
'no_preview' => true,
|
3031 |
-
'icon' => 'fa-tag',
|
3032 |
-
'params' => array(
|
3033 |
-
|
3034 |
-
'style' => array(
|
3035 |
-
'type' => 'select',
|
3036 |
-
'label' => __( 'Style', 'magee-shortcodes' ),
|
3037 |
-
'desc' => __( 'Select style for promo box.', 'magee-shortcodes' ),
|
3038 |
-
'options' => array(
|
3039 |
-
'normal' => __('Normal', 'magee-shortcodes'),
|
3040 |
-
'boxed' => __('Boxed', 'magee-shortcodes'),
|
3041 |
-
)
|
3042 |
-
),
|
3043 |
-
'border_color' => array(
|
3044 |
-
'type' => 'colorpicker',
|
3045 |
-
'std' => '#fdd200',
|
3046 |
-
'label' => __( 'Border Color', 'magee-shortcodes' ),
|
3047 |
-
'desc' => __( 'Set color for highlight border of promo box.', 'magee-shortcodes' ),
|
3048 |
-
),
|
3049 |
-
'border_width' => array(
|
3050 |
-
'std' => '1',
|
3051 |
-
'type' => 'number',
|
3052 |
-
'max' => '50',
|
3053 |
-
'min' => '0',
|
3054 |
-
'label' => __( 'Border Width', 'magee-shortcodes' ),
|
3055 |
-
'desc' => __( 'Set width for highlight border of promo box.', 'magee-shortcodes' ),
|
3056 |
-
),
|
3057 |
-
|
3058 |
-
'border_position' => array(
|
3059 |
-
'type' => 'select',
|
3060 |
-
'label' => __( 'Border Position', 'magee-shortcodes' ),
|
3061 |
-
'desc' => __( 'Choose position for highlight border of promo box.', 'magee-shortcodes' ),
|
3062 |
-
'options' => array(
|
3063 |
-
'left' => __('Left', 'magee-shortcodes'),
|
3064 |
-
'right' => __('Right', 'magee-shortcodes'),
|
3065 |
-
'top' => __('Top', 'magee-shortcodes'),
|
3066 |
-
'bottom' => __('Bottom', 'magee-shortcodes'),
|
3067 |
-
|
3068 |
-
)
|
3069 |
-
),
|
3070 |
-
'background_color' => array(
|
3071 |
-
'type' => 'colorpicker',
|
3072 |
-
'std' =>'#f5f5f5',
|
3073 |
-
'label' => __( 'Icon Circle Background Color', 'magee-shortcodes' ),
|
3074 |
-
'desc' => __( 'Set background color for promo box.', 'magee-shortcodes' ),
|
3075 |
-
),
|
3076 |
-
'button_color' => array(
|
3077 |
-
'type' => 'colorpicker',
|
3078 |
-
'std' =>'',
|
3079 |
-
'label' => __( 'Button Color', 'magee-shortcodes' ),
|
3080 |
-
),
|
3081 |
-
|
3082 |
-
'button_text' => array(
|
3083 |
-
'std' => '',
|
3084 |
-
'type' => 'text',
|
3085 |
-
'label' => __( 'Button Text', 'magee-shortcodes' ),
|
3086 |
-
'desc' => __( 'Inser text for button of promo box.', 'magee-shortcodes' ),
|
3087 |
-
),
|
3088 |
-
'button_text_color' => array(
|
3089 |
-
'std' => '#ffffff',
|
3090 |
-
'type' => 'colorpicker',
|
3091 |
-
'label' => __( 'Button Text Color', 'magee-shortcodes' ),
|
3092 |
-
),
|
3093 |
-
'button_link' => array(
|
3094 |
-
'std' => '',
|
3095 |
-
'type' => 'text',
|
3096 |
-
'label' => __( 'Button Link URL', 'magee-shortcodes' ),
|
3097 |
-
'desc' => __( 'Inser link for button of promo box, eg: http://example.com.', 'magee-shortcodes' ),
|
3098 |
-
),
|
3099 |
-
'button_icon' => array(
|
3100 |
-
'type' => 'iconpicker',
|
3101 |
-
'label' => __( 'Button Icon', 'magee-shortcodes' ),
|
3102 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
3103 |
-
'options' => $icons
|
3104 |
-
),
|
3105 |
-
'content' => array(
|
3106 |
-
'std' => '',
|
3107 |
-
'type' => 'textarea',
|
3108 |
-
'label' => __( 'Content', 'magee-shortcodes' ),
|
3109 |
-
'desc' => __( 'Insert content for promo box.', 'magee-shortcodes' ),
|
3110 |
-
),
|
3111 |
-
'class' => array(
|
3112 |
-
'std' => '',
|
3113 |
-
'type' => 'text',
|
3114 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
3115 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
3116 |
-
),
|
3117 |
-
'id' => array(
|
3118 |
-
'std' => '',
|
3119 |
-
'type' => 'text',
|
3120 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
3121 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
3122 |
-
),
|
3123 |
-
),
|
3124 |
-
'shortcode' => '[ms_promo_box style="{{style}}" border_color="{{border_color}}" border_width="{{border_width}}" border_position="{{border_position}}" background_color="{{background_color}}" button_color="{{button_color}}" button_link="{{button_link}}" button_icon="{{button_icon}}" button_text="{{button_text}}" button_text_color="{{button_text_color}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_promo_box]',
|
3125 |
-
'popup_title' => __( 'Promo Box Shortcode', 'magee-shortcodes' ),
|
3126 |
-
'name' => __('promo-box-shortcode/','magee-shortcodes'),
|
3127 |
-
);
|
3128 |
-
|
3129 |
-
/*-----------------------------------------------------------------------------------*/
|
3130 |
-
/* Pullquote Config
|
3131 |
-
/*-----------------------------------------------------------------------------------*/
|
3132 |
-
|
3133 |
-
$magee_shortcodes['pullquote'] = array(
|
3134 |
-
'no_preview' => true,
|
3135 |
-
'icon' => 'fa-quote-left',
|
3136 |
-
'params' => array(
|
3137 |
-
'align' => array(
|
3138 |
-
'type' => 'select',
|
3139 |
-
'label' => __('Align', 'magee-shortcodes'),
|
3140 |
-
'desc' => __('Set alignment for pullquote.','magee-shortcodes'),
|
3141 |
-
'options' => array(
|
3142 |
-
'left' => __('Left', 'magee-shortcodes') ,
|
3143 |
-
'right' => __('Right', 'magee-shortcodes'),
|
3144 |
-
)
|
3145 |
-
),
|
3146 |
-
'content' => array(
|
3147 |
-
'std' => '',
|
3148 |
-
'type' => 'textarea',
|
3149 |
-
'label' => __( 'Content', 'magee-shortcodes'),
|
3150 |
-
'desc' => __( 'Insert content for pullquote.', 'magee-shortcodes')
|
3151 |
-
),
|
3152 |
-
'class' => array(
|
3153 |
-
'std' => '',
|
3154 |
-
'type' => 'text',
|
3155 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
3156 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
3157 |
-
),
|
3158 |
-
'id' => array(
|
3159 |
-
'std' => '',
|
3160 |
-
'type' => 'text',
|
3161 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
3162 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
3163 |
-
),
|
3164 |
-
|
3165 |
-
),
|
3166 |
-
'shortcode' => '[ms_pullquote align="{{align}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_pullquote]',
|
3167 |
-
'popup_title' =>__('Pullquote Shortcode','magee-shortcodes'),
|
3168 |
-
'name' => __('pullquote-shortcode/','magee-shortocdes'),
|
3169 |
-
);
|
3170 |
-
|
3171 |
-
/*-----------------------------------------------------------------------------------*/
|
3172 |
-
/* QR Code Config
|
3173 |
-
/*-----------------------------------------------------------------------------------*/
|
3174 |
-
|
3175 |
-
$magee_shortcodes['QRCode'] = array(
|
3176 |
-
'no_preview' => true,
|
3177 |
-
'icon' => 'fa-qrcode',
|
3178 |
-
'params' => array(
|
3179 |
-
|
3180 |
-
'content' =>array(
|
3181 |
-
'std' => '',
|
3182 |
-
'type' => 'text',
|
3183 |
-
'label' => __( 'Content', 'magee-shortcodes' ),
|
3184 |
-
'desc' => __( 'The text to store within the QR code. Any text or URL is available.', 'magee-shortcodes' ),
|
3185 |
-
),
|
3186 |
-
'alt' => array(
|
3187 |
-
'std' => 'scan QR code',
|
3188 |
-
'type' => 'text',
|
3189 |
-
'label' => __( 'Alternative text', 'magee-shortcodes' ),
|
3190 |
-
'desc' => __( 'Set image alt for QR code.', 'magee-shortcodes' ),
|
3191 |
-
),
|
3192 |
-
'size' => array(
|
3193 |
-
'std' => '100',
|
3194 |
-
'type' => 'number',
|
3195 |
-
'max' => '200',
|
3196 |
-
'min' => '0',
|
3197 |
-
'label' => __('Size in pixel','magee-shortcodes'),
|
3198 |
-
'desc' => __('Image width and height.','magee-shortcodes'),
|
3199 |
-
),
|
3200 |
-
'click' => array(
|
3201 |
-
'std' => 'no',
|
3202 |
-
'type' => 'choose',
|
3203 |
-
'label' => __('QRCode clickable?','magee-shortcodes'),
|
3204 |
-
'desc' => __('Choose to make this QR code clickable.','magee-shortcodes'),
|
3205 |
-
'options' => array(
|
3206 |
-
'no' => __( 'No', 'magee-shortcodes' ),
|
3207 |
-
'yes' => __( 'Yes', 'magee-shortcodes' ),
|
3208 |
-
)
|
3209 |
-
),
|
3210 |
-
'fgcolor' => array(
|
3211 |
-
'std' => '#000000',
|
3212 |
-
'type' => 'colorpicker',
|
3213 |
-
'label' => __('Foreground Color' ,'magee-shortcodes'),
|
3214 |
-
'desc' => __('Set foreground Color for QR code.' ,'magee-shortcodes'),
|
3215 |
-
),
|
3216 |
-
'bgcolor' =>array(
|
3217 |
-
'std' => '#FFFFFF',
|
3218 |
-
'type' => 'colorpicker',
|
3219 |
-
'label' => __('Background Color','magee-shortcodes'),
|
3220 |
-
'desc' => __('Set background Color for QR code.' ,'magee-shortcodes'),
|
3221 |
-
),
|
3222 |
-
),
|
3223 |
-
'shortcode' => '[ms_qrcode alt="{{alt}}" size="{{size}}" click="{{click}}" fgcolor="{{fgcolor}}" bgcolor="{{bgcolor}}"]{{content}}[/ms_qrcode]',
|
3224 |
-
'popup_title' => __( 'QR Code Shortcode', 'magee-shortcodes' ),
|
3225 |
-
'name' => __('qr-code-shortcode/','magee-shortocdes'),
|
3226 |
-
);
|
3227 |
-
|
3228 |
-
/*-----------------------------------------------------------------------------------*/
|
3229 |
-
/* Quote Config
|
3230 |
-
/*-----------------------------------------------------------------------------------*/
|
3231 |
-
|
3232 |
-
$magee_shortcodes['quote'] = array(
|
3233 |
-
'no_preview' => true,
|
3234 |
-
'icon' => 'fa-quote-right',
|
3235 |
-
'params' => array(
|
3236 |
-
'cite' => array(
|
3237 |
-
'std' => '',
|
3238 |
-
'type' => 'text',
|
3239 |
-
'label' => __( 'Cite', 'magee-shortcodes'),
|
3240 |
-
'desc' => __( 'Author name for quote.', 'magee-shortcodes')
|
3241 |
-
),
|
3242 |
-
'url' => array(
|
3243 |
-
'std' => '',
|
3244 |
-
'type' => 'text',
|
3245 |
-
'label' => __( 'Cite Link', 'magee-shortcodes'),
|
3246 |
-
'desc' => __( 'Insert Url for the quote author. Leave empty to disable hyperlink.', 'magee-shortcodes')
|
3247 |
-
),
|
3248 |
-
'content' => array(
|
3249 |
-
'std' => '',
|
3250 |
-
'type' => 'textarea',
|
3251 |
-
'label' => __( 'Content', 'magee-shortcodes'),
|
3252 |
-
'desc' => __( 'Insert content for the quote.', 'magee-shortcodes')
|
3253 |
-
),
|
3254 |
-
'class' => array(
|
3255 |
-
'std' => '',
|
3256 |
-
'type' => 'text',
|
3257 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
3258 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
3259 |
-
),
|
3260 |
-
'id' => array(
|
3261 |
-
'std' => '',
|
3262 |
-
'type' => 'text',
|
3263 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
3264 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
3265 |
-
),
|
3266 |
-
),
|
3267 |
-
'shortcode' => '[ms_quote cite="{{cite}}" url="{{url}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_quote]',
|
3268 |
-
'popup_title' =>__('Quote Shortcode','magee-shortcodes'),
|
3269 |
-
'name' => __('quote-shortcode/','magee-shortocdes'),
|
3270 |
-
);
|
3271 |
-
|
3272 |
-
/*-----------------------------------------------------------------------------------*/
|
3273 |
-
/* RSS Feed Config
|
3274 |
-
/*-----------------------------------------------------------------------------------*/
|
3275 |
-
|
3276 |
-
$magee_shortcodes['rss_feed'] = array(
|
3277 |
-
'no_preview' => true,
|
3278 |
-
'icon' => 'fa-rss' ,
|
3279 |
-
'params' => array(
|
3280 |
-
|
3281 |
-
'url' => array(
|
3282 |
-
'std' => '',
|
3283 |
-
'type' => 'text',
|
3284 |
-
'label' => __( 'Feed URL', 'magee-shortcodes'),
|
3285 |
-
'desc' => __( 'Url of RSS Feed.', 'magee-shortcodes')
|
3286 |
-
),
|
3287 |
-
'number' => array(
|
3288 |
-
'std' => '3',
|
3289 |
-
'type' => 'number',
|
3290 |
-
'max' => '20',
|
3291 |
-
'min' => '0',
|
3292 |
-
'label' => __( 'Number to Display', 'magee-shortcodes'),
|
3293 |
-
'desc' => __( 'Number of items to show.', 'magee-shortcodes')
|
3294 |
-
),
|
3295 |
-
'class' => array(
|
3296 |
-
'std' => '',
|
3297 |
-
'type' => 'text',
|
3298 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
3299 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
3300 |
-
),
|
3301 |
-
'id' => array(
|
3302 |
-
'std' => '',
|
3303 |
-
'type' => 'text',
|
3304 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
3305 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
3306 |
-
),
|
3307 |
-
),
|
3308 |
-
'shortcode' => '[ms_rss_feed url="{{url}}" number="{{number}}" class="{{class}}" id="{{id}}"][/ms_rss_feed]',
|
3309 |
-
'popup_title' =>__('RSS Feed Shortcode','magee-shortcodes'),
|
3310 |
-
'name' => __('rss-feed-shortcode/','magee-shortocdes'),
|
3311 |
-
);
|
3312 |
-
|
3313 |
-
|
3314 |
-
/*-----------------------------------------------------------------------------------*/
|
3315 |
-
/* Scheduled_content Config
|
3316 |
-
/*-----------------------------------------------------------------------------------*/
|
3317 |
-
|
3318 |
-
$magee_shortcodes['scheduled_content'] = array(
|
3319 |
-
'no_preview' => true,
|
3320 |
-
'icon' => 'fa-clock-o',
|
3321 |
-
'params' => array(
|
3322 |
-
'time' => array(
|
3323 |
-
'std' => '6-12,13-16',
|
3324 |
-
'type' => 'text',
|
3325 |
-
'label' => __( 'Time', 'magee-shortcodes'),
|
3326 |
-
'desc' => __( 'Select an random time in one day to show content.</br>Example: 6-12,13-16 show content from 6:00 to 12:00 and from 13:00 to 16:00', 'magee-shortcodes')
|
3327 |
-
),
|
3328 |
-
'day_week' => array(
|
3329 |
-
'std' => '1-5,7',
|
3330 |
-
'type' => 'text',
|
3331 |
-
'label' => __( 'Days of Week', 'magee-shortcodes'),
|
3332 |
-
'desc' => __( 'Select days from one week to show content.</br>1 => Monday </br>2 => Tuesday </br> 3 => Wednesday</br> 4 => Thursday </br> 5 => Friday </br> 6 => Saturday </br> 7 => Sunday </br>Examples:1-5,7 =>show content at Sunday and from Monday to Friday', 'magee-shortcodes')
|
3333 |
-
),
|
3334 |
-
'day_month' =>array(
|
3335 |
-
'std' => '10-15,20-25',
|
3336 |
-
'type' => 'text',
|
3337 |
-
'label' => __( 'Days of Month', 'magee-shortcodes'),
|
3338 |
-
'desc' => __('Select days from one month to show content.</br>Examples:</br>1 => show content only at first day of month </br> 10-25 => show content from 10th to 25th </br> 10-15,20-25 => show content from 10th to 15th and from 20th to 25th','magee-shortcodes')
|
3339 |
-
),
|
3340 |
-
'months' => array(
|
3341 |
-
'std' => '1,5,8-9',
|
3342 |
-
'type' => 'text',
|
3343 |
-
'label' => __('Months','magee-shortcodes'),
|
3344 |
-
'desc' => __('Select months from a year to show content.</br>Examples:</br>1 => show content in January </br> 3-6 => show content from March to June </br> 1,5,8-9 => show content in January,May and from August to September','magee-shortcodes')
|
3345 |
-
),
|
3346 |
-
'years' => array(
|
3347 |
-
'std' => '2016,2017,2345-2666',
|
3348 |
-
'type' => 'text',
|
3349 |
-
'label' => __('Years','magee-shortcodes'),
|
3350 |
-
'desc' => __( 'Select years to show content.</br>Examples:</br> 2016 => show content in 2016 </br>2014-2016 => show content from 2014 to 2016 </br> 2016,2017,2345-2666 => show content in 2016,2017 and from 2345 to 2666','magee-shortcodes')
|
3351 |
-
),
|
3352 |
-
'class' => array(
|
3353 |
-
'std' => '',
|
3354 |
-
'type' => 'text',
|
3355 |
-
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
3356 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
3357 |
-
),
|
3358 |
-
'id' => array(
|
3359 |
-
'std' => '',
|
3360 |
-
'type' => 'text',
|
3361 |
-
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
3362 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
3363 |
-
),
|
3364 |
-
'content' => array(
|
3365 |
-
'std' => '',
|
3366 |
-
'type' => 'textarea',
|
3367 |
-
'label' => __( 'Content', 'magee-shortcodes'),
|
3368 |
-
'desc' => __( 'Insert scheduled content.', 'magee-shortcodes')
|
3369 |
-
)
|
3370 |
-
),
|
3371 |
-
'shortcode' => '[ms_scheduled_content time="{{time}}" day_week="{{day_week}}" day_month="{{day_month}}" months="{{months}}" years="{{years}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_scheduled_content]',
|
3372 |
-
'popup_title' => __( 'Scheduled Shortcode','magee-shortcodes'),
|
3373 |
-
'name' => __('scheduled-shortcode/','magee-shortocdes'),
|
3374 |
-
);
|
3375 |
-
|
3376 |
-
/*-----------------------------------------------------------------------------------*/
|
3377 |
-
/* Section Config
|
3378 |
-
/*-----------------------------------------------------------------------------------*/
|
3379 |
-
|
3380 |
-
$magee_shortcodes['section'] = array(
|
3381 |
-
'no_preview' => true,
|
3382 |
-
'icon' => 'fa-list-alt',
|
3383 |
-
'params' => array(
|
3384 |
-
|
3385 |
-
'background_color' => array(
|
3386 |
-
'std' => '',
|
3387 |
-
'type' => 'colorpicker',
|
3388 |
-
'label' => __( 'Background Color', 'magee-shortcodes' ),
|
3389 |
-
'desc' => __( 'Set background for section. Leave blank for transparent.', 'magee-shortcodes' ),
|
3390 |
-
),
|
3391 |
-
|
3392 |
-
'background_image' => array(
|
3393 |
-
'std' => '',
|
3394 |
-
'type' => 'uploader',
|
3395 |
-
'label' => __( 'Background Image', 'magee-shortcodes' ),
|
3396 |
-
'desc' => __( 'Upload an image to display in the background.', 'magee-shortcodes' ),
|
3397 |
-
),
|
3398 |
-
'background_repeat' => array(
|
3399 |
-
'type' => 'select',
|
3400 |
-
'label' => __( 'Background Repeat', 'magee-shortcodes' ),
|
3401 |
-
'desc' =>__( 'Choose repeat style for the background image.', 'magee-shortcodes' ),
|
3402 |
-
'std' => '',
|
3403 |
-
'options' => array(
|
3404 |
-
'repeat' => __( 'Repeat', 'magee-shortcodes' ),
|
3405 |
-
'repeat-x' => __( 'Repeat-x', 'magee-shortcodes' ),
|
3406 |
-
'repeat-y' => __( 'Repeat-y', 'magee-shortcodes' ),
|
3407 |
-
'no-repeat' => __( 'No-repeat', 'magee-shortcodes' ),
|
3408 |
-
'inherit' => __( 'Inherit', 'magee-shortcodes' )
|
3409 |
-
)
|
3410 |
-
),
|
3411 |
-
|
3412 |
-
'background_position' => array(
|
3413 |
-
'type' => 'select',
|
3414 |
-
'label' => __( 'Background Position', 'magee-shortcodes' ),
|
3415 |
-
'desc' => __( 'Choose the postion of the background image.', 'magee-shortcodes' ),
|
3416 |
-
'std' => '',
|
3417 |
-
'options' => array(
|
3418 |
-
'top left' => __( 'Top Left', 'magee-shortcodes' ),
|
3419 |
-
'top center' => __( 'Top Center', 'magee-shortcodes' ),
|
3420 |
-
'top right' => __( 'Top Right', 'magee-shortcodes' ),
|
3421 |
-
'center left' => __( 'Center Left', 'magee-shortcodes' ),
|
3422 |
-
'center center' => __( 'Center Center', 'magee-shortcodes' ),
|
3423 |
-
'center right' => __( 'Center Right', 'magee-shortcodes' ),
|
3424 |
-
'bottom left' => __( 'Bottom Left', 'magee-shortcodes' ),
|
3425 |
-
'bottom center' => __( 'Bottom Center', 'magee-shortcodes' ),
|
3426 |
-
'bottom right' => __( 'Bottom Right', 'magee-shortcodes' )
|
3427 |
-
)
|
3428 |
-
),
|
3429 |
-
'background_parallax' => array(
|
3430 |
-
'type' => 'choose',
|
3431 |
-
'label' => __( 'Background Parallax', 'magee-shortcodes' ),
|
3432 |
-
'desc' => __( 'Choose how the background image scrolls and responds.', 'magee-shortcodes' ),
|
3433 |
-
'std' => 'no',
|
3434 |
-
'options' => $reverse_choices
|
3435 |
-
),
|
3436 |
-
'border_size' => array(
|
3437 |
-
'std' => '0',
|
3438 |
-
'type' => 'number',
|
3439 |
-
'max' => '50',
|
3440 |
-
'min' => '0',
|
3441 |
-
'label' => __( 'Border Size', 'magee-shortcodes' ),
|
3442 |
-
'desc' =>__( 'In pixels (px), eg: 1px.', 'magee-shortcodes' ),
|
3443 |
-
),
|
3444 |
-
|
3445 |
-
'border_color' => array(
|
3446 |
-
'std' => '',
|
3447 |
-
'type' => 'colorpicker',
|
3448 |
-
'label' => __( 'Border Color', 'magee-shortcodes' ),
|
3449 |
-
'desc' => __( 'Set border color for section.', 'magee-shortcodes' ),
|
3450 |
-
),
|
3451 |
-
'border_style' => array(
|
3452 |
-
'type' => 'select',
|
3453 |
-
'label' => __( 'Background Position', 'magee-shortcodes' ),
|
3454 |
-
'desc' => __( 'Select border style for section', 'magee-shortcodes' ),
|
3455 |
-
'std' => '',
|
3456 |
-
'options' => array(
|
3457 |
-
'none' => __( 'None', 'magee-shortcodes' ),
|
3458 |
-
'hidden' => __( 'Hidden', 'magee-shortcodes' ),
|
3459 |
-
'dotted' => __( 'Dotted', 'magee-shortcodes' ),
|
3460 |
-
'dashed' => __( 'Dashed', 'magee-shortcodes' ),
|
3461 |
-
'solid' => __( 'Solid', 'magee-shortcodes' ),
|
3462 |
-
'double' => __( 'Double', 'magee-shortcodes' ),
|
3463 |
-
'groove' => __( 'Groove', 'magee-shortcodes' ),
|
3464 |
-
'ridge' => __( 'Ridge', 'magee-shortcodes' ),
|
3465 |
-
'inset' => __( 'Inset', 'magee-shortcodes' ),
|
3466 |
-
'outset' => __( 'Outset', 'magee-shortcodes' ),
|
3467 |
-
'initial' => __( 'Initial', 'magee-shortcodes' ),
|
3468 |
-
'inherit' => __( 'Inherit', 'magee-shortcodes' ),
|
3469 |
-
|
3470 |
-
)
|
3471 |
-
),
|
3472 |
-
|
3473 |
-
'padding_top' => array(
|
3474 |
-
'std' => '10',
|
3475 |
-
'type' => 'number',
|
3476 |
-
'max' => '100',
|
3477 |
-
'min' => '0',
|
3478 |
-
'label' => __( 'Padding Top', 'magee-shortcodes' ),
|
3479 |
-
'desc' => __( 'In pixels (px), eg: 1px.', 'magee-shortcodes' ),
|
3480 |
-
),
|
3481 |
-
'padding_bottom' => array(
|
3482 |
-
'std' => '10',
|
3483 |
-
'type' => 'number',
|
3484 |
-
'max' => '100',
|
3485 |
-
'min' => '0',
|
3486 |
-
'label' => __( 'Padding Bottom', 'magee-shortcodes' ),
|
3487 |
-
'desc' => __( 'In pixels (px), eg: 1px.', 'magee-shortcodes' ),
|
3488 |
-
),
|
3489 |
-
'padding_left' => array(
|
3490 |
-
'std' => '10',
|
3491 |
-
'type' => 'number',
|
3492 |
-
'max' => '100',
|
3493 |
-
'min' => '0',
|
3494 |
-
'label' => __( 'Padding Left', 'magee-shortcodes' ),
|
3495 |
-
'desc' => __( 'In pixels (px), eg: 1px.', 'magee-shortcodes' ),
|
3496 |
-
),
|
3497 |
-
'padding_right' => array(
|
3498 |
-
'std' => '10',
|
3499 |
-
'type' => 'number',
|
3500 |
-
'max' => '100',
|
3501 |
-
'min' => '0',
|
3502 |
-
'label' => __( 'Padding Right', 'magee-shortcodes' ),
|
3503 |
-
'desc' => __( 'In pixels (px), eg: 1px.', 'magee-shortcodes' ),
|
3504 |
-
),
|
3505 |
-
'contents_in_container' => array(
|
3506 |
-
'type' => 'choose',
|
3507 |
-
'label' => __( 'Contents in Container ?', 'magee-shortcodes' ),
|
3508 |
-
'desc' => __( 'Put the content in container.', 'magee-shortcodes' ),
|
3509 |
-
'std' => 'no',
|
3510 |
-
'options' => $reverse_choices
|
3511 |
-
),
|
3512 |
-
|
3513 |
-
'content' => array(
|
3514 |
-
'std' => __('Section content.', 'magee-shortcodes'),
|
3515 |
-
'type' => 'textarea',
|
3516 |
-
'label' => __( 'Section Content', 'magee-shortcodes' ),
|
3517 |
-
'desc' => __( 'Insert content for section.', 'magee-shortcodes' ),
|
3518 |
-
),
|
3519 |
-
|
3520 |
-
'top_separator' => array(
|
3521 |
-
'std' => 'yes',
|
3522 |
-
'type' => 'select',
|
3523 |
-
'label' => __( 'Top Separator', 'magee-shortcodes' ),
|
3524 |
-
'desc' => '',
|
3525 |
-
'options' => array(
|
3526 |
-
'' => __('None', 'magee-shortcodes'),
|
3527 |
-
'triangle' => __('Triangle', 'magee-shortcodes'),
|
3528 |
-
'doublediagonal' => __('Doublediagonal', 'magee-shortcodes'),
|
3529 |
-
'halfcircle' => __('Halfcircle', 'magee-shortcodes'),
|
3530 |
-
'bigtriangle' => __('Bigtriangle', 'magee-shortcodes'),
|
3531 |
-
'bighalfcircle' => __('Bighalfcircle', 'magee-shortcodes'),
|
3532 |
-
'curl' => __('Curl', 'magee-shortcodes'),
|
3533 |
-
'multitriangles' => __('Multitriangles', 'magee-shortcodes'),
|
3534 |
-
'roundedsplit' => __('Roundedsplit', 'magee-shortcodes'),
|
3535 |
-
'boxes' => __('Boxes', 'magee-shortcodes'),
|
3536 |
-
'zigzag' => __('Zigzag', 'magee-shortcodes'),
|
3537 |
-
'clouds' => __('Clouds', 'magee-shortcodes'),
|
3538 |
-
)
|
3539 |
-
),
|
3540 |
-
'bottom_separator' => array(
|
3541 |
-
'std' => 'yes',
|
3542 |
-
'type' => 'select',
|
3543 |
-
'label' => __( 'Bottom Separator', 'magee-shortcodes' ),
|
3544 |
-
'desc' => '',
|
3545 |
-
'options' => array(
|
3546 |
-
'' => __('None', 'magee-shortcodes'),
|
3547 |
-
'triangle' => __('Triangle', 'magee-shortcodes'),
|
3548 |
-
'halfcircle' => __('Halfcircle', 'magee-shortcodes'),
|
3549 |
-
'bigtriangle' => __('Bigtriangle', 'magee-shortcodes'),
|
3550 |
-
'bighalfcircle' => __('Bighalfcircle', 'magee-shortcodes'),
|
3551 |
-
'curl' => __('Curl', 'magee-shortcodes'),
|
3552 |
-
'multitriangles' => __('Multitriangles', 'magee-shortcodes'),
|
3553 |
-
'roundedcorners' => __('Roundedcorners', 'magee-shortcodes'),
|
3554 |
-
'foldedcorner' => __('Foldedcorner', 'magee-shortcodes'),
|
3555 |
-
'boxes' => __('Boxes', 'magee-shortcodes'),
|
3556 |
-
'zigzag' => __('Zigzag', 'magee-shortcodes'),
|
3557 |
-
'stamp' => __('Stamp', 'magee-shortcodes'),
|
3558 |
-
)
|
3559 |
-
),
|
3560 |
-
'full_height' => array(
|
3561 |
-
'std' => '',
|
3562 |
-
'type' => 'choose',
|
3563 |
-
'label' => __('Full Height' , 'magee-shortcodes'),
|
3564 |
-
'desc' => __('Choose to set the section height same as browser window.' , 'magee-shortcodes'),
|
3565 |
-
'options' => $reverse_choices
|
3566 |
-
),
|
3567 |
-
'class' => array(
|
3568 |
-
'std' => '',
|
3569 |
-
'type' => 'text',
|
3570 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
3571 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
3572 |
-
),
|
3573 |
-
'id' => array(
|
3574 |
-
'std' => '',
|
3575 |
-
'type' => 'text',
|
3576 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
3577 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
3578 |
-
),
|
3579 |
-
),
|
3580 |
-
'shortcode' => '[ms_section background_color="{{background_color}}" background_image="{{background_image}}" background_repeat="{{background_repeat}}" background_position="{{background_position}}" background_parallax="{{background_parallax}}" border_size="{{border_size}}" border_color="{{border_color}}" border_style="{{border_style}}" padding_top="{{padding_top}}" padding_bottom="{{padding_bottom}}" padding_left="{{padding_left}}" padding_right="{{padding_right}}" contents_in_container="{{contents_in_container}}" top_separator="{{top_separator}}" bottom_separator="{{bottom_separator}}" full_height="{{full_height}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_section]',
|
3581 |
-
'popup_title' => __( 'Section Shortcode', 'magee-shortcodes' ),
|
3582 |
-
'name' => __('section-shortcode/','magee-shortcodes'),
|
3583 |
-
);
|
3584 |
-
|
3585 |
-
/*-----------------------------------------------------------------------------------*/
|
3586 |
-
/* Magee Slider Config
|
3587 |
-
/*-----------------------------------------------------------------------------------*/
|
3588 |
-
|
3589 |
-
$magee_shortcodes['ms_slider'] = array(
|
3590 |
-
'no_preview' => true,
|
3591 |
-
'icon' => 'fa-sliders',
|
3592 |
-
'params' => array(
|
3593 |
-
|
3594 |
-
'id' => array(
|
3595 |
-
'std' => '',
|
3596 |
-
'type' => 'select',
|
3597 |
-
'label' => __( 'Slider', 'magee-shortcodes' ),
|
3598 |
-
'desc' => '',
|
3599 |
-
'options' => $magee_sliders
|
3600 |
-
),
|
3601 |
-
|
3602 |
-
'class' => array(
|
3603 |
-
'std' => '',
|
3604 |
-
'type' => 'text',
|
3605 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
3606 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
3607 |
-
|
3608 |
-
),),
|
3609 |
-
'shortcode' => '[ms_slider id="{{id}}" class="{{class}}"]',
|
3610 |
-
'popup_title' => __( 'Slider', 'magee-shortcodes' ),
|
3611 |
-
'name' => __('slider-shortcode/','magee-shortocdes'),
|
3612 |
-
);
|
3613 |
-
|
3614 |
-
/*-----------------------------------------------------------------------------------*/
|
3615 |
-
/* Social Config
|
3616 |
-
/*-----------------------------------------------------------------------------------*/
|
3617 |
-
|
3618 |
-
$magee_shortcodes['social'] = array(
|
3619 |
-
'no_preview' => true,
|
3620 |
-
'icon' => 'fa-twitter',
|
3621 |
-
'params' => array(
|
3622 |
-
|
3623 |
-
'title' => array(
|
3624 |
-
'std' => '',
|
3625 |
-
'type' => 'text',
|
3626 |
-
'label' => __( 'Title ', 'magee-shortcodes' ),
|
3627 |
-
'desc' => __( 'Insert the title for the social icon.', 'magee-shortcodes' ),
|
3628 |
-
),
|
3629 |
-
'icon' => array(
|
3630 |
-
'type' => 'iconpicker',
|
3631 |
-
'label' => __( 'Icon', 'magee-shortcodes' ),
|
3632 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
3633 |
-
'options' => $icons
|
3634 |
-
),
|
3635 |
-
'icon_size' => array(
|
3636 |
-
'std' => '13',
|
3637 |
-
'type' => 'number',
|
3638 |
-
'max' => '50',
|
3639 |
-
'min' => '0',
|
3640 |
-
'label' => __( 'Icon Size', 'magee-shortcodes' ),
|
3641 |
-
'desc' => __( 'In pixels (px), eg: 13px.', 'magee-shortcodes')
|
3642 |
-
),
|
3643 |
-
'iconcolor' => array(
|
3644 |
-
'type' => 'colorpicker',
|
3645 |
-
'label' => __( 'Icon Color', 'magee-shortcodes' ),
|
3646 |
-
'desc' => __( 'Set color for icon.', 'magee-shortcodes')
|
3647 |
-
),
|
3648 |
-
'backgroundcolor' => array(
|
3649 |
-
'type' => 'colorpicker',
|
3650 |
-
'label' => __( 'Icon Circle Background Color', 'magee-shortcodes' ),
|
3651 |
-
'desc' => __( 'Set background color for icon.', 'magee-shortcodes')
|
3652 |
-
),
|
3653 |
-
'effect_3d' => array(
|
3654 |
-
'std'=>'no',
|
3655 |
-
'type' => 'choose',
|
3656 |
-
'label' => __( 'Icon 3D effect' ),
|
3657 |
-
'desc' => __( 'Display box shadow for icon.', 'magee-shortcodes'),
|
3658 |
-
'options' => array(
|
3659 |
-
'yes' => __('Yes', 'magee-shortcodes'),
|
3660 |
-
'no' => __('No', 'magee-shortcodes'),
|
3661 |
-
)
|
3662 |
-
),
|
3663 |
-
'iconboxedradius' => array(
|
3664 |
-
'type' => 'select',
|
3665 |
-
'label' => __( 'Icon Box Radius Style', 'magee-shortcodes' ),
|
3666 |
-
//'desc' => __( '', 'magee-shortcodes' ),
|
3667 |
-
'options' => array(
|
3668 |
-
'normal' => __('Normal', 'magee-shortcodes'),
|
3669 |
-
'boxed' => __('Boxed', 'magee-shortcodes'),
|
3670 |
-
'rounded' => __('Rounded', 'magee-shortcodes'),
|
3671 |
-
'circle' => __('Circle ', 'magee-shortcodes'),
|
3672 |
-
)
|
3673 |
-
),
|
3674 |
-
'iconlink' => array(
|
3675 |
-
'std' => '',
|
3676 |
-
'type' => 'text',
|
3677 |
-
'label' => __( 'Icon Link URL', 'magee-shortcodes' ),
|
3678 |
-
'desc' => __( 'Add the icon\'s url eg: http://example.com.', 'magee-shortcodes' ),
|
3679 |
-
),
|
3680 |
-
'icontarget' => array(
|
3681 |
-
'type' => 'choose',
|
3682 |
-
'label' => __( 'Icon Target', 'magee-shortcodes' ),
|
3683 |
-
'desc' => __( '_self = open in same window <br />_blank = open in new window.', 'magee-shortcodes' ),
|
3684 |
-
'options' => array(
|
3685 |
-
'_self' => '_self',
|
3686 |
-
'_blank' => '_blank'
|
3687 |
-
)
|
3688 |
-
),
|
3689 |
-
'class' => array(
|
3690 |
-
'std' => '',
|
3691 |
-
'type' => 'text',
|
3692 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
3693 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
3694 |
-
),
|
3695 |
-
'id' => array(
|
3696 |
-
'std' => '',
|
3697 |
-
'type' => 'text',
|
3698 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
3699 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
3700 |
-
),
|
3701 |
-
),
|
3702 |
-
'shortcode' => '[ms_social icon_size="{{icon_size}}" title="{{title}}" icon="{{icon}}" iconcolor="{{iconcolor}}" effect_3d="{{effect_3d}}" backgroundcolor="{{backgroundcolor}}" iconboxedradius="{{iconboxedradius}}" iconlink="{{iconlink}}" icontarget="{{icontarget}}" class="{{class}}" id="{{id}}"][/ms_social]',
|
3703 |
-
'popup_title' => __( 'Social Shortcode', 'magee-shortcodes' ),
|
3704 |
-
'name' => __('social-shortcode/','magee-shortcodes'),
|
3705 |
-
);
|
3706 |
-
|
3707 |
-
/*-----------------------------------------------------------------------------------*/
|
3708 |
-
/* Tabs Config
|
3709 |
-
/*-----------------------------------------------------------------------------------*/
|
3710 |
-
|
3711 |
-
$magee_shortcodes['tabs'] = array(
|
3712 |
-
'no_preview' => true,
|
3713 |
-
'icon' => 'fa-list-alt',
|
3714 |
-
'params' => array(
|
3715 |
-
'style' => array(
|
3716 |
-
'type' => 'select',
|
3717 |
-
'label' => __( 'Style', 'magee-shortcodes' ),
|
3718 |
-
'desc' => __( 'Select tabs\' style.', 'magee-shortcodes' ),
|
3719 |
-
'options' => array(
|
3720 |
-
'simple' => __('Simple Style', 'magee-shortcodes'),
|
3721 |
-
'simple justified' => __('Simple Style Justified', 'magee-shortcodes'),
|
3722 |
-
'button' => __('Button Style', 'magee-shortcodes'),
|
3723 |
-
'button justified' => __('Button Style Justified', 'magee-shortcodes'),
|
3724 |
-
'normal' => __('Normal Style', 'magee-shortcodes'),
|
3725 |
-
'normal justified' => __('Normal Style Justified', 'magee-shortcodes'),
|
3726 |
-
'vertical' => __('Vertical Style', 'magee-shortcodes'),
|
3727 |
-
'vertical right' => __('Vertical Style Right', 'magee-shortcodes'),
|
3728 |
-
)
|
3729 |
-
),
|
3730 |
-
'title_color' => array(
|
3731 |
-
'type' => 'colorpicker',
|
3732 |
-
'label' => __( 'Title Color', 'magee-shortcodes' ),
|
3733 |
-
'desc' => __( 'Set color for tab item\'s title.', 'magee-shortcodes')
|
3734 |
-
),
|
3735 |
-
'class' => array(
|
3736 |
-
'std' => '',
|
3737 |
-
'type' => 'text',
|
3738 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
3739 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
3740 |
-
),
|
3741 |
-
'id' => array(
|
3742 |
-
'std' => '',
|
3743 |
-
'type' => 'text',
|
3744 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
3745 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
3746 |
-
),
|
3747 |
-
'content' => array(
|
3748 |
-
'std' => "\r\n[ms_tab title='Tab 1' icon='fa-flag']Tab content 1[/ms_tab]\r\n[ms_tab title='Tab 2' icon='fa-thumbs-up']Tab content 2[/ms_tab]\r\n[ms_tab title='Tab 3' icon='fa-leaf']Tab content 3[/ms_tab]\r\n",
|
3749 |
-
'type' => 'textarea',
|
3750 |
-
'label' => __( 'Tab Items', 'magee-shortcodes' ),
|
3751 |
-
'desc' => __( 'Insert tab items.', 'magee-shortcodes' )
|
3752 |
-
)
|
3753 |
-
|
3754 |
-
),
|
3755 |
-
|
3756 |
-
'shortcode' => '[ms_tabs style="{{style}}" title_color="{{title_color}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_tabs]',
|
3757 |
-
'popup_title' => __( 'Tab Shortcode', 'magee-shortcodes' ),
|
3758 |
-
'name' => __('tabs-shortcode/','magee-shortcodes'),
|
3759 |
-
|
3760 |
-
);
|
3761 |
-
|
3762 |
-
/*-----------------------------------------------------------------------------------*/
|
3763 |
-
/* Targeted_content Config
|
3764 |
-
/*-----------------------------------------------------------------------------------*/
|
3765 |
-
|
3766 |
-
$magee_shortcodes['targeted_content'] = array(
|
3767 |
-
'no_preview' => true,
|
3768 |
-
'icon' => 'fa-eye' ,
|
3769 |
-
'params' => array(
|
3770 |
-
'type' => array(
|
3771 |
-
'type' => 'select',
|
3772 |
-
'label' => __( 'Type', 'magee-shortcodes'),
|
3773 |
-
'desc' => __( 'Select visible permissions.Private for author only. Members for logged-in users. Guests for users not logged in.', 'magee-shortcodes'),
|
3774 |
-
'options' => array(
|
3775 |
-
'private' => __( 'Private','magee-shortcodes'),
|
3776 |
-
'members' => __( 'Members','magee-shortcodes'),
|
3777 |
-
'guests' => __('Guests','magee-shortcodes'),
|
3778 |
-
)
|
3779 |
-
),
|
3780 |
-
'content' => array(
|
3781 |
-
'std' => 'note text',
|
3782 |
-
'type' => 'textarea',
|
3783 |
-
'label' => __( 'Content', 'magee-shortcodes'),
|
3784 |
-
'desc' => __( 'Set content for targeted users.', 'magee-shortcodes')
|
3785 |
-
),
|
3786 |
-
'alternative' => array(
|
3787 |
-
'std' => 'alternative text',
|
3788 |
-
'type' => 'textarea',
|
3789 |
-
'label' => __( 'Alternative Content', 'magee-shortcodes'),
|
3790 |
-
'desc' => __( 'Set content for other users.', 'magee-shortcodes')
|
3791 |
-
),
|
3792 |
-
),
|
3793 |
-
'shortcode' => '[ms_targeted_content type="{{type}}" alternative="{{alternative}}"]{{content}}[/ms_targeted_content]',
|
3794 |
-
'popup_title' => __( 'Targeted Shortcode','magee-shortcodes'),
|
3795 |
-
'name' => __('targeted-shortcode/','magee-shortocdes'),
|
3796 |
-
);
|
3797 |
-
|
3798 |
-
/*-----------------------------------------------------------------------------------*/
|
3799 |
-
/* testimonial Config
|
3800 |
-
/*-----------------------------------------------------------------------------------*/
|
3801 |
-
|
3802 |
-
$magee_shortcodes['testimonial'] = array(
|
3803 |
-
'no_preview' => true,
|
3804 |
-
'icon' => 'fa-commenting',
|
3805 |
-
'params' => array(
|
3806 |
-
'style' => array(
|
3807 |
-
'std' => '',
|
3808 |
-
'type' => 'select',
|
3809 |
-
'label' => __( 'Style ', 'magee-shortcodes' ),
|
3810 |
-
'desc' => __( 'Select testimonial\'s style', 'magee-shortcodes' ),
|
3811 |
-
'options' => array(
|
3812 |
-
'normal' => __('Normal', 'magee-shortcodes') ,
|
3813 |
-
'box' => __('Box', 'magee-shortcodes') ,
|
3814 |
-
),
|
3815 |
-
),
|
3816 |
-
'name' => array(
|
3817 |
-
'std' => '',
|
3818 |
-
'type' => 'text',
|
3819 |
-
'label' => __( 'Name', 'magee-shortcodes' ),
|
3820 |
-
'desc' => __( 'Name of testimonial\'s author.', 'magee-shortcodes' ),
|
3821 |
-
),
|
3822 |
-
'byline' => array(
|
3823 |
-
'std' => '',
|
3824 |
-
'type' => 'text',
|
3825 |
-
'label' => __( 'Byline', 'magee-shortcodes' ),
|
3826 |
-
'desc' => __( 'Byline of testimonial\'s author.', 'magee-shortcodes' ),
|
3827 |
-
),
|
3828 |
-
'avatar' => array(
|
3829 |
-
'type' => 'link',
|
3830 |
-
'label' => __( 'Avatar', 'magee-shortcodes' ),
|
3831 |
-
'desc' => __( 'Avatar of testimonial\'s author.', 'magee-shortcodes' ),
|
3832 |
-
),
|
3833 |
-
|
3834 |
-
'alignment' => array(
|
3835 |
-
'std' => '',
|
3836 |
-
'type' => 'select',
|
3837 |
-
'label' => __( 'Alignment', 'magee-shortcodes' ),
|
3838 |
-
'desc' => __( 'Select the content\'s alignment.', 'magee-shortcodes' ),
|
3839 |
-
'options' => array(
|
3840 |
-
'none' => __('None', 'magee-shortcodes') ,
|
3841 |
-
'center' => __('Center', 'magee-shortcodes') ,
|
3842 |
-
),
|
3843 |
-
),
|
3844 |
-
'content' => array(
|
3845 |
-
'std' => __('Testimonial Content', 'magee-shortcodes'),
|
3846 |
-
'type' => 'textarea',
|
3847 |
-
'label' => __( 'Testimonial Content', 'magee-shortcodes' ),
|
3848 |
-
'desc' => __( 'Insert content for testimonial.', 'magee-shortcodes' )
|
3849 |
-
),
|
3850 |
-
'class' => array(
|
3851 |
-
'std' => '',
|
3852 |
-
'type' => 'text',
|
3853 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
3854 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
3855 |
-
),
|
3856 |
-
'id' => array(
|
3857 |
-
'std' => '',
|
3858 |
-
'type' => 'text',
|
3859 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
3860 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
3861 |
-
),
|
3862 |
-
),
|
3863 |
-
'shortcode' => '[ms_testimonial style="{{style}}" name="{{name}}" avatar="{{avatar}}" byline="{{byline}}" alignment="{{alignment}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_testimonial]',
|
3864 |
-
'popup_title' => __( 'Testimonial Shortcode', 'magee-shortcodes' ),
|
3865 |
-
'name' => __('testimonial-shortcode/','magee-shortcodes'),
|
3866 |
-
);
|
3867 |
-
|
3868 |
-
|
3869 |
-
/*-----------------------------------------------------------------------------------*/
|
3870 |
-
/* Timeline Config
|
3871 |
-
/*-----------------------------------------------------------------------------------*/
|
3872 |
-
|
3873 |
-
$magee_shortcodes['timeline'] = array(
|
3874 |
-
'no_preview' => true,
|
3875 |
-
'icon' => 'fa-history',
|
3876 |
-
'params' => array(
|
3877 |
-
|
3878 |
-
'columns' => array(
|
3879 |
-
'type' => 'select',
|
3880 |
-
'label' => __( 'Columns', 'magee-shortcodes' ),
|
3881 |
-
'desc' =>__( 'Number of items.', 'magee-shortcodes' ),
|
3882 |
-
'std' => '4',
|
3883 |
-
'options' => array(
|
3884 |
-
'2' => __( '2 columns', 'magee-shortcodes' ),
|
3885 |
-
'3' => __( '3 columns', 'magee-shortcodes' ),
|
3886 |
-
'4' => __( '4 columns', 'magee-shortcodes' ),
|
3887 |
-
'5' => __( '5 columns', 'magee-shortcodes' )
|
3888 |
-
)
|
3889 |
-
),
|
3890 |
-
|
3891 |
-
'class' => array(
|
3892 |
-
'std' => '',
|
3893 |
-
'type' => 'text',
|
3894 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
3895 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
3896 |
-
),
|
3897 |
-
'id' => array(
|
3898 |
-
'std' => '',
|
3899 |
-
'type' => 'text',
|
3900 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
3901 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
3902 |
-
),
|
3903 |
-
'content' => array(
|
3904 |
-
'std' => "\r\n[ms_timeline_item title='Moved In' time='2012']Vestibulum pharetra nibh sit amet consequat commodo.[/ms_timeline_item]\r\n[ms_timeline_item title='Upgraded In' time='2013']Vestibulum pharetra nibh sit amet consequat commodo.[/ms_timeline_item]\r\n[ms_timeline_item title='Extended In' time='2014']Vestibulum pharetra nibh sit amet consequat commodo.[/ms_timeline_item]\r\n[ms_timeline_item title='Presented In' time='2015']Vestibulum pharetra nibh sit amet consequat commodo.[/ms_timeline_item]\r\n",
|
3905 |
-
'type' => 'textarea',
|
3906 |
-
'label' => __( 'Timeline Items', 'magee-shortcodes' ),
|
3907 |
-
'desc' => __( 'Insert timeline items.', 'magee-shortcodes' ),
|
3908 |
-
),
|
3909 |
-
|
3910 |
-
),
|
3911 |
-
'shortcode' => '[ms_timeline columns="{{columns}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_timeline]',
|
3912 |
-
'popup_title' => __( 'Timeline Shortcode', 'magee-shortcodes' ),
|
3913 |
-
'name' => __('timeline-shortcode/','magee-shortcodes'),
|
3914 |
-
|
3915 |
-
);
|
3916 |
-
|
3917 |
-
/*-----------------------------------------------------------------------------------*/
|
3918 |
-
/* Tooltip Config
|
3919 |
-
/*-----------------------------------------------------------------------------------*/
|
3920 |
-
|
3921 |
-
$magee_shortcodes['tooltip'] = array(
|
3922 |
-
'no_preview' => true,
|
3923 |
-
'icon' => 'fa-comment-o',
|
3924 |
-
'params' => array(
|
3925 |
-
|
3926 |
-
'title' => array(
|
3927 |
-
'std' => '',
|
3928 |
-
'type' => 'text',
|
3929 |
-
'label' => __( 'Tooltip Text', 'magee-shortcodes' ),
|
3930 |
-
'desc' => __( 'Insert the text that displays in the tooltip', 'magee-shortcodes' )
|
3931 |
-
),
|
3932 |
-
'background_color' => array(
|
3933 |
-
'type' => 'colorpicker',
|
3934 |
-
'std' => '',
|
3935 |
-
'label' => __( 'Tooltip Background Color', 'magee-shortcodes' ),
|
3936 |
-
'desc' => __( 'Set Background Color for the text.', 'magee-shortcodes' ),
|
3937 |
-
),
|
3938 |
-
'border_radius' => array(
|
3939 |
-
'type' => 'number',
|
3940 |
-
'std' => '0',
|
3941 |
-
'max' => '100',
|
3942 |
-
'min' => '0',
|
3943 |
-
'label' => __( 'Tooltip Border Radius', 'magee-shortcodes' ),
|
3944 |
-
'desc' => __( 'Set Border Radius for the text.', 'magee-shortcodes' ),
|
3945 |
-
),
|
3946 |
-
'placement' => array(
|
3947 |
-
'type' => 'select',
|
3948 |
-
'label' => __( 'Tooltip Position', 'magee-shortcodes' ),
|
3949 |
-
'desc' => __( 'Choose the display position.', 'magee-shortcodes' ),
|
3950 |
-
'options' => array(
|
3951 |
-
'top' => __('Top', 'magee-shortcodes'),
|
3952 |
-
'bottom' => __('Bottom', 'magee-shortcodes'),
|
3953 |
-
'left' => __('Left', 'magee-shortcodes'),
|
3954 |
-
'right' => __('Right', 'magee-shortcodes'),
|
3955 |
-
)
|
3956 |
-
),
|
3957 |
-
'trigger' => array(
|
3958 |
-
'type' => 'select',
|
3959 |
-
'label' => __( 'Tooltip Trigger', 'magee-shortcodes' ),
|
3960 |
-
'desc' => __( 'Choose action to trigger the tooltip.', 'magee-shortcodes' ),
|
3961 |
-
'options' => array(
|
3962 |
-
'hover' => __('Hover', 'magee-shortcodes'),
|
3963 |
-
'click' => __('Click', 'magee-shortcodes'),
|
3964 |
-
)
|
3965 |
-
),
|
3966 |
-
'content' => array(
|
3967 |
-
'std' => '',
|
3968 |
-
'type' => 'textarea',
|
3969 |
-
'label' => __( 'Content', 'magee-shortcodes' ),
|
3970 |
-
'desc' => __( 'Insert the text that will activate the tooltip hover', 'magee-shortcodes' )
|
3971 |
-
),
|
3972 |
-
'class' => array(
|
3973 |
-
'std' => '',
|
3974 |
-
'type' => 'text',
|
3975 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
3976 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
3977 |
-
),
|
3978 |
-
'id' => array(
|
3979 |
-
'std' => '',
|
3980 |
-
'type' => 'text',
|
3981 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
3982 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
3983 |
-
),
|
3984 |
-
),
|
3985 |
-
'shortcode' => '[ms_tooltip title="{{title}}" background_color="{{background_color}}" border_radius="{{border_radius}}" placement="{{placement}}" trigger="{{trigger}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_tooltip]',
|
3986 |
-
'popup_title' => __( 'Tooltip Shortcode', 'magee-shortcodes' ),
|
3987 |
-
'name' => __('tooltip-shortcode/','magee-shortocdes'),
|
3988 |
-
);
|
3989 |
-
|
3990 |
-
|
3991 |
-
/*-----------------------------------------------------------------------------------*/
|
3992 |
-
/* Video Config
|
3993 |
-
/*-----------------------------------------------------------------------------------*/
|
3994 |
-
|
3995 |
-
$magee_shortcodes['video'] = array(
|
3996 |
-
'no_preview' => true,
|
3997 |
-
'icon' => 'fa-play-circle-o',
|
3998 |
-
'params' => array(
|
3999 |
-
|
4000 |
-
'mp4_url' => array(
|
4001 |
-
'std' => '',
|
4002 |
-
'type' => 'link',
|
4003 |
-
'label' => __( 'Mp4 Video Url','magee-shortcodes'),
|
4004 |
-
'desc' => __( 'Add the URL of video in MPEG4 format. WebM and MP4 format must be included to render your video with cross browser compatibility. OGV is optional.', 'magee-shortcodes' ),
|
4005 |
-
|
4006 |
-
),
|
4007 |
-
'ogv_url' => array(
|
4008 |
-
'std' => '',
|
4009 |
-
'type' => 'link',
|
4010 |
-
'label' => __( 'Ogv Video Url','magee-shortcodes'),
|
4011 |
-
'desc' => __( 'Add the URL of video in OGV format. WebM and MP4 format must be included to render your video with cross browser compatibility. OGV is optional.', 'magee-shortcodes' ),
|
4012 |
-
|
4013 |
-
),
|
4014 |
-
'webm_url' => array(
|
4015 |
-
'std' => '',
|
4016 |
-
'type' => 'link',
|
4017 |
-
'label' => __( 'Webm Video Url','magee-shortcodes'),
|
4018 |
-
'desc' => __( 'Add the URL of video in webm format. WebM and MP4 format must be included to render your video with cross browser compatibility. OGV is optional.', 'magee-shortcodes' ),
|
4019 |
-
|
4020 |
-
),
|
4021 |
-
'poster' => array(
|
4022 |
-
'std' => '',
|
4023 |
-
'type' => 'uploader',
|
4024 |
-
'label' => __( 'Poster','magee-shortcodes'),
|
4025 |
-
'desc' => __( 'Display a image when browser does not support HTML5 format.','magee-shortcodes'),
|
4026 |
-
|
4027 |
-
),
|
4028 |
-
'width' => array(
|
4029 |
-
'std' => '100%',
|
4030 |
-
'type' => 'text',
|
4031 |
-
'label' => __('Width','magee-shortcodes'),
|
4032 |
-
'desc' => __('In pixels (px), eg: 1px.','magee-shortcodes'),
|
4033 |
-
),
|
4034 |
-
'height' => array(
|
4035 |
-
'std' => '100%',
|
4036 |
-
'type' => 'text',
|
4037 |
-
'label' => __('Height','magee-shortcodes'),
|
4038 |
-
'desc' => __('In pixels (px), eg: 1px.','magee-shortcodes'),
|
4039 |
-
),
|
4040 |
-
'mute' => array(
|
4041 |
-
'std' => '',
|
4042 |
-
'type' => 'choose',
|
4043 |
-
'label' => __('Mute Video' ,'magee-shortcodes'),
|
4044 |
-
'desc' => __('Choose to mute the video.','magee-shortcodes'),
|
4045 |
-
'options' => $reverse_choices
|
4046 |
-
),
|
4047 |
-
'autoplay' =>array(
|
4048 |
-
'std' => '',
|
4049 |
-
'type' => 'choose',
|
4050 |
-
'label' => __('Autoplay Video','magee-shortcodes'),
|
4051 |
-
'desc' => __('Choose to autoplay the video.','magee-shortcodes'),
|
4052 |
-
'options' => array(
|
4053 |
-
'yes' => __('Yes','magee-shortcodes'),
|
4054 |
-
'no' => __('No','magee-shortcodes'),
|
4055 |
-
)
|
4056 |
-
),
|
4057 |
-
'loop' =>array(
|
4058 |
-
'std' => '',
|
4059 |
-
'type' => 'choose',
|
4060 |
-
'label' => __('Loop Video','magee-shortcodes'),
|
4061 |
-
'desc' => __('Choose to loop the video.','magee-shortcodes'),
|
4062 |
-
'options' => array(
|
4063 |
-
'yes' => __('Yes','magee-shortcodes'),
|
4064 |
-
'no' => __('No','magee-shortcodes')
|
4065 |
-
)
|
4066 |
-
),
|
4067 |
-
'controls' =>array(
|
4068 |
-
'std' => '',
|
4069 |
-
'type' => 'choose',
|
4070 |
-
'label' => __('Show Controls','magee-shortcodes'),
|
4071 |
-
'desc' => __('Choose to display controls for the video player.','magee-shortcodes'),
|
4072 |
-
'options' => array(
|
4073 |
-
'yes' => __('Yes','magee-shortcodes'),
|
4074 |
-
'no' => __('No','magee-shortcodes')
|
4075 |
-
)
|
4076 |
-
),
|
4077 |
-
'class' =>array(
|
4078 |
-
'std' => '',
|
4079 |
-
'type' => 'text',
|
4080 |
-
'label' => __('CSS Class','magee-shortcodes'),
|
4081 |
-
'desc' => __('Add a class to the wrapping HTML element.','magee-shortcodes')
|
4082 |
-
),
|
4083 |
-
'id' => array(
|
4084 |
-
'std' => '',
|
4085 |
-
'type' => 'text',
|
4086 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
4087 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
4088 |
-
),
|
4089 |
-
),
|
4090 |
-
'shortcode' => '[ms_video mp4_url="{{mp4_url}}" ogv_url="{{ogv_url}}" webm_url="{{webm_url}}" poster="{{poster}}" width="{{width}}" height="{{height}}" mute="{{mute}}" autoplay="{{autoplay}}" loop="{{loop}}" controls="{{controls}}" class="{{class}}" id="{{id}}"][/ms_video]',
|
4091 |
-
'popup_title' => __( 'Video Shortcode', 'magee-shortcodes' ),
|
4092 |
-
'name' => __('video-shortcode/','magee-shortocdes'),
|
4093 |
-
);
|
4094 |
-
|
4095 |
-
|
4096 |
-
/*-----------------------------------------------------------------------------------*/
|
4097 |
-
/* Vimeo Config
|
4098 |
-
/*-----------------------------------------------------------------------------------*/
|
4099 |
-
|
4100 |
-
$magee_shortcodes['vimeo'] = array(
|
4101 |
-
'no_preview' => true,
|
4102 |
-
'icon' => 'fa-vimeo-square',
|
4103 |
-
'params' => array(
|
4104 |
-
'link' => array(
|
4105 |
-
'std' => '',
|
4106 |
-
'type' => 'text',
|
4107 |
-
'label' => __( 'Vimeo URL', 'magee-shortcodes' ),
|
4108 |
-
'desc' => __( 'Add the URL the video will link to, ex: http://example.com.', 'magee-shortcodes' ),
|
4109 |
-
),
|
4110 |
-
'width' => array(
|
4111 |
-
'std' => '100%',
|
4112 |
-
'type' => 'text',
|
4113 |
-
'label' => __('Width','magee-shortcodes'),
|
4114 |
-
'desc' => __('In pixels (px), eg:1px.','magee-shortcodes'),
|
4115 |
-
),
|
4116 |
-
'height' => array(
|
4117 |
-
'std' => '100%',
|
4118 |
-
'type' => 'text',
|
4119 |
-
'label' => __('Height','magee-shortcodes'),
|
4120 |
-
'desc' => __('In pixels (px), eg:1px.','magee-shortcodes'),
|
4121 |
-
),
|
4122 |
-
'mute' => array(
|
4123 |
-
'std' => '',
|
4124 |
-
'type' => 'choose',
|
4125 |
-
'label' => __('Mute Video' ,'magee-shortcodes'),
|
4126 |
-
'desc' => __('Choose to mute the video.','magee-shortcodes'),
|
4127 |
-
'options' => $reverse_choices
|
4128 |
-
),
|
4129 |
-
'autoplay' =>array(
|
4130 |
-
'std' => '',
|
4131 |
-
'type' => 'choose',
|
4132 |
-
'label' => __('Autoplay Video','magee-shortcodes'),
|
4133 |
-
'desc' => __('Choose to autoplay the video.','magee-shortcodes'),
|
4134 |
-
'options' => array(
|
4135 |
-
'yes' => __('Yes','magee-shortcodes'),
|
4136 |
-
'no' => __('No','magee-shortcodes'),
|
4137 |
-
)
|
4138 |
-
),
|
4139 |
-
'loop' =>array(
|
4140 |
-
'std' => '',
|
4141 |
-
'type' => 'choose',
|
4142 |
-
'label' => __('Loop Video','magee-shortcodes'),
|
4143 |
-
'desc' => __('Choose to loop the video.','magee-shortcodes'),
|
4144 |
-
'options' => array(
|
4145 |
-
'yes' => __('Yes','magee-shortcodes'),
|
4146 |
-
'no' => __('No','magee-shortcodes')
|
4147 |
-
)
|
4148 |
-
),
|
4149 |
-
'controls' =>array(
|
4150 |
-
'std' => '',
|
4151 |
-
'type' => 'choose',
|
4152 |
-
'label' => __('Show Controls','magee-shortcodes'),
|
4153 |
-
'desc' => __('Choose to display controls for the video player.','magee-shortcodes'),
|
4154 |
-
'options' => array(
|
4155 |
-
'yes' => __('Yes','magee-shortcodes'),
|
4156 |
-
'no' => __('No','magee-shortcodes')
|
4157 |
-
)
|
4158 |
-
),
|
4159 |
-
'class' =>array(
|
4160 |
-
'std' => '',
|
4161 |
-
'type' => 'text',
|
4162 |
-
'label' => __('CSS Class','magee-shortcodes'),
|
4163 |
-
'desc' => __('Add a class to the wrapping HTML element.','magee-shortcodes')
|
4164 |
-
),
|
4165 |
-
'id' => array(
|
4166 |
-
'std' => '',
|
4167 |
-
'type' => 'text',
|
4168 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
4169 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
4170 |
-
),
|
4171 |
-
),
|
4172 |
-
'shortcode' => '[ms_vimeo link="{{link}}" width="{{width}}" height="{{height}}" mute="{{mute}}" autoplay="{{autoplay}}" loop="{{loop}}" controls="{{controls}}" class="{{class}}" id="{{id}}"][/ms_vimeo]',
|
4173 |
-
'popup_title' => __( 'Vimeo Shortcode', 'magee-shortcodes' ),
|
4174 |
-
'name' => __('vimeo-shortcode/','magee-shortocdes'),
|
4175 |
-
);
|
4176 |
-
/*-----------------------------------------------------------------------------------*/
|
4177 |
-
/* Youtube Config
|
4178 |
-
/*-----------------------------------------------------------------------------------*/
|
4179 |
-
|
4180 |
-
$magee_shortcodes['youtube'] = array(
|
4181 |
-
'no_preview' => true,
|
4182 |
-
'icon' => 'fa-youtube-square',
|
4183 |
-
'params' => array(
|
4184 |
-
|
4185 |
-
'link' => array(
|
4186 |
-
'std' => '',
|
4187 |
-
'type' => 'text',
|
4188 |
-
'label' => __( 'Youtube URL', 'magee-shortcodes' ),
|
4189 |
-
'desc' => __( 'Add the URL the video will link to, ex: http://example.com.', 'magee-shortcodes' ),
|
4190 |
-
),
|
4191 |
-
'width' => array(
|
4192 |
-
'std' => '100%',
|
4193 |
-
'type' => 'text',
|
4194 |
-
'label' => __('Width','magee-shortcodes'),
|
4195 |
-
'desc' => __('In pixels (px), eg:1px.','magee-shortcodes'),
|
4196 |
-
),
|
4197 |
-
'height' => array(
|
4198 |
-
'std' => '100%',
|
4199 |
-
'type' => 'text',
|
4200 |
-
'label' => __('Height','magee-shortcodes'),
|
4201 |
-
'desc' => __('In pixels (px), eg:1px.','magee-shortcodes'),
|
4202 |
-
),
|
4203 |
-
'mute' => array(
|
4204 |
-
'std' => '',
|
4205 |
-
'type' => 'choose',
|
4206 |
-
'label' => __('Mute Video' ,'magee-shortcodes'),
|
4207 |
-
'desc' => __('Choose to mute the video.','magee-shortcodes'),
|
4208 |
-
'options' => $reverse_choices
|
4209 |
-
),
|
4210 |
-
'autoplay' =>array(
|
4211 |
-
'std' => '',
|
4212 |
-
'type' => 'choose',
|
4213 |
-
'label' => __('Autoplay Video','magee-shortcodes'),
|
4214 |
-
'desc' => __('Choose to autoplay the video.','magee-shortcodes'),
|
4215 |
-
'options' => array(
|
4216 |
-
'yes' => __('Yes','magee-shortcodes'),
|
4217 |
-
'no' => __('No','magee-shortcodes'),
|
4218 |
-
)
|
4219 |
-
),
|
4220 |
-
'loop' =>array(
|
4221 |
-
'std' => '',
|
4222 |
-
'type' => 'choose',
|
4223 |
-
'label' => __('Loop Video','magee-shortcodes'),
|
4224 |
-
'desc' => __('Choose to loop the video.','magee-shortcodes'),
|
4225 |
-
'options' => array(
|
4226 |
-
'yes' => __('Yes','magee-shortcodes'),
|
4227 |
-
'no' => __('No','magee-shortcodes')
|
4228 |
-
)
|
4229 |
-
),
|
4230 |
-
'controls' =>array(
|
4231 |
-
'std' => '',
|
4232 |
-
'type' => 'choose',
|
4233 |
-
'label' => __('Show Controls','magee-shortcodes'),
|
4234 |
-
'desc' => __('Choose to display controls for the video player.','magee-shortcodes'),
|
4235 |
-
'options' => array(
|
4236 |
-
'yes' => __('Yes','magee-shortcodes'),
|
4237 |
-
'no' => __('No','magee-shortcodes')
|
4238 |
-
)
|
4239 |
-
),
|
4240 |
-
'class' =>array(
|
4241 |
-
'std' => '',
|
4242 |
-
'type' => 'text',
|
4243 |
-
'label' => __('CSS Class','magee-shortcodes'),
|
4244 |
-
'desc' => __('Add a class to the wrapping HTML element.','magee-shortcodes')
|
4245 |
-
),
|
4246 |
-
'id' => array(
|
4247 |
-
'std' => '',
|
4248 |
-
'type' => 'text',
|
4249 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
4250 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
4251 |
-
),
|
4252 |
-
),
|
4253 |
-
'shortcode' => '[ms_youtube link="{{link}}" width="{{width}}" height="{{height}}" mute="{{mute}}" autoplay="{{autoplay}}" loop="{{loop}}" controls="{{controls}}" class="{{class}}" id="{{id}}"][/ms_youtube]',
|
4254 |
-
'popup_title' => __( 'Youtube Shortcode', 'magee-shortcodes' ),
|
4255 |
-
'name' => __('youtube-shortcode/','magee-shortocdes'),
|
4256 |
-
);
|
4257 |
-
|
4258 |
-
/*-----------------------------------------------------------------------------------*/
|
4259 |
-
/* Weather Config
|
4260 |
-
/*-----------------------------------------------------------------------------------*/
|
4261 |
-
|
4262 |
-
$magee_shortcodes['weather'] = array(
|
4263 |
-
'no_preview' => true,
|
4264 |
-
'icon' => 'fa-skyatlas',
|
4265 |
-
'params' => array(
|
4266 |
-
'api_key' => array(
|
4267 |
-
'std' => '0af9d367c2b965bb80281fab5fdaa44a',
|
4268 |
-
'type' => 'text',
|
4269 |
-
'label' => __('API Key','magee-shortcodes'),
|
4270 |
-
'desc' => __('As of October 2015, OpenWeatherMap requires an APP ID key to access their weather data. <a href="http://openweathermap.org/appid" target="_blank">Get your APPID</a>','magee-shortcodes'),
|
4271 |
-
),
|
4272 |
-
'location' => array(
|
4273 |
-
'std' => '',
|
4274 |
-
'type' => 'text',
|
4275 |
-
'label' => __('Location','magee-shortcodes'),
|
4276 |
-
'desc' => __('Set city name or ID which will show weather.eg: London or 2643743','magee-shortcodes'),
|
4277 |
-
),
|
4278 |
-
'units' => array(
|
4279 |
-
'std' => '',
|
4280 |
-
'type' => 'select',
|
4281 |
-
'label' => __('Temperature Units','magee-shortcodes'),
|
4282 |
-
'desc' => __( 'Metric: Celsius, Imperial: Fahrenheit.', 'magee-shortcodes'),
|
4283 |
-
'options' => array(
|
4284 |
-
'metric' => __( 'Metric','magee-shortcodes'),
|
4285 |
-
'imperial' => __( 'Imperial','magee-shortcodes')
|
4286 |
-
)
|
4287 |
-
),
|
4288 |
-
'weather_detail' => array(
|
4289 |
-
'std' => '',
|
4290 |
-
'type' => 'choose',
|
4291 |
-
'label' => __('Disable Weather Detail','magee-shortcodes'),
|
4292 |
-
'desc' => __( 'Choose to show current weather detail.', 'magee-shortcodes'),
|
4293 |
-
'options' => $choices
|
4294 |
-
),
|
4295 |
-
'forecast' => array(
|
4296 |
-
'std' => '',
|
4297 |
-
'type' => 'choose',
|
4298 |
-
'label' => __('Forecast','magee-shortcodes'),
|
4299 |
-
'desc' => __( 'Choose to show forecast weather.', 'magee-shortcodes'),
|
4300 |
-
'options' => $choices
|
4301 |
-
),
|
4302 |
-
'forecast_cnt' => array(
|
4303 |
-
'std' => '4',
|
4304 |
-
'type' => 'number',
|
4305 |
-
'max' => '16',
|
4306 |
-
'min' => '1',
|
4307 |
-
'label' => __('Forecast Cnt','magee-shortcodes'),
|
4308 |
-
'desc' => __( 'Choose number of days for forecast weather.', 'magee-shortcodes'),
|
4309 |
-
),
|
4310 |
-
'background_color' => array(
|
4311 |
-
'std' => '',
|
4312 |
-
'type' => 'colorpicker',
|
4313 |
-
'label' => __('Background Color','magee-shortcodes'),
|
4314 |
-
'desc' => __( 'Set background color for weather', 'magee-shortcodes'),
|
4315 |
-
),
|
4316 |
-
'background_img' => array(
|
4317 |
-
'std' => '',
|
4318 |
-
'type' => 'uploader',
|
4319 |
-
'label' => __('Background Image','magee-shortcodes'),
|
4320 |
-
'desc' => __( 'Set background image for weather', 'magee-shortcodes'),
|
4321 |
-
),
|
4322 |
-
'width' => array(
|
4323 |
-
'std' => '300',
|
4324 |
-
'type' => 'number',
|
4325 |
-
'max' => '500',
|
4326 |
-
'min' => '0',
|
4327 |
-
'label' => __('Weather Width','magee-shortcodes'),
|
4328 |
-
),
|
4329 |
-
'height' => array(
|
4330 |
-
'std' => '',
|
4331 |
-
'type' => 'number',
|
4332 |
-
'max' => '500',
|
4333 |
-
'min' => '0',
|
4334 |
-
'label' => __('Weather Height','magee-shortcodes'),
|
4335 |
-
),
|
4336 |
-
'class' =>array(
|
4337 |
-
'std' => '',
|
4338 |
-
'type' => 'text',
|
4339 |
-
'label' => __('CSS Class','magee-shortcodes'),
|
4340 |
-
'desc' => __('Add a class to the wrapping HTML element.','magee-shortcodes')
|
4341 |
-
),
|
4342 |
-
'id' => array(
|
4343 |
-
'std' => '',
|
4344 |
-
'type' => 'text',
|
4345 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
4346 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
4347 |
-
),
|
4348 |
-
),
|
4349 |
-
'shortcode' => '[ms_weather api_key="{{api_key}}" location="{{location}}" units="{{units}}" background_color="{{background_color}}" background_img="{{background_img}}" weather_detail="{{weather_detail}}" forecast="{{forecast}}" forecast_cnt="{{forecast_cnt}}" width="{{width}}" height="{{height}}" class="{{class}}" id="{{id}}"]',
|
4350 |
-
'popup_title' => __( 'Weather Shortcode', 'magee-shortcodes' ),
|
4351 |
-
|
4352 |
-
);
|
4353 |
-
|
4354 |
-
/*-----------------------------------------------------------------------------------*/
|
4355 |
-
/* Widget Area
|
4356 |
-
/*-----------------------------------------------------------------------------------*/
|
4357 |
-
|
4358 |
-
$magee_shortcodes['widget_area'] = array(
|
4359 |
-
'no_preview' => true,
|
4360 |
-
'icon' => 'fa-cog',
|
4361 |
-
'params' => array(
|
4362 |
-
'name' => array(
|
4363 |
-
'std' => '',
|
4364 |
-
'type' => 'select',
|
4365 |
-
'label' => __('Name','magee-shortcodes'),
|
4366 |
-
'desc' => __('Choose widget name to show','magee-shortcodes'),
|
4367 |
-
'options' => $magee_widget,
|
4368 |
-
),
|
4369 |
-
'background_color' => array(
|
4370 |
-
'std' => '',
|
4371 |
-
'type' => 'colorpicker',
|
4372 |
-
'label' => __('Background Color','magee-shortcodes'),
|
4373 |
-
'desc' => __('Set background color for widget area','magee-shortcodes'),
|
4374 |
-
),
|
4375 |
-
'padding' => array(
|
4376 |
-
'std' => '0',
|
4377 |
-
'max' => '200',
|
4378 |
-
'min' => '0',
|
4379 |
-
'type' => 'number',
|
4380 |
-
'label' => __('Padding','magee-shortcodes'),
|
4381 |
-
'desc' => __( 'Content Padding. eg:30', 'magee-shortcodes')
|
4382 |
-
),
|
4383 |
-
'class' =>array(
|
4384 |
-
'std' => '',
|
4385 |
-
'type' => 'text',
|
4386 |
-
'label' => __('CSS Class','magee-shortcodes'),
|
4387 |
-
'desc' => __('Add a class to the wrapping HTML element.','magee-shortcodes')
|
4388 |
-
),
|
4389 |
-
'id' => array(
|
4390 |
-
'std' => '',
|
4391 |
-
'type' => 'text',
|
4392 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
4393 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
4394 |
-
),
|
4395 |
-
),
|
4396 |
-
'shortcode' => '[ms_widget_area name="{{name}}" background_color="{{background_color}}" padding="{{padding}}" class="{{class}}" id="{{id}}"][/ms_widget_area]',
|
4397 |
-
'popup_title' => __( 'Widget Area Shortcode', 'magee-shortcodes' ),
|
4398 |
-
|
4399 |
-
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/popup.php
DELETED
@@ -1,42 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
global $magee_shortcodes;
|
3 |
-
|
4 |
-
?>
|
5 |
-
<div class="white-popup magee_shortcodes_container" id="magee_shortcodes_container">
|
6 |
-
<form>
|
7 |
-
|
8 |
-
<div class="magee_shortcodes_container">
|
9 |
-
<ul class="magee_shortcodes_list">
|
10 |
-
<?php if(is_array($magee_shortcodes )):foreach($magee_shortcodes as $key => $val){
|
11 |
-
if( is_array( $val ) && isset($val['popup_title']) && $val['popup_title']!='' ):
|
12 |
-
?>
|
13 |
-
<li class="col-md-2">
|
14 |
-
<a class='magee_shortcode_item <?php //echo $key;?>' title='<?php echo $val['popup_title'];?>' data-shortcode="<?php echo $key;?>" href="javascript:;"> <?php if( isset($val['icon']) ){?><i class="fa <?php echo $val['icon'];?>"></i> <?php }?> <?php echo str_replace(' Shortcode','',$val['popup_title']);?></a> </li>
|
15 |
-
<?php endif;?>
|
16 |
-
<?php } ?>
|
17 |
-
<?php endif;?>
|
18 |
-
</ul>
|
19 |
-
<div class="clear"></div>
|
20 |
-
</div>
|
21 |
-
|
22 |
-
<div id="magee-shortcodes-settings">
|
23 |
-
|
24 |
-
<div id="magee-shortcodes-settings-inner"></div>
|
25 |
-
<input name="magee-shortcode" type="hidden" id="magee-shortcode" value="" />
|
26 |
-
<input name="magee-shortcode-textarea" type="hidden" id="magee-shortcode-textarea" value="" />
|
27 |
-
<div id="preview" style="display:none">
|
28 |
-
<div class="label preview-title">
|
29 |
-
<span class="magee-form-label-title">Preview</span>
|
30 |
-
<span class="magee-form-desc">Due to some external reasons, the preview is not shown exactly the same as reality.</span>
|
31 |
-
<span class="magee-preview-delete tb-close-icon"></span>
|
32 |
-
</div>
|
33 |
-
|
34 |
-
</div>
|
35 |
-
|
36 |
-
|
37 |
-
<div class="clear"></div>
|
38 |
-
</div>
|
39 |
-
</form>
|
40 |
-
<div class="clear"></div>
|
41 |
-
<div class="magee-shortcodes-settings-inner-clone hidden"></div>
|
42 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/qrcode-image.php
DELETED
@@ -1,37 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
$size = $_GET["size"];
|
4 |
-
$content = $_GET["content"];
|
5 |
-
$fgcolor = htmlspecialchars($_GET["fgcolor"]);
|
6 |
-
$bgcolor = htmlspecialchars($_GET["bgcolor"]);
|
7 |
-
|
8 |
-
$qr_image = 'https://chart.googleapis.com/chart?cht=qr&chs=' . $size . 'x' . $size . '&chl=' . $content . '&choe=UTF-8';
|
9 |
-
|
10 |
-
$im = imagecreatefrompng($qr_image);
|
11 |
-
|
12 |
-
$fgcolors = covertHexToRGB($fgcolor);
|
13 |
-
$bgcolors = covertHexToRGB($bgcolor);
|
14 |
-
|
15 |
-
$im = changeForeground($im, $fgcolors[0], $fgcolors[1], $fgcolors[2]);
|
16 |
-
$im = changeBackground($im, $bgcolors[0], $bgcolors[1], $bgcolors[2]);
|
17 |
-
|
18 |
-
header("Content-Type: image/png");
|
19 |
-
imagepng($im);
|
20 |
-
imagedestroy($im);
|
21 |
-
|
22 |
-
function changeForeground($im, $red, $green, $blue) {
|
23 |
-
imagefilter($im, IMG_FILTER_COLORIZE, $red, $green, $blue);
|
24 |
-
return $im;
|
25 |
-
}
|
26 |
-
|
27 |
-
function changeBackground($im, $red, $green, $blue) {
|
28 |
-
imagetruecolortopalette($im, false, 255);
|
29 |
-
$ig = imagecolorat($im, 0, 0);
|
30 |
-
imagecolorset($im, $ig, $red, $green, $blue);
|
31 |
-
return $im;
|
32 |
-
}
|
33 |
-
|
34 |
-
function covertHexToRGB($hex){
|
35 |
-
$colors = sscanf($hex, "%02x%02x%02x");
|
36 |
-
return $colors;
|
37 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -3,12 +3,14 @@ Contributors: hoosoft
|
|
3 |
Tags: shortcodes, shortcode, accordion, alert, button, column, custom box, countdowns, counter, divider, dropcap, feature box, flip box, highlight, list, modal, popover, tooltip, person, promo box, scocial, tab, testimonial, progress, piechart, timeline, panel, section, slider
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.7
|
6 |
-
Stable tag: 2.0
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
10 |
== Description ==
|
11 |
|
|
|
|
|
12 |
Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. It is based on Bootstrap and coded with HTML5 and CSS3 language, fully responsive in desktops and mobile devices With enriched settings in options, you could easily create column, section, feature box, person, testimonial and much more.You can also customize post & page layouts using shortcode generator with one simple click, see how your inserted shortcode effects before it goes live with shortcode preview function. Still, more shortcodes coming soon.
|
13 |
|
14 |
|
@@ -65,6 +67,13 @@ Activate plugin at "Plugins" administration page.
|
|
65 |
|
66 |
== Changelog ==
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
= 2.0.0 =
|
69 |
* Fix: Accordion shortcode issue
|
70 |
* Fix: Animation shortcode issue
|
3 |
Tags: shortcodes, shortcode, accordion, alert, button, column, custom box, countdowns, counter, divider, dropcap, feature box, flip box, highlight, list, modal, popover, tooltip, person, promo box, scocial, tab, testimonial, progress, piechart, timeline, panel, section, slider
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.7
|
6 |
+
Stable tag: 2.0.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
+
### Overview
|
13 |
+
|
14 |
Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. It is based on Bootstrap and coded with HTML5 and CSS3 language, fully responsive in desktops and mobile devices With enriched settings in options, you could easily create column, section, feature box, person, testimonial and much more.You can also customize post & page layouts using shortcode generator with one simple click, see how your inserted shortcode effects before it goes live with shortcode preview function. Still, more shortcodes coming soon.
|
15 |
|
16 |
|
67 |
|
68 |
== Changelog ==
|
69 |
|
70 |
+
* Tweak: update Countdowns shortcode
|
71 |
+
* Tweak: update Custom Box Shortcode
|
72 |
+
* Fix: Divider shortcode color issue
|
73 |
+
|
74 |
+
= 2.0.1 =
|
75 |
+
* Tweak: Add 'Open Multiple' option to Accordion shortcode
|
76 |
+
|
77 |
= 2.0.0 =
|
78 |
* Fix: Accordion shortcode issue
|
79 |
* Fix: Animation shortcode issue
|
shortcodes/class-accordion.php
CHANGED
@@ -37,7 +37,8 @@ class Magee_Accordion {
|
|
37 |
'icon' => '',
|
38 |
'background_color' => '',
|
39 |
'color' => '',
|
40 |
-
'is_preview' => ''
|
|
|
41 |
), $args
|
42 |
);
|
43 |
|
@@ -67,7 +68,7 @@ class Magee_Accordion {
|
|
67 |
|
68 |
$class .= ' style'.$type.' magee-shortcode panel-group magee-accordion accordion-'.$style;
|
69 |
|
70 |
-
$html = '<div class="'.esc_attr($class).'" role="tablist" aria-multiselectable="
|
71 |
|
72 |
if (class_exists('\Elementor\Plugin') && \Elementor\Plugin::instance()->editor->is_edit_mode() ){
|
73 |
$is_preview = "1";
|
37 |
'icon' => '',
|
38 |
'background_color' => '',
|
39 |
'color' => '',
|
40 |
+
'is_preview' => '',
|
41 |
+
'open_multiple' => 'no'
|
42 |
), $args
|
43 |
);
|
44 |
|
68 |
|
69 |
$class .= ' style'.$type.' magee-shortcode panel-group magee-accordion accordion-'.$style;
|
70 |
|
71 |
+
$html = '<div class="'.esc_attr($class).'" role="tablist" aria-multiselectable="'.esc_attr($open_multiple).'" id="'.esc_attr($this->id).'">'.do_shortcode( Helper::fix_shortcodes($content)).'</div>';
|
72 |
|
73 |
if (class_exists('\Elementor\Plugin') && \Elementor\Plugin::instance()->editor->is_edit_mode() ){
|
74 |
$is_preview = "1";
|
shortcodes/class-countdowns.php
CHANGED
@@ -36,7 +36,7 @@ class Magee_Countdowns {
|
|
36 |
'fontcolor' => '',
|
37 |
'backgroundcolor' => '',
|
38 |
'endtime' => date('Y-m-d H:i:s',strtotime(' 1 month')),
|
39 |
-
'nowtime' =>
|
40 |
'type' => 'normal',
|
41 |
'day_field_text' => __('Days','magee-shortcodes' ),
|
42 |
'hours_field_text' => __('Hours','magee-shortcodes' ),
|
@@ -61,7 +61,7 @@ class Magee_Countdowns {
|
|
61 |
$boxed = '';
|
62 |
$html = '';
|
63 |
$this->is_preview = $is_preview;
|
64 |
-
|
65 |
switch($type){
|
66 |
|
67 |
case 'normal':
|
@@ -120,40 +120,20 @@ class Magee_Countdowns {
|
|
120 |
|
121 |
$script .= '
|
122 |
jQuery(function($) {
|
123 |
-
|
124 |
-
$("#
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
);
|
138 |
-
});
|
139 |
-
});
|
140 |
-
}else{
|
141 |
-
$("#'.$countdownsID.'").countdown("'.$endtime.'", function(event) {
|
142 |
-
$("#'.$countdownsID.' .days .counter-num").text(
|
143 |
-
event.strftime("%D")
|
144 |
-
);
|
145 |
-
$("#'.$countdownsID.' .hours .counter-num").text(
|
146 |
-
event.strftime("%H")
|
147 |
-
);
|
148 |
-
$("#'.$countdownsID.' .minutes .counter-num").text(
|
149 |
-
event.strftime("%M")
|
150 |
-
);
|
151 |
-
$("#'.$countdownsID.' .seconds .counter-num").text(
|
152 |
-
event.strftime("%S")
|
153 |
-
);
|
154 |
-
|
155 |
-
});
|
156 |
-
}
|
157 |
})';
|
158 |
|
159 |
break;
|
36 |
'fontcolor' => '',
|
37 |
'backgroundcolor' => '',
|
38 |
'endtime' => date('Y-m-d H:i:s',strtotime(' 1 month')),
|
39 |
+
'nowtime' => time(),
|
40 |
'type' => 'normal',
|
41 |
'day_field_text' => __('Days','magee-shortcodes' ),
|
42 |
'hours_field_text' => __('Hours','magee-shortcodes' ),
|
61 |
$boxed = '';
|
62 |
$html = '';
|
63 |
$this->is_preview = $is_preview;
|
64 |
+
$nowtime = strlen($nowtime) == 10 ? $nowtime : strtotime($nowtime);
|
65 |
switch($type){
|
66 |
|
67 |
case 'normal':
|
120 |
|
121 |
$script .= '
|
122 |
jQuery(function($) {
|
123 |
+
$("#'.$countdownsID.'").countdown("'.$endtime.'", function(event) {
|
124 |
+
$("#'.$countdownsID.' .days .counter-num").text(
|
125 |
+
event.strftime("%D")
|
126 |
+
);
|
127 |
+
$("#'.$countdownsID.' .hours .counter-num").text(
|
128 |
+
event.strftime("%H")
|
129 |
+
);
|
130 |
+
$("#'.$countdownsID.' .minutes .counter-num").text(
|
131 |
+
event.strftime("%M")
|
132 |
+
);
|
133 |
+
$("#'.$countdownsID.' .seconds .counter-num").text(
|
134 |
+
event.strftime("%S")
|
135 |
+
);
|
136 |
+
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
})';
|
138 |
|
139 |
break;
|
shortcodes/class-custom-box.php
CHANGED
@@ -33,6 +33,8 @@ class Magee_Custom_Box {
|
|
33 |
'background_position' =>'',
|
34 |
'padding' =>'',
|
35 |
'backgroundimage' =>'',
|
|
|
|
|
36 |
'is_preview' => ''
|
37 |
), $args
|
38 |
);
|
@@ -46,7 +48,11 @@ class Magee_Custom_Box {
|
|
46 |
$class .= ' '.$uniqid;
|
47 |
|
48 |
if ($backgroundimage)
|
49 |
-
$css_style
|
|
|
|
|
|
|
|
|
50 |
|
51 |
$html = sprintf('<div class="%1$s" id="%2$s">%3$s </div>', $class, $id, do_shortcode( Helper::fix_shortcodes($content)));
|
52 |
|
33 |
'background_position' =>'',
|
34 |
'padding' =>'',
|
35 |
'backgroundimage' =>'',
|
36 |
+
'font_size' =>'',
|
37 |
+
'font_color' =>'',
|
38 |
'is_preview' => ''
|
39 |
), $args
|
40 |
);
|
48 |
$class .= ' '.$uniqid;
|
49 |
|
50 |
if ($backgroundimage)
|
51 |
+
$css_style .= sprintf(' .'.$uniqid.' {padding: %1$s; background-image: url(%2$s);background-attachment: %3$s;background-position: %4$s;} ', $padding, $backgroundimage, $fixed_background, $background_position);
|
52 |
+
if ($font_size)
|
53 |
+
$css_style .= sprintf(' .'.$uniqid.' {font-size:%spx;} ', $font_size);
|
54 |
+
if ($font_color)
|
55 |
+
$css_style .= sprintf(' .'.$uniqid.' {color:%s;} ', $font_color);
|
56 |
|
57 |
$html = sprintf('<div class="%1$s" id="%2$s">%3$s </div>', $class, $id, do_shortcode( Helper::fix_shortcodes($content)));
|
58 |
|
shortcodes/class-divider.php
CHANGED
@@ -36,7 +36,7 @@ class Magee_Divider {
|
|
36 |
'margin_top' =>'',
|
37 |
'margin_bottom' =>'',
|
38 |
'border_size' =>'',
|
39 |
-
'border_color' =>'',
|
40 |
'icon' =>'fa-leaf',
|
41 |
'is_preview' => ''
|
42 |
), $args
|
@@ -95,9 +95,25 @@ class Magee_Divider {
|
|
95 |
|
96 |
if( $align == 'center' )
|
97 |
$class .= ' center';
|
|
|
|
|
98 |
|
99 |
-
$css_style = sprintf('.'.$uniq_class.'{ margin-top: %1$s;margin-bottom:%2$s;width:%3$s;}.'.$uniq_class.' .divider-border,.'.$uniq_class.'
|
100 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
$html = '<div class="'.esc_attr($class).'" id="'.esc_attr($id).'"><div class="divider-inner divider-border"></div></div>';
|
102 |
if( $style == 'icon' ):
|
103 |
$html = '<div class="'.esc_attr($class).'" id="'.esc_attr($id).'">
|
36 |
'margin_top' =>'',
|
37 |
'margin_bottom' =>'',
|
38 |
'border_size' =>'',
|
39 |
+
'border_color' =>'#f2f2f2',
|
40 |
'icon' =>'fa-leaf',
|
41 |
'is_preview' => ''
|
42 |
), $args
|
95 |
|
96 |
if( $align == 'center' )
|
97 |
$class .= ' center';
|
98 |
+
|
99 |
+
$rgb = Helper::hex2rgb( $border_color );
|
100 |
|
101 |
+
$css_style = sprintf('.'.$uniq_class.'{ margin-top: %1$s;margin-bottom:%2$s;width:%3$s;}.'.$uniq_class.' .divider-border,.'.$uniq_class.' .divider-border .divider-inner{border-bottom-width:%4$s; border-color:%5$s;}.'.$uniq_class.' i{color:%5$s;}.'.$uniq_class.' .double-line.divider-inner-item .divider-inner{border-top-width: %6$s; border-bottom-width: %7$s;}.'.$uniq_class.' .divider-border.divider-inner-item .divider-inner{ border-bottom-width: %8$s;}', $margin_top, $margin_bottom, $width, $border_size, $border_color, $border_size, $border_size, $border_size);
|
102 |
+
|
103 |
+
$css_style .= '.divider-shadow .divider-inner {
|
104 |
+
position: relative;
|
105 |
+
background: radial-gradient(ellipse at 50% -50% , rgba('.$rgb[0].', '.$rgb[1].', '.$rgb[2].', 0.1) 0px, rgba(255, 255, 255, 0) 80%) repeat scroll 0 0 rgba('.$rgb[0].', '.$rgb[1].', '.$rgb[2].', 0);
|
106 |
+
background: -webkit-radial-gradient(ellipse at 50% -50% , rgba('.$rgb[0].', '.$rgb[1].', '.$rgb[2].', 0.1) 0px, rgba(255, 255, 255, 0) 80%) repeat scroll 0 0 rgba('.$rgb[0].', '.$rgb[1].', '.$rgb[2].', 0);
|
107 |
+
background: -moz-radial-gradient(ellipse at 50% -50% , rgba('.$rgb[0].', '.$rgb[1].', '.$rgb[2].', 0.1) 0px, rgba(255, 255, 255, 0) 80%) repeat scroll 0 0 rgba('.$rgb[0].', '.$rgb[1].', '.$rgb[2].', 0);
|
108 |
+
background: -o-radial-gradient(ellipse at 50% -50% , rgba('.$rgb[0].', '.$rgb[1].', '.$rgb[2].', 0.1) 0px, rgba(255, 255, 255, 0) 80%) repeat scroll 0 0 rgba('.$rgb[0].', '.$rgb[1].', '.$rgb[2].', 0);
|
109 |
+
}
|
110 |
+
.divider-shadow .divider-inner:after {
|
111 |
+
background: -webkit-radial-gradient(ellipse at 50% -50%, rgba('.$rgb[0].', '.$rgb[1].', '.$rgb[2].', 0.3) 0px, rgba(255, 255, 255, 0) 65%);
|
112 |
+
background: -moz-radial-gradient(ellipse at 50% -50%, rgba('.$rgb[0].', '.$rgb[1].', '.$rgb[2].', 0.3) 0px, rgba(255, 255, 255, 0) 80%);
|
113 |
+
background: -o-radial-gradient(ellipse at 50% -50%, rgba('.$rgb[0].', '.$rgb[1].', '.$rgb[2].', 0.3) 0px, rgba(255, 255, 255, 0) 80%);
|
114 |
+
background: radial-gradient(ellipse at 50% -50%, rgba('.$rgb[0].', '.$rgb[1].', '.$rgb[2].', 0.3) 0px, rgba(255, 255, 255, 0) 65%);
|
115 |
+
}';
|
116 |
+
|
117 |
$html = '<div class="'.esc_attr($class).'" id="'.esc_attr($id).'"><div class="divider-inner divider-border"></div></div>';
|
118 |
if( $style == 'icon' ):
|
119 |
$html = '<div class="'.esc_attr($class).'" id="'.esc_attr($id).'">
|