Version Description
- 25/05/2017 =
- Fix - CSS conflict with width used in
.socicon:empty
. - Tweak - Introduced
si_get_default_sortable_socicons()
. - Feature - Support padding options to gain user defined icon.
Download this release
Release Info
Developer | ThemeGrill |
Plugin | Social Icons |
Version | 1.6.0 |
Comparing to | |
See all releases |
Code changes from version 1.5.0 to 1.6.0
- assets/css/_socicon.scss +135 -0
- assets/css/_variables.scss +15 -0
- assets/css/admin.css +1 -1
- assets/css/social-icons.css +1 -1
- assets/css/social-icons.scss +2 -1
- assets/css/widgets.css +1 -1
- assets/fonts/socicon.eot +0 -0
- assets/fonts/socicon.svg +22 -7
- assets/fonts/socicon.ttf +0 -0
- assets/fonts/socicon.woff +0 -0
- includes/admin/meta-boxes/class-si-meta-box-group-data.php +16 -10
- includes/class-si-autoloader.php +1 -1
- includes/class-si-post-types.php +5 -0
- includes/class-si-shortcodes.php +4 -2
- includes/functions-si-core.php +19 -1
- includes/widgets/class-si-widget-social-icons.php +23 -14
- license.txt +708 -0
- readme.txt +10 -5
- social-icons.php +2 -2
assets/css/_socicon.scss
CHANGED
@@ -1439,3 +1439,138 @@
|
|
1439 |
content: '\e098';
|
1440 |
}
|
1441 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1439 |
content: '\e098';
|
1440 |
}
|
1441 |
}
|
1442 |
+
|
1443 |
+
.socicon-wechat {
|
1444 |
+
color: $icon-wechat;
|
1445 |
+
background-color: $icon-wechat;
|
1446 |
+
|
1447 |
+
&::before {
|
1448 |
+
content: '\e099';
|
1449 |
+
}
|
1450 |
+
}
|
1451 |
+
|
1452 |
+
.socicon-strava {
|
1453 |
+
color: $icon-strava;
|
1454 |
+
background-color: $icon-strava;
|
1455 |
+
|
1456 |
+
&::before {
|
1457 |
+
content: '\e09a';
|
1458 |
+
}
|
1459 |
+
}
|
1460 |
+
|
1461 |
+
.socicon-line {
|
1462 |
+
color: $icon-line;
|
1463 |
+
background-color: $icon-line;
|
1464 |
+
|
1465 |
+
&::before {
|
1466 |
+
content: '\e09b';
|
1467 |
+
}
|
1468 |
+
}
|
1469 |
+
|
1470 |
+
.socicon-lyft {
|
1471 |
+
color: $icon-lyft;
|
1472 |
+
background-color: $icon-lyft;
|
1473 |
+
|
1474 |
+
&::before {
|
1475 |
+
content: '\e09c';
|
1476 |
+
}
|
1477 |
+
}
|
1478 |
+
|
1479 |
+
.socicon-uber {
|
1480 |
+
color: $icon-uber;
|
1481 |
+
background-color: $icon-uber;
|
1482 |
+
|
1483 |
+
&::before {
|
1484 |
+
content: '\e09d';
|
1485 |
+
}
|
1486 |
+
}
|
1487 |
+
|
1488 |
+
.socicon-songkick {
|
1489 |
+
color: $icon-songkick;
|
1490 |
+
background-color: $icon-songkick;
|
1491 |
+
|
1492 |
+
&::before {
|
1493 |
+
content: '\e09e';
|
1494 |
+
}
|
1495 |
+
}
|
1496 |
+
|
1497 |
+
.socicon-viewbug {
|
1498 |
+
color: $icon-viewbug;
|
1499 |
+
background-color: $icon-viewbug;
|
1500 |
+
|
1501 |
+
&::before {
|
1502 |
+
content: '\e09f';
|
1503 |
+
}
|
1504 |
+
}
|
1505 |
+
|
1506 |
+
.socicon-googlegroups {
|
1507 |
+
color: $icon-googlegroups;
|
1508 |
+
background-color: $icon-googlegroups;
|
1509 |
+
|
1510 |
+
&::before {
|
1511 |
+
content: '\e0a0';
|
1512 |
+
}
|
1513 |
+
}
|
1514 |
+
|
1515 |
+
.socicon-blizzard {
|
1516 |
+
color: $icon-blizzard;
|
1517 |
+
background-color: $icon-blizzard;
|
1518 |
+
|
1519 |
+
&::before {
|
1520 |
+
content: '\e0a1';
|
1521 |
+
}
|
1522 |
+
}
|
1523 |
+
|
1524 |
+
.socicon-beam {
|
1525 |
+
color: $icon-beam;
|
1526 |
+
background-color: $icon-beam;
|
1527 |
+
|
1528 |
+
&::before {
|
1529 |
+
content: '\e0a2';
|
1530 |
+
}
|
1531 |
+
}
|
1532 |
+
|
1533 |
+
.socicon-curse {
|
1534 |
+
color: $icon-curse;
|
1535 |
+
background-color: $icon-curse;
|
1536 |
+
|
1537 |
+
&::before {
|
1538 |
+
content: '\e0a3';
|
1539 |
+
}
|
1540 |
+
}
|
1541 |
+
|
1542 |
+
.socicon-player {
|
1543 |
+
color: $icon-player;
|
1544 |
+
background-color: $icon-player;
|
1545 |
+
|
1546 |
+
&::before {
|
1547 |
+
content: '\e0a4';
|
1548 |
+
}
|
1549 |
+
}
|
1550 |
+
|
1551 |
+
.socicon-streamjar {
|
1552 |
+
color: $icon-streamjar;
|
1553 |
+
background-color: $icon-streamjar;
|
1554 |
+
|
1555 |
+
&::before {
|
1556 |
+
content: '\e0a5';
|
1557 |
+
}
|
1558 |
+
}
|
1559 |
+
|
1560 |
+
.socicon-nintendo {
|
1561 |
+
color: $icon-nintendo;
|
1562 |
+
background-color: $icon-nintendo;
|
1563 |
+
|
1564 |
+
&::before {
|
1565 |
+
content: '\e0a6';
|
1566 |
+
}
|
1567 |
+
}
|
1568 |
+
|
1569 |
+
.socicon-hellocoton {
|
1570 |
+
color: $icon-hellocoton;
|
1571 |
+
background-color: $icon-hellocoton;
|
1572 |
+
|
1573 |
+
&::before {
|
1574 |
+
content: '\e0a7';
|
1575 |
+
}
|
1576 |
+
}
|
assets/css/_variables.scss
CHANGED
@@ -161,3 +161,18 @@ $icon-etsy : #f56400;
|
|
161 |
$icon-zapier : #ff4a00;
|
162 |
$icon-google-scholar : #4285f4;
|
163 |
$icon-researchgate : #00ccbb;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
$icon-zapier : #ff4a00;
|
162 |
$icon-google-scholar : #4285f4;
|
163 |
$icon-researchgate : #00ccbb;
|
164 |
+
$icon-wechat : #09b507;
|
165 |
+
$icon-strava : #fc4c02;
|
166 |
+
$icon-line : #00b901;
|
167 |
+
$icon-lyft : #ff00bf;
|
168 |
+
$icon-uber : #000000;
|
169 |
+
$icon-songkick : #f80046;
|
170 |
+
$icon-viewbug : #2f9fcf;
|
171 |
+
$icon-googlegroups : #4f8ef5;
|
172 |
+
$icon-blizzard : #01b2f1;
|
173 |
+
$icon-beam : #536dfe;
|
174 |
+
$icon-curse : #f26522;
|
175 |
+
$icon-player : #6e41bd;
|
176 |
+
$icon-streamjar : #503a60;
|
177 |
+
$icon-nintendo : #f58a33;
|
178 |
+
$icon-hellocoton : #d30d66;
|
assets/css/admin.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
@charset "UTF-8";[class*=socicon-]::before,[class^=socicon-]::before,[data-icon]::before{font-family:socicon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;-moz-osx-font-smoothing:grayscale;speak:none}.socicon,[data-icon]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon-mixcloud,.socicon-modelmayhem{color:#000;background-color:#000}@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes spin{100%{-moz-transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@font-face{font-family:socicon;src:url(../fonts/socicon.eot);src:url(../fonts/socicon.eot?#iefix) format("embedded-opentype"),url(../fonts/socicon.woff) format("woff"),url(../fonts/socicon.ttf) format("truetype"),url(../fonts/socicon.svg#socicon) format("svg");font-weight:400;font-style:normal}[data-icon]::before{content:attr(data-icon)}[class*=socicon-]::before,[class^=socicon-]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon{position:relative;top:3px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;font-size:1.2em}.socicon-modelmayhem::before{content:'\e000'}.socicon-mixcloud::before{content:'\e001'}.socicon-drupal{color:#00598e;background-color:#00598e}.socicon-drupal::before{content:'\e002'}.socicon-swarm{color:#fc9d3c;background-color:#fc9d3c}.socicon-swarm::before{content:'\e003'}.socicon-istock{color:#000;background-color:#000}.socicon-istock::before{content:'\e004'}.socicon-yammer{color:#1175c4;background-color:#1175c4}.socicon-yammer::before{content:'\e005'}.socicon-ello{color:#000;background-color:#000}.socicon-ello::before{content:'\e006'}.socicon-stackoverflow{color:#fd9827;background-color:#fd9827}.socicon-stackoverflow::before{content:'\e007'}.socicon-persona{color:#e6753d;background-color:#e6753d}.socicon-persona::before{content:'\e008'}.socicon-triplej{color:#e53531;background-color:#e53531}.socicon-triplej::before{content:'\e009'}.socicon-houzz{color:#7cc04b;background-color:#7cc04b}.socicon-houzz::before{content:'\e00a'}.socicon-rss{color:#f26109;background-color:#f26109}.socicon-rss::before{content:'\e00b'}.socicon-paypal{color:#009cde;background-color:#009cde}.socicon-paypal::before{content:'\e00c'}.socicon-odnoklassniki{color:#f48420;background-color:#f48420}.socicon-odnoklassniki::before{content:'\e00d'}.socicon-airbnb{color:#ff5a5f;background-color:#ff5a5f}.socicon-airbnb::before{content:'\e00e'}.socicon-periscope{color:#3aa4c6;background-color:#3aa4c6}.socicon-periscope::before{content:'\e00f'}.socicon-outlook{color:#0072c6;background-color:#0072c6}.socicon-outlook::before{content:'\e010'}.socicon-coderwall{color:#3e8dcc;background-color:#3e8dcc}.socicon-coderwall::before{content:'\e011'}.socicon-tripadvisor{color:#4b7e37;background-color:#4b7e37}.socicon-tripadvisor::before{content:'\e012'}.socicon-appnet{color:#494949;background-color:#494949}.socicon-appnet::before{content:'\e013'}.socicon-goodreads{color:#463020;background-color:#463020}.socicon-goodreads::before{content:'\e014'}.socicon-tripit{color:#1982c3;background-color:#1982c3}.socicon-tripit::before{content:'\e015'}.socicon-lanyrd{color:#3c80c9;background-color:#3c80c9}.socicon-lanyrd::before{content:'\e016'}.socicon-slideshare{color:#4ba3a6;background-color:#4ba3a6}.socicon-slideshare::before{content:'\e017'}.socicon-buffer{color:#000;background-color:#000}.socicon-buffer::before{content:'\e018'}.socicon-disqus{color:#2e9fff;background-color:#2e9fff}.socicon-disqus::before{content:'\e019'}.socicon-vkontakte{color:#5a7fa6;background-color:#5a7fa6}.socicon-vkontakte::before{content:'\e01a'}.socicon-whatsapp{color:#20b038;background-color:#20b038}.socicon-whatsapp::before{content:'\e01b'}.socicon-patreon{color:#e44727;background-color:#e44727}.socicon-patreon::before{content:'\e01c'}.socicon-storehouse{color:#25b0e6;background-color:#25b0e6}.socicon-storehouse::before{content:'\e01d'}.socicon-pocket{color:#ed4055;background-color:#ed4055}.socicon-pocket::before{content:'\e01e'}.socicon-mail{color:#000;background-color:#000}.socicon-mail::before{content:'\e01f'}.socicon-blogger{color:#ec661c;background-color:#ec661c}.socicon-blogger::before{content:'\e020'}.socicon-technorati{color:#5cb030;background-color:#5cb030}.socicon-technorati::before{content:'\e021'}.socicon-reddit{color:#e74a1e;background-color:#e74a1e}.socicon-reddit::before{content:'\e022'}.socicon-dribbble{color:#e84d88;background-color:#e84d88}.socicon-dribbble::before{content:'\e023'}.socicon-stumbleupon{color:#e64011;background-color:#e64011}.socicon-stumbleupon::before{content:'\e024'}.socicon-digg{color:#1d1d1b;background-color:#1d1d1b}.socicon-digg::before{content:'\e025'}.socicon-envato{color:#597c3a;background-color:#597c3a}.socicon-envato::before{content:'\e026'}.socicon-behance{color:#000;background-color:#000}.socicon-behance::before{content:'\e027'}.socicon-delicious{color:#020202;background-color:#020202}.socicon-delicious::before{content:'\e028'}.socicon-deviantart{color:#c5d200;background-color:#c5d200}.socicon-deviantart::before{content:'\e029'}.socicon-forrst{color:#5b9a68;background-color:#5b9a68}.socicon-forrst::before{content:'\e02a'}.socicon-play{color:#000;background-color:#000}.socicon-play::before{content:'\e02b'}.socicon-zerply{color:#9dbc7a;background-color:#9dbc7a}.socicon-zerply::before{content:'\e02c'}.socicon-wikipedia{color:#000;background-color:#000}.socicon-wikipedia::before{content:'\e02d'}.socicon-apple{color:#b9bfc1;background-color:#b9bfc1}.socicon-apple::before{content:'\e02e'}.socicon-flattr{color:#f67c1a;background-color:#f67c1a}.socicon-flattr::before{content:'\e02f'}.socicon-github{color:#221e1b;background-color:#221e1b}.socicon-github::before{content:'\e030'}.socicon-renren{color:#2266b0;background-color:#2266b0}.socicon-renren::before{content:'\e031'}.socicon-friendfeed{color:#2f72c4;background-color:#2f72c4}.socicon-friendfeed::before{content:'\e032'}.socicon-newsvine{color:#075b2f;background-color:#075b2f}.socicon-newsvine::before{content:'\e033'}.socicon-identica{color:#000;background-color:#000}.socicon-identica::before{content:'\e034'}.socicon-bebo{color:#ef1011;background-color:#ef1011}.socicon-bebo::before{content:'\e035'}.socicon-zynga{color:#dc0606;background-color:#dc0606}.socicon-zynga::before{content:'\e036'}.socicon-steam{color:#171a21;background-color:#171a21}.socicon-steam::before{content:'\e037'}.socicon-xbox{color:#92c83e;background-color:#92c83e}.socicon-xbox::before{content:'\e038'}.socicon-windows{color:#00bdf6;background-color:#00bdf6}.socicon-windows::before{content:'\e039'}.socicon-qq{color:#4297d3;background-color:#4297d3}.socicon-qq::before{content:'\e03a'}.socicon-douban{color:#3ca353;background-color:#3ca353}.socicon-douban::before{content:'\e03b'}.socicon-meetup{color:#e2373c;background-color:#e2373c}.socicon-meetup::before{content:'\e03c'}.socicon-playstation{color:#000;background-color:#000}.socicon-playstation::before{content:'\e03d'}.socicon-android{color:#8ec047;background-color:#8ec047}.socicon-android::before{content:'\e03e'}.socicon-snapchat{color:#fffa37;background-color:#fffa37}.socicon-snapchat::before{content:'\e03f'}.socicon-twitter{color:#4da7de;background-color:#4da7de}.socicon-twitter::before{content:'\e040'}.socicon-facebook{color:#3e5b98;background-color:#3e5b98}.socicon-facebook::before{content:'\e041'}.socicon-googleplus{color:#dd4b39;background-color:#dd4b39}.socicon-googleplus::before{content:'\e042'}.socicon-pinterest{color:#c92619;background-color:#c92619}.socicon-pinterest::before{content:'\e043'}.socicon-foursquare{color:#f94877;background-color:#f94877}.socicon-foursquare::before{content:'\e044'}.socicon-yahoo{color:#6e2a85;background-color:#6e2a85}.socicon-yahoo::before{content:'\e045'}.socicon-skype{color:#28abe3;background-color:#28abe3}.socicon-skype::before{content:'\e046'}.socicon-yelp{color:#c83218;background-color:#c83218}.socicon-yelp::before{content:'\e047'}.socicon-feedburner{color:#fc0;background-color:#fc0}.socicon-feedburner::before{content:'\e048'}.socicon-linkedin{color:#3371b7;background-color:#3371b7}.socicon-linkedin::before{content:'\e049'}.socicon-viadeo{color:#e4a000;background-color:#e4a000}.socicon-viadeo::before{content:'\e04a'}.socicon-xing{color:#005a60;background-color:#005a60}.socicon-xing::before{content:'\e04b'}.socicon-myspace{color:#323232;background-color:#323232}.socicon-myspace::before{content:'\e04c'}.socicon-soundcloud{color:#fe3801;background-color:#fe3801}.socicon-soundcloud::before{content:'\e04d'}.socicon-spotify{color:#7bb342;background-color:#7bb342}.socicon-spotify::before{content:'\e04e'}.socicon-grooveshark{color:#000;background-color:#000}.socicon-grooveshark::before{content:'\e04f'}.socicon-lastfm{color:#d41316;background-color:#d41316}.socicon-lastfm::before{content:'\e050'}.socicon-youtube{color:#e02a20;background-color:#e02a20}.socicon-youtube::before{content:'\e051'}.socicon-vimeo{color:#51b5e7;background-color:#51b5e7}.socicon-vimeo::before{content:'\e052'}.socicon-dailymotion{color:#004e72;background-color:#004e72}.socicon-dailymotion::before{content:'\e053'}.socicon-vine{color:#00b389;background-color:#00b389}.socicon-vine::before{content:'\e054'}.socicon-flickr{color:#1e1e1b;background-color:#1e1e1b}.socicon-flickr::before{content:'\e055'}.socicon-500px{color:#58a9de;background-color:#58a9de}.socicon-500px::before{content:'\e056'}.socicon-instagram{color:#9c7c6e;background-color:#9c7c6e}.socicon-instagram::before{content:'\e057'}.socicon-wordpress{color:#464646;background-color:#464646}.socicon-wordpress::before{content:'\e058'}.socicon-tumblr{color:#45556c;background-color:#45556c}.socicon-tumblr::before{content:'\e059'}.socicon-twitch{color:#6441a5;background-color:#6441a5}.socicon-twitch::before{content:'\e05a'}.socicon-8tracks{color:#122c4b;background-color:#122c4b}.socicon-8tracks::before{content:'\e05b'}.socicon-amazon{color:#f90;background-color:#f90}.socicon-amazon::before{content:'\e05c'}.socicon-icq{color:#7ebd00;background-color:#7ebd00}.socicon-icq::before{content:'\e05d'}.socicon-smugmug{color:#acfd32;background-color:#acfd32}.socicon-smugmug::before{content:'\e05e'}.socicon-ravelry{color:#b6014c;background-color:#b6014c}.socicon-ravelry::before{content:'\e05f'}.socicon-weibo{color:#e31c34;background-color:#e31c34}.socicon-weibo::before{content:'\e060'}.socicon-baidu{color:#2629d9;background-color:#2629d9}.socicon-baidu::before{content:'\e061'}.socicon-angellist{color:#000;background-color:#000}.socicon-angellist::before{content:'\e062'}.socicon-ebay{color:#333;background-color:#333}.socicon-ebay::before{content:'\e063'}.socicon-imdb{color:#e8ba00;background-color:#e8ba00}.socicon-imdb::before{content:'\e064'}.socicon-stayfriends{color:#f08a1c;background-color:#f08a1c}.socicon-stayfriends::before{content:'\e065'}.socicon-residentadvisor{color:#b3be1b;background-color:#b3be1b}.socicon-residentadvisor::before{content:'\e066'}.socicon-google{color:#4285f4;background-color:#4285f4}.socicon-google::before{content:'\e067'}.socicon-yandex{color:red;background-color:red}.socicon-yandex::before{content:'\e068'}.socicon-sharethis{color:#01bf01;background-color:#01bf01}.socicon-sharethis::before{content:'\e069'}.socicon-bandcamp{color:#619aa9;background-color:#619aa9}.socicon-bandcamp::before{content:'\e06a'}.socicon-itunes{color:#ff5e51;background-color:#ff5e51}.socicon-itunes::before{content:'\e06b'}.socicon-deezer{color:#32323d;background-color:#32323d}.socicon-deezer::before{content:'\e06c'}.socicon-medium{color:#000;background-color:#000}.socicon-medium::before{content:'\e06d'}.socicon-telegram{color:#08c;background-color:#08c}.socicon-telegram::before{content:'\e06e'}.socicon-openid{color:#f78c40;background-color:#f78c40}.socicon-openid::before{content:'\e06f'}.socicon-amplement{color:#0996c3;background-color:#0996c3}.socicon-amplement::before{content:'\e070'}.socicon-viber{color:#7b519d;background-color:#7b519d}.socicon-quora,.socicon-zomato{color:#cb202d;background-color:#cb202d}.socicon-viber::before{content:'\e071'}.socicon-zomato::before{content:'\e072'}.socicon-quora::before{content:'\e073'}.socicon-draugiem{color:#ffa32b;background-color:#ffa32b}.socicon-draugiem::before{content:'\e074'}.socicon-endomodo{color:#86ad00;background-color:#86ad00}.socicon-endomodo::before{content:'\e075'}.socicon-filmweb{color:#ffc404;background-color:#ffc404}.socicon-filmweb::before{content:'\e076'}.socicon-stackexchange{color:#2f2f2f;background-color:#2f2f2f}.socicon-stackexchange::before{content:'\e077'}.socicon-wykop{color:#328efe;background-color:#328efe}.socicon-wykop::before{content:'\e078'}.socicon-teamspeak{color:#465674;background-color:#465674}.socicon-teamspeak::before{content:'\e079'}.socicon-teamviewer{color:#168ef4;background-color:#168ef4}.socicon-teamviewer::before{content:'\e07a'}.socicon-ventrilo{color:#77808a;background-color:#77808a}.socicon-ventrilo::before{content:'\e07b'}.socicon-younow{color:#61c03e;background-color:#61c03e}.socicon-younow::before{content:'\e07c'}.socicon-raidcall{color:#073558;background-color:#073558}.socicon-raidcall::before{content:'\e07d'}.socicon-mumble{color:#5ab5d1;background-color:#5ab5d1}.socicon-mumble::before{content:'\e07e'}.socicon-bebee{color:#f28f16;background-color:#f28f16}.socicon-bebee::before{content:'\e07f'}.socicon-hitbox{color:#9c0;background-color:#9c0}.socicon-hitbox::before{content:'\e080'}.socicon-reverbnation{color:#000;background-color:#000}.socicon-reverbnation::before{content:'\e081'}.socicon-formulr{color:#ff5a60;background-color:#ff5a60}.socicon-formulr::before{content:'\e082'}.socicon-battlenet{color:#0096cd;background-color:#0096cd}.socicon-battlenet::before{content:'\e083'}.socicon-chrome{color:#757575;background-color:#757575}.socicon-chrome::before{content:'\e084'}.socicon-diablo{color:#8b1209;background-color:#8b1209}.socicon-diablo::before{content:'\e085'}.socicon-discord{color:#7289da;background-color:#7289da}.socicon-discord::before{content:'\e086'}.socicon-issuu{color:#f26f61;background-color:#f26f61}.socicon-issuu::before{content:'\e087'}.socicon-macos{color:#000;background-color:#000}.socicon-macos::before{content:'\e088'}.socicon-firefox{color:#484848;background-color:#484848}.socicon-firefox::before{content:'\e089'}.socicon-heroes{color:#2397f7;background-color:#2397f7}.socicon-heroes::before{content:'\e08a'}.socicon-hearthstone{color:#ec9313;background-color:#ec9313}.socicon-hearthstone::before{content:'\e08b'}.socicon-overwatch{color:#9e9e9e;background-color:#9e9e9e}.socicon-overwatch::before{content:'\e08c'}.socicon-opera{color:#ff1b2d;background-color:#ff1b2d}.socicon-opera::before{content:'\e08d'}.socicon-warcraft{color:#1eb10a;background-color:#1eb10a}.socicon-warcraft::before{content:'\e08e'}.socicon-starcraft{color:#002250;background-color:#002250}.socicon-starcraft::before{content:'\e08f'}.socicon-keybase{color:#ff7100;background-color:#ff7100}.socicon-keybase::before{content:'\e090'}.socicon-alliance{color:#144587;background-color:#144587}.socicon-alliance::before{content:'\e091'}.socicon-livejournal{color:#09c;background-color:#09c}.socicon-livejournal::before{content:'\e092'}.socicon-googlephotos{color:#212121;background-color:#212121}.socicon-googlephotos::before{content:'\e093'}.socicon-horde{color:#84121c;background-color:#84121c}.socicon-horde::before{content:'\e094'}.socicon-etsy{color:#f56400;background-color:#f56400}.socicon-etsy::before{content:'\e095'}.socicon-zapier{color:#ff4a00;background-color:#ff4a00}.socicon-zapier::before{content:'\e096'}.socicon-google-scholar{color:#4285f4;background-color:#4285f4}.socicon-google-scholar::before{content:'\e097'}.socicon-researchgate{color:#0cb;background-color:#0cb}.socicon-researchgate::before{content:'\e098'}#social-icons-group-data .panel-wrap,.social-icons .panel-wrap{overflow:hidden}#social-icons-group-data ul.si-tabs,.social-icons ul.si-tabs{margin:0;width:20%;float:left;line-height:1em;padding:0 0 10px;position:relative;background-color:#fafafa;border-right:1px solid #eee;box-sizing:border-box}#social-icons-group-data ul.si-tabs::after,.social-icons ul.si-tabs::after{content:'';display:block;width:100%;height:9999em;position:absolute;bottom:-9999em;left:0;background-color:#fafafa;border-right:1px solid #eee}#social-icons-group-data ul.si-tabs li,.social-icons ul.si-tabs li{margin:0;padding:0;display:block;position:relative}#social-icons-group-data ul.si-tabs li a,.social-icons ul.si-tabs li a{margin:0;padding:10px;display:block;box-shadow:none;text-decoration:none;line-height:20px!important;border-bottom:1px solid #eee}#social-icons-group-data ul.si-tabs li a::before,.social-icons ul.si-tabs li a::before{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none}#social-icons-group-data ul.si-tabs li.general_options a::before,.social-icons ul.si-tabs li.general_options a::before{content:'\f107'}#social-icons-group-data ul.si-tabs li.linked_icons_options a::before,.social-icons ul.si-tabs li.linked_icons_options a::before{content:'\f103'}#social-icons-group-data ul.si-tabs li.active a,.social-icons ul.si-tabs li.active a{color:#555;position:relative;background-color:#eee}#social-icons-group-data .inside{margin:0;padding:0}.panel,.social_icons_options_panel{padding:0;color:#555}.panel .form-field .social-icons-help-tip,.social_icons_options_panel .form-field .social-icons-help-tip{font-size:1.4em}.social_icons_options_panel fieldset.form-field,.social_icons_options_panel p{margin:0 0 9px;font-size:12px;padding:5px 9px;line-height:24px}.social_icons_options_panel fieldset.form-field::after,.social_icons_options_panel p::after{content:'.';display:block;height:0;clear:both;visibility:hidden}.social_icons_options_panel .checkbox{width:auto;margin:3px 0;vertical-align:middle}.social_icons_options_panel .sortable_icons table{width:100%;padding:0!important}.social_icons_options_panel .sortable_icons table tr.no-items{background:#f9f9f9}.social_icons_options_panel .sortable_icons table tr.no-items td p{margin:0}.social_icons_options_panel .sortable_icons table th{padding:7px 0 7px 7px!important}.social_icons_options_panel .sortable_icons table th.sort{width:17px;padding:7px!important}.social_icons_options_panel .sortable_icons table th .social-icons-help-tip{font-size:1.1em;margin-left:0}.social_icons_options_panel .sortable_icons table td{vertical-align:middle!important;padding:4px 0 4px 7px!important;position:relative}.social_icons_options_panel .sortable_icons table td:last-child{padding-right:7px!important}.social_icons_options_panel .sortable_icons table td input.input_text{width:100%;float:none;min-width:0;margin:1px 0}.social_icons_options_panel .sortable_icons table td .choose_icon_button{width:auto;float:right;cursor:pointer}.social_icons_options_panel .sortable_icons table td .delete{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:1.2em}.social-icons-help-tip::after,.social_icons_options_panel .sortable_icons table td .delete::before{font-family:Dashicons;speak:none;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;text-indent:0;text-align:center}.social_icons_options_panel .sortable_icons table td .delete::before{font-weight:400;line-height:1;margin:0;position:absolute;top:0;left:0;width:100%;height:100%;content:"";color:#999}.social_icons_options_panel .sortable_icons table td .delete:hover::before{color:#a00}.social_icons_options_panel .sortable_icons table td.sort{width:17px;cursor:move;text-align:center;background:#f9f9f9;padding-right:7px!important}.social_icons_options_panel .sortable_icons table td.sort.dashicons-plus{font-size:15px;font-family:Dashicons}.social_icons_options_panel .sortable_icons table td.sort::before{text-align:center;line-height:1;color:#999;display:block;width:17px;float:left;height:100%}.social_icons_options_panel .sortable_icons table td.sort:hover::before{color:#333}.social_icons_options_panel{min-height:175px;box-sizing:border-box}.social_icons_options_panel .sortable_icons{padding:0 9px;position:relative;margin:9px 0}.social_icons_options_panel .sortable_icons label{display:none}.social_icons_options_panel p{margin:9px 0}.social_icons_options_panel fieldset.form-field,.social_icons_options_panel p.form-field{padding:5px 20px 5px 162px!important}.social_icons_options_panel label,.social_icons_options_panel legend{float:left;width:150px;padding:0;margin:0 0 0 -150px}.social_icons_options_panel label .req,.social_icons_options_panel legend .req{font-weight:700;font-style:normal;color:#a00}.social_icons_options_panel .description{padding:0;margin:0 0 0 7px;clear:none;display:inline}.social_icons_options_panel .description-block{margin-left:0;display:block}.social_icons_options_panel input,.social_icons_options_panel select,.social_icons_options_panel textarea{margin:0}.social_icons_options_panel textarea{height:3.5em;line-height:1.5em;vertical-align:top}.social_icons_options_panel input[type=text],.social_icons_options_panel input[type=email],.social_icons_options_panel input[type=number],.social_icons_options_panel input[type=password]{width:50%;float:left}.social_icons_options_panel input.button{width:auto;margin-left:8px}.social_icons_options_panel select{float:left}.social_icons_options_panel .short,.social_icons_options_panel input[type=text].short,.social_icons_options_panel input[type=email].short,.social_icons_options_panel input[type=number].short,.social_icons_options_panel input[type=password].short{width:50%}.social_icons_options_panel .sized{width:auto!important;margin-right:6px}.social_icons_options_panel .options_group{border-top:1px solid #fff;border-bottom:1px solid #eee}.social_icons_options_panel .options_group:first-child{border-top:0}.social_icons_options_panel .options_group:last-child{border-bottom:0}.social_icons_options_panel .options_group fieldset{margin:9px 0;font-size:12px;padding:5px 9px;line-height:24px}.social_icons_options_panel .options_group fieldset label{width:auto;float:none}.social_icons_options_panel .options_group fieldset ul{float:left;width:50%;margin:0;padding:0}.social_icons_options_panel .options_group fieldset ul li{margin:0;width:auto}.social_icons_options_panel .options_group fieldset ul li input{width:auto;float:none;margin-right:4px}.social_icons_options_panel .options_group fieldset ul.si-radios label{margin-left:0}.social_icons_options_panel.padded{padding:1em}#social-icons-group-description{padding:3px 8px;font-size:1.7em;line-height:1.42em;height:auto;width:100%;outline:0;margin:10px 0;display:block}#social-icons-group-description::-webkit-input-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-description::-moz-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-description:-ms-input-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-description:-moz-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-data .panel-wrap{background:#fff}#social-icons-group-data .social_icons_options_panel{float:left;width:80%}#social-icons-group-data .social_icons_options_panel .si-radios{display:block;float:left;margin:0}#social-icons-group-data .social_icons_options_panel .si-radios li{display:block;padding:0 0 10px}#social-icons-group-data .social_icons_options_panel .si-radios li input{width:auto}table.wp-list-table .row-actions{color:#999}table.wp-list-table .column-shortcode .social-icons-help-tip{font-size:1.2em;margin-left:5px}table.wp-list-table span.shortcode{margin:2px 0;display:block}table.wp-list-table span.shortcode input[type=text]{margin:0;font-size:12px;padding:4px 8px;background:#fcfcfc}table.wp-list-table span.shortcode input[type=text].regular-text{width:20em}img.help_tip{margin:0 0 0 9px;vertical-align:middle}.postbox img.help_tip{margin-top:0}.postbox .social-icons-help-tip{margin:0 0 0 9px}.tips{cursor:help;text-decoration:none}img.tips{padding:5px 0 0}#tiptip_holder{display:none;position:absolute;top:0;left:0;z-index:9999999}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-left:-6px;border-top-color:#333}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-left:-6px;border-bottom-color:#333}#tiptip_holder.tip_right{padding-left:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-left:-5px;border-right-color:#333}#tiptip_holder.tip_left{padding-right:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-left:-7px;border-left-color:#333}#tiptip_content,.si_error_tip{color:#fff;font-size:.8em;max-width:150px;background:#333;text-align:center;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2)}#tiptip_content code,.si_error_tip code{padding:1px;background:#888}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}.si_error_tip{max-width:20em;line-height:1.8em;position:absolute;white-space:normal;background:#d82223;margin:1.5em 1px 0 -1em;z-index:9999999}.si_error_tip::after{content:'';display:block;border:8px solid #d82223;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-3px;left:50%;margin:-1em 0 0 -3px}.social-icons-help-tip{color:#666;display:inline-block;font-size:1.1em;font-style:normal;height:16px;line-height:16px;position:relative;vertical-align:middle;width:16px}.social-icons-help-tip::after{font-weight:400;line-height:1;margin:0;position:absolute;top:0;left:0;width:100%;height:100%;content:"";cursor:help}@media only screen and (max-width:1280px){.social_icons_options_panel .description{display:block;clear:both;margin-left:0}.social_icons_options_panel .dimensions_field .wrap,.social_icons_options_panel .short,.social_icons_options_panel input[type=text].short,.social_icons_options_panel input[type=email].short,.social_icons_options_panel input[type=number].short,.social_icons_options_panel input[type=password].short{width:80%}}@media only screen and (max-width:900px){#social-icons-group-data ul.group_data_tabs{width:10%}#social-icons-group-data .social_icons_options_panel{width:90%}#social-icons-group-data ul.group_data_tabs li a{position:relative;text-indent:-999px;padding:10px}#social-icons-group-data ul.group_data_tabs li a::before{position:absolute;top:0;right:0;bottom:0;left:0;text-indent:0;text-align:center;line-height:40px;width:100%;height:40px}}@media only screen and (max-width:782px){#social-icons-group-data .checkbox{width:25px}}@media only screen and (max-width:500px){.social_icons_options_panel label,.social_icons_options_panel legend{float:none;width:auto;display:block;margin:0}.social_icons_options_panel fieldset.form-field,.social_icons_options_panel p.form-field{padding:5px 20px!important}}
|
1 |
+
@charset "UTF-8";[class*=socicon-]::before,[class^=socicon-]::before,[data-icon]::before{font-family:socicon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;-moz-osx-font-smoothing:grayscale;speak:none}.socicon,[data-icon]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon-mixcloud,.socicon-modelmayhem{color:#000;background-color:#000}@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes spin{100%{-moz-transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@font-face{font-family:socicon;src:url(../fonts/socicon.eot);src:url(../fonts/socicon.eot?#iefix) format("embedded-opentype"),url(../fonts/socicon.woff) format("woff"),url(../fonts/socicon.ttf) format("truetype"),url(../fonts/socicon.svg#socicon) format("svg");font-weight:400;font-style:normal}[data-icon]::before{content:attr(data-icon)}[class*=socicon-]::before,[class^=socicon-]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon{position:relative;top:3px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;font-size:1.2em}.socicon-modelmayhem::before{content:'\e000'}.socicon-mixcloud::before{content:'\e001'}.socicon-drupal{color:#00598e;background-color:#00598e}.socicon-drupal::before{content:'\e002'}.socicon-swarm{color:#fc9d3c;background-color:#fc9d3c}.socicon-swarm::before{content:'\e003'}.socicon-istock{color:#000;background-color:#000}.socicon-istock::before{content:'\e004'}.socicon-yammer{color:#1175c4;background-color:#1175c4}.socicon-yammer::before{content:'\e005'}.socicon-ello{color:#000;background-color:#000}.socicon-ello::before{content:'\e006'}.socicon-stackoverflow{color:#fd9827;background-color:#fd9827}.socicon-stackoverflow::before{content:'\e007'}.socicon-persona{color:#e6753d;background-color:#e6753d}.socicon-persona::before{content:'\e008'}.socicon-triplej{color:#e53531;background-color:#e53531}.socicon-triplej::before{content:'\e009'}.socicon-houzz{color:#7cc04b;background-color:#7cc04b}.socicon-houzz::before{content:'\e00a'}.socicon-rss{color:#f26109;background-color:#f26109}.socicon-rss::before{content:'\e00b'}.socicon-paypal{color:#009cde;background-color:#009cde}.socicon-paypal::before{content:'\e00c'}.socicon-odnoklassniki{color:#f48420;background-color:#f48420}.socicon-odnoklassniki::before{content:'\e00d'}.socicon-airbnb{color:#ff5a5f;background-color:#ff5a5f}.socicon-airbnb::before{content:'\e00e'}.socicon-periscope{color:#3aa4c6;background-color:#3aa4c6}.socicon-periscope::before{content:'\e00f'}.socicon-outlook{color:#0072c6;background-color:#0072c6}.socicon-outlook::before{content:'\e010'}.socicon-coderwall{color:#3e8dcc;background-color:#3e8dcc}.socicon-coderwall::before{content:'\e011'}.socicon-tripadvisor{color:#4b7e37;background-color:#4b7e37}.socicon-tripadvisor::before{content:'\e012'}.socicon-appnet{color:#494949;background-color:#494949}.socicon-appnet::before{content:'\e013'}.socicon-goodreads{color:#463020;background-color:#463020}.socicon-goodreads::before{content:'\e014'}.socicon-tripit{color:#1982c3;background-color:#1982c3}.socicon-tripit::before{content:'\e015'}.socicon-lanyrd{color:#3c80c9;background-color:#3c80c9}.socicon-lanyrd::before{content:'\e016'}.socicon-slideshare{color:#4ba3a6;background-color:#4ba3a6}.socicon-slideshare::before{content:'\e017'}.socicon-buffer{color:#000;background-color:#000}.socicon-buffer::before{content:'\e018'}.socicon-disqus{color:#2e9fff;background-color:#2e9fff}.socicon-disqus::before{content:'\e019'}.socicon-vkontakte{color:#5a7fa6;background-color:#5a7fa6}.socicon-vkontakte::before{content:'\e01a'}.socicon-whatsapp{color:#20b038;background-color:#20b038}.socicon-whatsapp::before{content:'\e01b'}.socicon-patreon{color:#e44727;background-color:#e44727}.socicon-patreon::before{content:'\e01c'}.socicon-storehouse{color:#25b0e6;background-color:#25b0e6}.socicon-storehouse::before{content:'\e01d'}.socicon-pocket{color:#ed4055;background-color:#ed4055}.socicon-pocket::before{content:'\e01e'}.socicon-mail{color:#000;background-color:#000}.socicon-mail::before{content:'\e01f'}.socicon-blogger{color:#ec661c;background-color:#ec661c}.socicon-blogger::before{content:'\e020'}.socicon-technorati{color:#5cb030;background-color:#5cb030}.socicon-technorati::before{content:'\e021'}.socicon-reddit{color:#e74a1e;background-color:#e74a1e}.socicon-reddit::before{content:'\e022'}.socicon-dribbble{color:#e84d88;background-color:#e84d88}.socicon-dribbble::before{content:'\e023'}.socicon-stumbleupon{color:#e64011;background-color:#e64011}.socicon-stumbleupon::before{content:'\e024'}.socicon-digg{color:#1d1d1b;background-color:#1d1d1b}.socicon-digg::before{content:'\e025'}.socicon-envato{color:#597c3a;background-color:#597c3a}.socicon-envato::before{content:'\e026'}.socicon-behance{color:#000;background-color:#000}.socicon-behance::before{content:'\e027'}.socicon-delicious{color:#020202;background-color:#020202}.socicon-delicious::before{content:'\e028'}.socicon-deviantart{color:#c5d200;background-color:#c5d200}.socicon-deviantart::before{content:'\e029'}.socicon-forrst{color:#5b9a68;background-color:#5b9a68}.socicon-forrst::before{content:'\e02a'}.socicon-play{color:#000;background-color:#000}.socicon-play::before{content:'\e02b'}.socicon-zerply{color:#9dbc7a;background-color:#9dbc7a}.socicon-zerply::before{content:'\e02c'}.socicon-wikipedia{color:#000;background-color:#000}.socicon-wikipedia::before{content:'\e02d'}.socicon-apple{color:#b9bfc1;background-color:#b9bfc1}.socicon-apple::before{content:'\e02e'}.socicon-flattr{color:#f67c1a;background-color:#f67c1a}.socicon-flattr::before{content:'\e02f'}.socicon-github{color:#221e1b;background-color:#221e1b}.socicon-github::before{content:'\e030'}.socicon-renren{color:#2266b0;background-color:#2266b0}.socicon-renren::before{content:'\e031'}.socicon-friendfeed{color:#2f72c4;background-color:#2f72c4}.socicon-friendfeed::before{content:'\e032'}.socicon-newsvine{color:#075b2f;background-color:#075b2f}.socicon-newsvine::before{content:'\e033'}.socicon-identica{color:#000;background-color:#000}.socicon-identica::before{content:'\e034'}.socicon-bebo{color:#ef1011;background-color:#ef1011}.socicon-bebo::before{content:'\e035'}.socicon-zynga{color:#dc0606;background-color:#dc0606}.socicon-zynga::before{content:'\e036'}.socicon-steam{color:#171a21;background-color:#171a21}.socicon-steam::before{content:'\e037'}.socicon-xbox{color:#92c83e;background-color:#92c83e}.socicon-xbox::before{content:'\e038'}.socicon-windows{color:#00bdf6;background-color:#00bdf6}.socicon-windows::before{content:'\e039'}.socicon-qq{color:#4297d3;background-color:#4297d3}.socicon-qq::before{content:'\e03a'}.socicon-douban{color:#3ca353;background-color:#3ca353}.socicon-douban::before{content:'\e03b'}.socicon-meetup{color:#e2373c;background-color:#e2373c}.socicon-meetup::before{content:'\e03c'}.socicon-playstation{color:#000;background-color:#000}.socicon-playstation::before{content:'\e03d'}.socicon-android{color:#8ec047;background-color:#8ec047}.socicon-android::before{content:'\e03e'}.socicon-snapchat{color:#fffa37;background-color:#fffa37}.socicon-snapchat::before{content:'\e03f'}.socicon-twitter{color:#4da7de;background-color:#4da7de}.socicon-twitter::before{content:'\e040'}.socicon-facebook{color:#3e5b98;background-color:#3e5b98}.socicon-facebook::before{content:'\e041'}.socicon-googleplus{color:#dd4b39;background-color:#dd4b39}.socicon-googleplus::before{content:'\e042'}.socicon-pinterest{color:#c92619;background-color:#c92619}.socicon-pinterest::before{content:'\e043'}.socicon-foursquare{color:#f94877;background-color:#f94877}.socicon-foursquare::before{content:'\e044'}.socicon-yahoo{color:#6e2a85;background-color:#6e2a85}.socicon-yahoo::before{content:'\e045'}.socicon-skype{color:#28abe3;background-color:#28abe3}.socicon-skype::before{content:'\e046'}.socicon-yelp{color:#c83218;background-color:#c83218}.socicon-yelp::before{content:'\e047'}.socicon-feedburner{color:#fc0;background-color:#fc0}.socicon-feedburner::before{content:'\e048'}.socicon-linkedin{color:#3371b7;background-color:#3371b7}.socicon-linkedin::before{content:'\e049'}.socicon-viadeo{color:#e4a000;background-color:#e4a000}.socicon-viadeo::before{content:'\e04a'}.socicon-xing{color:#005a60;background-color:#005a60}.socicon-xing::before{content:'\e04b'}.socicon-myspace{color:#323232;background-color:#323232}.socicon-myspace::before{content:'\e04c'}.socicon-soundcloud{color:#fe3801;background-color:#fe3801}.socicon-soundcloud::before{content:'\e04d'}.socicon-spotify{color:#7bb342;background-color:#7bb342}.socicon-spotify::before{content:'\e04e'}.socicon-grooveshark{color:#000;background-color:#000}.socicon-grooveshark::before{content:'\e04f'}.socicon-lastfm{color:#d41316;background-color:#d41316}.socicon-lastfm::before{content:'\e050'}.socicon-youtube{color:#e02a20;background-color:#e02a20}.socicon-youtube::before{content:'\e051'}.socicon-vimeo{color:#51b5e7;background-color:#51b5e7}.socicon-vimeo::before{content:'\e052'}.socicon-dailymotion{color:#004e72;background-color:#004e72}.socicon-dailymotion::before{content:'\e053'}.socicon-vine{color:#00b389;background-color:#00b389}.socicon-vine::before{content:'\e054'}.socicon-flickr{color:#1e1e1b;background-color:#1e1e1b}.socicon-flickr::before{content:'\e055'}.socicon-500px{color:#58a9de;background-color:#58a9de}.socicon-500px::before{content:'\e056'}.socicon-instagram{color:#9c7c6e;background-color:#9c7c6e}.socicon-instagram::before{content:'\e057'}.socicon-wordpress{color:#464646;background-color:#464646}.socicon-wordpress::before{content:'\e058'}.socicon-tumblr{color:#45556c;background-color:#45556c}.socicon-tumblr::before{content:'\e059'}.socicon-twitch{color:#6441a5;background-color:#6441a5}.socicon-twitch::before{content:'\e05a'}.socicon-8tracks{color:#122c4b;background-color:#122c4b}.socicon-8tracks::before{content:'\e05b'}.socicon-amazon{color:#f90;background-color:#f90}.socicon-amazon::before{content:'\e05c'}.socicon-icq{color:#7ebd00;background-color:#7ebd00}.socicon-icq::before{content:'\e05d'}.socicon-smugmug{color:#acfd32;background-color:#acfd32}.socicon-smugmug::before{content:'\e05e'}.socicon-ravelry{color:#b6014c;background-color:#b6014c}.socicon-ravelry::before{content:'\e05f'}.socicon-weibo{color:#e31c34;background-color:#e31c34}.socicon-weibo::before{content:'\e060'}.socicon-baidu{color:#2629d9;background-color:#2629d9}.socicon-baidu::before{content:'\e061'}.socicon-angellist{color:#000;background-color:#000}.socicon-angellist::before{content:'\e062'}.socicon-ebay{color:#333;background-color:#333}.socicon-ebay::before{content:'\e063'}.socicon-imdb{color:#e8ba00;background-color:#e8ba00}.socicon-imdb::before{content:'\e064'}.socicon-stayfriends{color:#f08a1c;background-color:#f08a1c}.socicon-stayfriends::before{content:'\e065'}.socicon-residentadvisor{color:#b3be1b;background-color:#b3be1b}.socicon-residentadvisor::before{content:'\e066'}.socicon-google{color:#4285f4;background-color:#4285f4}.socicon-google::before{content:'\e067'}.socicon-yandex{color:red;background-color:red}.socicon-yandex::before{content:'\e068'}.socicon-sharethis{color:#01bf01;background-color:#01bf01}.socicon-sharethis::before{content:'\e069'}.socicon-bandcamp{color:#619aa9;background-color:#619aa9}.socicon-bandcamp::before{content:'\e06a'}.socicon-itunes{color:#ff5e51;background-color:#ff5e51}.socicon-itunes::before{content:'\e06b'}.socicon-deezer{color:#32323d;background-color:#32323d}.socicon-deezer::before{content:'\e06c'}.socicon-medium{color:#000;background-color:#000}.socicon-medium::before{content:'\e06d'}.socicon-telegram{color:#08c;background-color:#08c}.socicon-telegram::before{content:'\e06e'}.socicon-openid{color:#f78c40;background-color:#f78c40}.socicon-openid::before{content:'\e06f'}.socicon-amplement{color:#0996c3;background-color:#0996c3}.socicon-amplement::before{content:'\e070'}.socicon-viber{color:#7b519d;background-color:#7b519d}.socicon-quora,.socicon-zomato{color:#cb202d;background-color:#cb202d}.socicon-viber::before{content:'\e071'}.socicon-zomato::before{content:'\e072'}.socicon-quora::before{content:'\e073'}.socicon-draugiem{color:#ffa32b;background-color:#ffa32b}.socicon-draugiem::before{content:'\e074'}.socicon-endomodo{color:#86ad00;background-color:#86ad00}.socicon-endomodo::before{content:'\e075'}.socicon-filmweb{color:#ffc404;background-color:#ffc404}.socicon-filmweb::before{content:'\e076'}.socicon-stackexchange{color:#2f2f2f;background-color:#2f2f2f}.socicon-stackexchange::before{content:'\e077'}.socicon-wykop{color:#328efe;background-color:#328efe}.socicon-wykop::before{content:'\e078'}.socicon-teamspeak{color:#465674;background-color:#465674}.socicon-teamspeak::before{content:'\e079'}.socicon-teamviewer{color:#168ef4;background-color:#168ef4}.socicon-teamviewer::before{content:'\e07a'}.socicon-ventrilo{color:#77808a;background-color:#77808a}.socicon-ventrilo::before{content:'\e07b'}.socicon-younow{color:#61c03e;background-color:#61c03e}.socicon-younow::before{content:'\e07c'}.socicon-raidcall{color:#073558;background-color:#073558}.socicon-raidcall::before{content:'\e07d'}.socicon-mumble{color:#5ab5d1;background-color:#5ab5d1}.socicon-mumble::before{content:'\e07e'}.socicon-bebee{color:#f28f16;background-color:#f28f16}.socicon-bebee::before{content:'\e07f'}.socicon-hitbox{color:#9c0;background-color:#9c0}.socicon-hitbox::before{content:'\e080'}.socicon-reverbnation{color:#000;background-color:#000}.socicon-reverbnation::before{content:'\e081'}.socicon-formulr{color:#ff5a60;background-color:#ff5a60}.socicon-formulr::before{content:'\e082'}.socicon-battlenet{color:#0096cd;background-color:#0096cd}.socicon-battlenet::before{content:'\e083'}.socicon-chrome{color:#757575;background-color:#757575}.socicon-chrome::before{content:'\e084'}.socicon-diablo{color:#8b1209;background-color:#8b1209}.socicon-diablo::before{content:'\e085'}.socicon-discord{color:#7289da;background-color:#7289da}.socicon-discord::before{content:'\e086'}.socicon-issuu{color:#f26f61;background-color:#f26f61}.socicon-issuu::before{content:'\e087'}.socicon-macos{color:#000;background-color:#000}.socicon-macos::before{content:'\e088'}.socicon-firefox{color:#484848;background-color:#484848}.socicon-firefox::before{content:'\e089'}.socicon-heroes{color:#2397f7;background-color:#2397f7}.socicon-heroes::before{content:'\e08a'}.socicon-hearthstone{color:#ec9313;background-color:#ec9313}.socicon-hearthstone::before{content:'\e08b'}.socicon-overwatch{color:#9e9e9e;background-color:#9e9e9e}.socicon-overwatch::before{content:'\e08c'}.socicon-opera{color:#ff1b2d;background-color:#ff1b2d}.socicon-opera::before{content:'\e08d'}.socicon-warcraft{color:#1eb10a;background-color:#1eb10a}.socicon-warcraft::before{content:'\e08e'}.socicon-starcraft{color:#002250;background-color:#002250}.socicon-starcraft::before{content:'\e08f'}.socicon-keybase{color:#ff7100;background-color:#ff7100}.socicon-keybase::before{content:'\e090'}.socicon-alliance{color:#144587;background-color:#144587}.socicon-alliance::before{content:'\e091'}.socicon-livejournal{color:#09c;background-color:#09c}.socicon-livejournal::before{content:'\e092'}.socicon-googlephotos{color:#212121;background-color:#212121}.socicon-googlephotos::before{content:'\e093'}.socicon-horde{color:#84121c;background-color:#84121c}.socicon-horde::before{content:'\e094'}.socicon-etsy{color:#f56400;background-color:#f56400}.socicon-etsy::before{content:'\e095'}.socicon-zapier{color:#ff4a00;background-color:#ff4a00}.socicon-zapier::before{content:'\e096'}.socicon-google-scholar{color:#4285f4;background-color:#4285f4}.socicon-google-scholar::before{content:'\e097'}.socicon-researchgate{color:#0cb;background-color:#0cb}.socicon-researchgate::before{content:'\e098'}.socicon-wechat{color:#09b507;background-color:#09b507}.socicon-wechat::before{content:'\e099'}.socicon-strava{color:#fc4c02;background-color:#fc4c02}.socicon-strava::before{content:'\e09a'}.socicon-line{color:#00b901;background-color:#00b901}.socicon-line::before{content:'\e09b'}.socicon-lyft{color:#ff00bf;background-color:#ff00bf}.socicon-lyft::before{content:'\e09c'}.socicon-uber{color:#000;background-color:#000}.socicon-uber::before{content:'\e09d'}.socicon-songkick{color:#f80046;background-color:#f80046}.socicon-songkick::before{content:'\e09e'}.socicon-viewbug{color:#2f9fcf;background-color:#2f9fcf}.socicon-viewbug::before{content:'\e09f'}.socicon-googlegroups{color:#4f8ef5;background-color:#4f8ef5}.socicon-googlegroups::before{content:'\e0a0'}.socicon-blizzard{color:#01b2f1;background-color:#01b2f1}.socicon-blizzard::before{content:'\e0a1'}.socicon-beam{color:#536dfe;background-color:#536dfe}.socicon-beam::before{content:'\e0a2'}.socicon-curse{color:#f26522;background-color:#f26522}.socicon-curse::before{content:'\e0a3'}.socicon-player{color:#6e41bd;background-color:#6e41bd}.socicon-player::before{content:'\e0a4'}.socicon-streamjar{color:#503a60;background-color:#503a60}.socicon-streamjar::before{content:'\e0a5'}.socicon-nintendo{color:#f58a33;background-color:#f58a33}.socicon-nintendo::before{content:'\e0a6'}.socicon-hellocoton{color:#d30d66;background-color:#d30d66}.socicon-hellocoton::before{content:'\e0a7'}#social-icons-group-data .panel-wrap,.social-icons .panel-wrap{overflow:hidden}#social-icons-group-data ul.si-tabs,.social-icons ul.si-tabs{margin:0;width:20%;float:left;line-height:1em;padding:0 0 10px;position:relative;background-color:#fafafa;border-right:1px solid #eee;box-sizing:border-box}#social-icons-group-data ul.si-tabs::after,.social-icons ul.si-tabs::after{content:'';display:block;width:100%;height:9999em;position:absolute;bottom:-9999em;left:0;background-color:#fafafa;border-right:1px solid #eee}#social-icons-group-data ul.si-tabs li,.social-icons ul.si-tabs li{margin:0;padding:0;display:block;position:relative}#social-icons-group-data ul.si-tabs li a,.social-icons ul.si-tabs li a{margin:0;padding:10px;display:block;box-shadow:none;text-decoration:none;line-height:20px!important;border-bottom:1px solid #eee}#social-icons-group-data ul.si-tabs li a::before,.social-icons ul.si-tabs li a::before{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none}#social-icons-group-data ul.si-tabs li.general_options a::before,.social-icons ul.si-tabs li.general_options a::before{content:'\f107'}#social-icons-group-data ul.si-tabs li.linked_icons_options a::before,.social-icons ul.si-tabs li.linked_icons_options a::before{content:'\f103'}#social-icons-group-data ul.si-tabs li.active a,.social-icons ul.si-tabs li.active a{color:#555;position:relative;background-color:#eee}#social-icons-group-data .inside{margin:0;padding:0}.panel,.social_icons_options_panel{padding:0;color:#555}.panel .form-field .social-icons-help-tip,.social_icons_options_panel .form-field .social-icons-help-tip{font-size:1.4em}.social_icons_options_panel fieldset.form-field,.social_icons_options_panel p{margin:0 0 9px;font-size:12px;padding:5px 9px;line-height:24px}.social_icons_options_panel fieldset.form-field::after,.social_icons_options_panel p::after{content:'.';display:block;height:0;clear:both;visibility:hidden}.social_icons_options_panel .checkbox{width:auto;margin:3px 0;vertical-align:middle}.social_icons_options_panel .sortable_icons table{width:100%;padding:0!important}.social_icons_options_panel .sortable_icons table tr.no-items{background:#f9f9f9}.social_icons_options_panel .sortable_icons table tr.no-items td p{margin:0}.social_icons_options_panel .sortable_icons table th{padding:7px 0 7px 7px!important}.social_icons_options_panel .sortable_icons table th.sort{width:17px;padding:7px!important}.social_icons_options_panel .sortable_icons table th .social-icons-help-tip{font-size:1.1em;margin-left:0}.social_icons_options_panel .sortable_icons table td{vertical-align:middle!important;padding:4px 0 4px 7px!important;position:relative}.social_icons_options_panel .sortable_icons table td:last-child{padding-right:7px!important}.social_icons_options_panel .sortable_icons table td input.input_text{width:100%;float:none;min-width:0;margin:1px 0}.social_icons_options_panel .sortable_icons table td .choose_icon_button{width:auto;float:right;cursor:pointer}.social_icons_options_panel .sortable_icons table td .delete{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:1.2em}.social-icons-help-tip::after,.social_icons_options_panel .sortable_icons table td .delete::before{font-family:Dashicons;speak:none;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;text-indent:0;text-align:center}.social_icons_options_panel .sortable_icons table td .delete::before{font-weight:400;line-height:1;margin:0;position:absolute;top:0;left:0;width:100%;height:100%;content:"";color:#999}.social_icons_options_panel .sortable_icons table td .delete:hover::before{color:#a00}.social_icons_options_panel .sortable_icons table td.sort{width:17px;cursor:move;text-align:center;background:#f9f9f9;padding-right:7px!important}.social_icons_options_panel .sortable_icons table td.sort.dashicons-plus{font-size:15px;font-family:Dashicons}.social_icons_options_panel .sortable_icons table td.sort::before{text-align:center;line-height:1;color:#999;display:block;width:17px;float:left;height:100%}.social_icons_options_panel .sortable_icons table td.sort:hover::before{color:#333}.social_icons_options_panel{min-height:175px;box-sizing:border-box}.social_icons_options_panel .sortable_icons{padding:0 9px;position:relative;margin:9px 0}.social_icons_options_panel .sortable_icons label{display:none}.social_icons_options_panel p{margin:9px 0}.social_icons_options_panel fieldset.form-field,.social_icons_options_panel p.form-field{padding:5px 20px 5px 162px!important}.social_icons_options_panel label,.social_icons_options_panel legend{float:left;width:150px;padding:0;margin:0 0 0 -150px}.social_icons_options_panel label .req,.social_icons_options_panel legend .req{font-weight:700;font-style:normal;color:#a00}.social_icons_options_panel .description{padding:0;margin:0 0 0 7px;clear:none;display:inline}.social_icons_options_panel .description-block{margin-left:0;display:block}.social_icons_options_panel input,.social_icons_options_panel select,.social_icons_options_panel textarea{margin:0}.social_icons_options_panel textarea{height:3.5em;line-height:1.5em;vertical-align:top}.social_icons_options_panel input[type=text],.social_icons_options_panel input[type=email],.social_icons_options_panel input[type=number],.social_icons_options_panel input[type=password]{width:50%;float:left}.social_icons_options_panel input.button{width:auto;margin-left:8px}.social_icons_options_panel select{float:left}.social_icons_options_panel .short,.social_icons_options_panel input[type=text].short,.social_icons_options_panel input[type=email].short,.social_icons_options_panel input[type=number].short,.social_icons_options_panel input[type=password].short{width:50%}.social_icons_options_panel .sized{width:auto!important;margin-right:6px}.social_icons_options_panel .options_group{border-top:1px solid #fff;border-bottom:1px solid #eee}.social_icons_options_panel .options_group:first-child{border-top:0}.social_icons_options_panel .options_group:last-child{border-bottom:0}.social_icons_options_panel .options_group fieldset{margin:9px 0;font-size:12px;padding:5px 9px;line-height:24px}.social_icons_options_panel .options_group fieldset label{width:auto;float:none}.social_icons_options_panel .options_group fieldset ul{float:left;width:50%;margin:0;padding:0}.social_icons_options_panel .options_group fieldset ul li{margin:0;width:auto}.social_icons_options_panel .options_group fieldset ul li input{width:auto;float:none;margin-right:4px}.social_icons_options_panel .options_group fieldset ul.si-radios label{margin-left:0}.social_icons_options_panel.padded{padding:1em}#social-icons-group-description{padding:3px 8px;font-size:1.7em;line-height:1.42em;height:auto;width:100%;outline:0;margin:10px 0;display:block}#social-icons-group-description::-webkit-input-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-description::-moz-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-description:-ms-input-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-description:-moz-placeholder{line-height:1.42em;color:#bbb}#social-icons-group-data .panel-wrap{background:#fff}#social-icons-group-data .social_icons_options_panel{float:left;width:80%}#social-icons-group-data .social_icons_options_panel .si-radios{display:block;float:left;margin:0}#social-icons-group-data .social_icons_options_panel .si-radios li{display:block;padding:0 0 10px}#social-icons-group-data .social_icons_options_panel .si-radios li input{width:auto}table.wp-list-table .row-actions{color:#999}table.wp-list-table .column-shortcode .social-icons-help-tip{font-size:1.2em;margin-left:5px}table.wp-list-table span.shortcode{margin:2px 0;display:block}table.wp-list-table span.shortcode input[type=text]{margin:0;font-size:12px;padding:4px 8px;background:#fcfcfc}table.wp-list-table span.shortcode input[type=text].regular-text{width:20em}img.help_tip{margin:0 0 0 9px;vertical-align:middle}.postbox img.help_tip{margin-top:0}.postbox .social-icons-help-tip{margin:0 0 0 9px}.tips{cursor:help;text-decoration:none}img.tips{padding:5px 0 0}#tiptip_holder{display:none;position:absolute;top:0;left:0;z-index:9999999}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-left:-6px;border-top-color:#333}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-left:-6px;border-bottom-color:#333}#tiptip_holder.tip_right{padding-left:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-left:-5px;border-right-color:#333}#tiptip_holder.tip_left{padding-right:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-left:-7px;border-left-color:#333}#tiptip_content,.si_error_tip{color:#fff;font-size:.8em;max-width:150px;background:#333;text-align:center;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2)}#tiptip_content code,.si_error_tip code{padding:1px;background:#888}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}.si_error_tip{max-width:20em;line-height:1.8em;position:absolute;white-space:normal;background:#d82223;margin:1.5em 1px 0 -1em;z-index:9999999}.si_error_tip::after{content:'';display:block;border:8px solid #d82223;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-3px;left:50%;margin:-1em 0 0 -3px}.social-icons-help-tip{color:#666;display:inline-block;font-size:1.1em;font-style:normal;height:16px;line-height:16px;position:relative;vertical-align:middle;width:16px}.social-icons-help-tip::after{font-weight:400;line-height:1;margin:0;position:absolute;top:0;left:0;width:100%;height:100%;content:"";cursor:help}@media only screen and (max-width:1280px){.social_icons_options_panel .description{display:block;clear:both;margin-left:0}.social_icons_options_panel .dimensions_field .wrap,.social_icons_options_panel .short,.social_icons_options_panel input[type=text].short,.social_icons_options_panel input[type=email].short,.social_icons_options_panel input[type=number].short,.social_icons_options_panel input[type=password].short{width:80%}}@media only screen and (max-width:900px){#social-icons-group-data ul.group_data_tabs{width:10%}#social-icons-group-data .social_icons_options_panel{width:90%}#social-icons-group-data ul.group_data_tabs li a{position:relative;text-indent:-999px;padding:10px}#social-icons-group-data ul.group_data_tabs li a::before{position:absolute;top:0;right:0;bottom:0;left:0;text-indent:0;text-align:center;line-height:40px;width:100%;height:40px}}@media only screen and (max-width:782px){#social-icons-group-data .checkbox{width:25px}}@media only screen and (max-width:500px){.social_icons_options_panel label,.social_icons_options_panel legend{float:none;width:auto;display:block;margin:0}.social_icons_options_panel fieldset.form-field,.social_icons_options_panel p.form-field{padding:5px 20px!important}}
|
assets/css/social-icons.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
[class*=socicon-]::before,[class^=socicon-]::before,[data-icon]::before{font-family:socicon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;-moz-osx-font-smoothing:grayscale}.socicon,[data-icon]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon-mixcloud,.socicon-modelmayhem{color:#000;background-color:#000}@font-face{font-family:socicon;src:url(../fonts/socicon.eot);src:url(../fonts/socicon.eot?#iefix) format("embedded-opentype"),url(../fonts/socicon.woff) format("woff"),url(../fonts/socicon.ttf) format("truetype"),url(../fonts/socicon.svg#socicon) format("svg");font-weight:400;font-style:normal}[data-icon]::before{content:attr(data-icon)}[class*=socicon-]::before,[class^=socicon-]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon{position:relative;top:3px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;font-size:1.2em}.socicon-modelmayhem::before{content:'\e000'}.socicon-mixcloud::before{content:'\e001'}.socicon-drupal{color:#00598e;background-color:#00598e}.socicon-drupal::before{content:'\e002'}.socicon-swarm{color:#fc9d3c;background-color:#fc9d3c}.socicon-swarm::before{content:'\e003'}.socicon-istock{color:#000;background-color:#000}.socicon-istock::before{content:'\e004'}.socicon-yammer{color:#1175c4;background-color:#1175c4}.socicon-yammer::before{content:'\e005'}.socicon-ello{color:#000;background-color:#000}.socicon-ello::before{content:'\e006'}.socicon-stackoverflow{color:#fd9827;background-color:#fd9827}.socicon-stackoverflow::before{content:'\e007'}.socicon-persona{color:#e6753d;background-color:#e6753d}.socicon-persona::before{content:'\e008'}.socicon-triplej{color:#e53531;background-color:#e53531}.socicon-triplej::before{content:'\e009'}.socicon-houzz{color:#7cc04b;background-color:#7cc04b}.socicon-houzz::before{content:'\e00a'}.socicon-rss{color:#f26109;background-color:#f26109}.socicon-rss::before{content:'\e00b'}.socicon-paypal{color:#009cde;background-color:#009cde}.socicon-paypal::before{content:'\e00c'}.socicon-odnoklassniki{color:#f48420;background-color:#f48420}.socicon-odnoklassniki::before{content:'\e00d'}.socicon-airbnb{color:#ff5a5f;background-color:#ff5a5f}.socicon-airbnb::before{content:'\e00e'}.socicon-periscope{color:#3aa4c6;background-color:#3aa4c6}.socicon-periscope::before{content:'\e00f'}.socicon-outlook{color:#0072c6;background-color:#0072c6}.socicon-outlook::before{content:'\e010'}.socicon-coderwall{color:#3e8dcc;background-color:#3e8dcc}.socicon-coderwall::before{content:'\e011'}.socicon-tripadvisor{color:#4b7e37;background-color:#4b7e37}.socicon-tripadvisor::before{content:'\e012'}.socicon-appnet{color:#494949;background-color:#494949}.socicon-appnet::before{content:'\e013'}.socicon-goodreads{color:#463020;background-color:#463020}.socicon-goodreads::before{content:'\e014'}.socicon-tripit{color:#1982c3;background-color:#1982c3}.socicon-tripit::before{content:'\e015'}.socicon-lanyrd{color:#3c80c9;background-color:#3c80c9}.socicon-lanyrd::before{content:'\e016'}.socicon-slideshare{color:#4ba3a6;background-color:#4ba3a6}.socicon-slideshare::before{content:'\e017'}.socicon-buffer{color:#000;background-color:#000}.socicon-buffer::before{content:'\e018'}.socicon-disqus{color:#2e9fff;background-color:#2e9fff}.socicon-disqus::before{content:'\e019'}.socicon-vkontakte{color:#5a7fa6;background-color:#5a7fa6}.socicon-vkontakte::before{content:'\e01a'}.socicon-whatsapp{color:#20b038;background-color:#20b038}.socicon-whatsapp::before{content:'\e01b'}.socicon-patreon{color:#e44727;background-color:#e44727}.socicon-patreon::before{content:'\e01c'}.socicon-storehouse{color:#25b0e6;background-color:#25b0e6}.socicon-storehouse::before{content:'\e01d'}.socicon-pocket{color:#ed4055;background-color:#ed4055}.socicon-pocket::before{content:'\e01e'}.socicon-mail{color:#000;background-color:#000}.socicon-mail::before{content:'\e01f'}.socicon-blogger{color:#ec661c;background-color:#ec661c}.socicon-blogger::before{content:'\e020'}.socicon-technorati{color:#5cb030;background-color:#5cb030}.socicon-technorati::before{content:'\e021'}.socicon-reddit{color:#e74a1e;background-color:#e74a1e}.socicon-reddit::before{content:'\e022'}.socicon-dribbble{color:#e84d88;background-color:#e84d88}.socicon-dribbble::before{content:'\e023'}.socicon-stumbleupon{color:#e64011;background-color:#e64011}.socicon-stumbleupon::before{content:'\e024'}.socicon-digg{color:#1d1d1b;background-color:#1d1d1b}.socicon-digg::before{content:'\e025'}.socicon-envato{color:#597c3a;background-color:#597c3a}.socicon-envato::before{content:'\e026'}.socicon-behance{color:#000;background-color:#000}.socicon-behance::before{content:'\e027'}.socicon-delicious{color:#020202;background-color:#020202}.socicon-delicious::before{content:'\e028'}.socicon-deviantart{color:#c5d200;background-color:#c5d200}.socicon-deviantart::before{content:'\e029'}.socicon-forrst{color:#5b9a68;background-color:#5b9a68}.socicon-forrst::before{content:'\e02a'}.socicon-play{color:#000;background-color:#000}.socicon-play::before{content:'\e02b'}.socicon-zerply{color:#9dbc7a;background-color:#9dbc7a}.socicon-zerply::before{content:'\e02c'}.socicon-wikipedia{color:#000;background-color:#000}.socicon-wikipedia::before{content:'\e02d'}.socicon-apple{color:#b9bfc1;background-color:#b9bfc1}.socicon-apple::before{content:'\e02e'}.socicon-flattr{color:#f67c1a;background-color:#f67c1a}.socicon-flattr::before{content:'\e02f'}.socicon-github{color:#221e1b;background-color:#221e1b}.socicon-github::before{content:'\e030'}.socicon-renren{color:#2266b0;background-color:#2266b0}.socicon-renren::before{content:'\e031'}.socicon-friendfeed{color:#2f72c4;background-color:#2f72c4}.socicon-friendfeed::before{content:'\e032'}.socicon-newsvine{color:#075b2f;background-color:#075b2f}.socicon-newsvine::before{content:'\e033'}.socicon-identica{color:#000;background-color:#000}.socicon-identica::before{content:'\e034'}.socicon-bebo{color:#ef1011;background-color:#ef1011}.socicon-bebo::before{content:'\e035'}.socicon-zynga{color:#dc0606;background-color:#dc0606}.socicon-zynga::before{content:'\e036'}.socicon-steam{color:#171a21;background-color:#171a21}.socicon-steam::before{content:'\e037'}.socicon-xbox{color:#92c83e;background-color:#92c83e}.socicon-xbox::before{content:'\e038'}.socicon-windows{color:#00bdf6;background-color:#00bdf6}.socicon-windows::before{content:'\e039'}.socicon-qq{color:#4297d3;background-color:#4297d3}.socicon-qq::before{content:'\e03a'}.socicon-douban{color:#3ca353;background-color:#3ca353}.socicon-douban::before{content:'\e03b'}.socicon-meetup{color:#e2373c;background-color:#e2373c}.socicon-meetup::before{content:'\e03c'}.socicon-playstation{color:#000;background-color:#000}.socicon-playstation::before{content:'\e03d'}.socicon-android{color:#8ec047;background-color:#8ec047}.socicon-android::before{content:'\e03e'}.socicon-snapchat{color:#fffa37;background-color:#fffa37}.socicon-snapchat::before{content:'\e03f'}.socicon-twitter{color:#4da7de;background-color:#4da7de}.socicon-twitter::before{content:'\e040'}.socicon-facebook{color:#3e5b98;background-color:#3e5b98}.socicon-facebook::before{content:'\e041'}.socicon-googleplus{color:#dd4b39;background-color:#dd4b39}.socicon-googleplus::before{content:'\e042'}.socicon-pinterest{color:#c92619;background-color:#c92619}.socicon-pinterest::before{content:'\e043'}.socicon-foursquare{color:#f94877;background-color:#f94877}.socicon-foursquare::before{content:'\e044'}.socicon-yahoo{color:#6e2a85;background-color:#6e2a85}.socicon-yahoo::before{content:'\e045'}.socicon-skype{color:#28abe3;background-color:#28abe3}.socicon-skype::before{content:'\e046'}.socicon-yelp{color:#c83218;background-color:#c83218}.socicon-yelp::before{content:'\e047'}.socicon-feedburner{color:#fc0;background-color:#fc0}.socicon-feedburner::before{content:'\e048'}.socicon-linkedin{color:#3371b7;background-color:#3371b7}.socicon-linkedin::before{content:'\e049'}.socicon-viadeo{color:#e4a000;background-color:#e4a000}.socicon-viadeo::before{content:'\e04a'}.socicon-xing{color:#005a60;background-color:#005a60}.socicon-xing::before{content:'\e04b'}.socicon-myspace{color:#323232;background-color:#323232}.socicon-myspace::before{content:'\e04c'}.socicon-soundcloud{color:#fe3801;background-color:#fe3801}.socicon-soundcloud::before{content:'\e04d'}.socicon-spotify{color:#7bb342;background-color:#7bb342}.socicon-spotify::before{content:'\e04e'}.socicon-grooveshark{color:#000;background-color:#000}.socicon-grooveshark::before{content:'\e04f'}.socicon-lastfm{color:#d41316;background-color:#d41316}.socicon-lastfm::before{content:'\e050'}.socicon-youtube{color:#e02a20;background-color:#e02a20}.socicon-youtube::before{content:'\e051'}.socicon-vimeo{color:#51b5e7;background-color:#51b5e7}.socicon-vimeo::before{content:'\e052'}.socicon-dailymotion{color:#004e72;background-color:#004e72}.socicon-dailymotion::before{content:'\e053'}.socicon-vine{color:#00b389;background-color:#00b389}.socicon-vine::before{content:'\e054'}.socicon-flickr{color:#1e1e1b;background-color:#1e1e1b}.socicon-flickr::before{content:'\e055'}.socicon-500px{color:#58a9de;background-color:#58a9de}.socicon-500px::before{content:'\e056'}.socicon-instagram{color:#9c7c6e;background-color:#9c7c6e}.socicon-instagram::before{content:'\e057'}.socicon-wordpress{color:#464646;background-color:#464646}.socicon-wordpress::before{content:'\e058'}.socicon-tumblr{color:#45556c;background-color:#45556c}.socicon-tumblr::before{content:'\e059'}.socicon-twitch{color:#6441a5;background-color:#6441a5}.socicon-twitch::before{content:'\e05a'}.socicon-8tracks{color:#122c4b;background-color:#122c4b}.socicon-8tracks::before{content:'\e05b'}.socicon-amazon{color:#f90;background-color:#f90}.socicon-amazon::before{content:'\e05c'}.socicon-icq{color:#7ebd00;background-color:#7ebd00}.socicon-icq::before{content:'\e05d'}.socicon-smugmug{color:#acfd32;background-color:#acfd32}.socicon-smugmug::before{content:'\e05e'}.socicon-ravelry{color:#b6014c;background-color:#b6014c}.socicon-ravelry::before{content:'\e05f'}.socicon-weibo{color:#e31c34;background-color:#e31c34}.socicon-weibo::before{content:'\e060'}.socicon-baidu{color:#2629d9;background-color:#2629d9}.socicon-baidu::before{content:'\e061'}.socicon-angellist{color:#000;background-color:#000}.socicon-angellist::before{content:'\e062'}.socicon-ebay{color:#333;background-color:#333}.socicon-ebay::before{content:'\e063'}.socicon-imdb{color:#e8ba00;background-color:#e8ba00}.socicon-imdb::before{content:'\e064'}.socicon-stayfriends{color:#f08a1c;background-color:#f08a1c}.socicon-stayfriends::before{content:'\e065'}.socicon-residentadvisor{color:#b3be1b;background-color:#b3be1b}.socicon-residentadvisor::before{content:'\e066'}.socicon-google{color:#4285f4;background-color:#4285f4}.socicon-google::before{content:'\e067'}.socicon-yandex{color:red;background-color:red}.socicon-yandex::before{content:'\e068'}.socicon-sharethis{color:#01bf01;background-color:#01bf01}.socicon-sharethis::before{content:'\e069'}.socicon-bandcamp{color:#619aa9;background-color:#619aa9}.socicon-bandcamp::before{content:'\e06a'}.socicon-itunes{color:#ff5e51;background-color:#ff5e51}.socicon-itunes::before{content:'\e06b'}.socicon-deezer{color:#32323d;background-color:#32323d}.socicon-deezer::before{content:'\e06c'}.socicon-medium{color:#000;background-color:#000}.socicon-medium::before{content:'\e06d'}.socicon-telegram{color:#08c;background-color:#08c}.socicon-telegram::before{content:'\e06e'}.socicon-openid{color:#f78c40;background-color:#f78c40}.socicon-openid::before{content:'\e06f'}.socicon-amplement{color:#0996c3;background-color:#0996c3}.socicon-amplement::before{content:'\e070'}.socicon-viber{color:#7b519d;background-color:#7b519d}.socicon-quora,.socicon-zomato{color:#cb202d;background-color:#cb202d}.socicon-viber::before{content:'\e071'}.socicon-zomato::before{content:'\e072'}.socicon-quora::before{content:'\e073'}.socicon-draugiem{color:#ffa32b;background-color:#ffa32b}.socicon-draugiem::before{content:'\e074'}.socicon-endomodo{color:#86ad00;background-color:#86ad00}.socicon-endomodo::before{content:'\e075'}.socicon-filmweb{color:#ffc404;background-color:#ffc404}.socicon-filmweb::before{content:'\e076'}.socicon-stackexchange{color:#2f2f2f;background-color:#2f2f2f}.socicon-stackexchange::before{content:'\e077'}.socicon-wykop{color:#328efe;background-color:#328efe}.socicon-wykop::before{content:'\e078'}.socicon-teamspeak{color:#465674;background-color:#465674}.socicon-teamspeak::before{content:'\e079'}.socicon-teamviewer{color:#168ef4;background-color:#168ef4}.socicon-teamviewer::before{content:'\e07a'}.socicon-ventrilo{color:#77808a;background-color:#77808a}.socicon-ventrilo::before{content:'\e07b'}.socicon-younow{color:#61c03e;background-color:#61c03e}.socicon-younow::before{content:'\e07c'}.socicon-raidcall{color:#073558;background-color:#073558}.socicon-raidcall::before{content:'\e07d'}.socicon-mumble{color:#5ab5d1;background-color:#5ab5d1}.socicon-mumble::before{content:'\e07e'}.socicon-bebee{color:#f28f16;background-color:#f28f16}.socicon-bebee::before{content:'\e07f'}.socicon-hitbox{color:#9c0;background-color:#9c0}.socicon-hitbox::before{content:'\e080'}.socicon-reverbnation{color:#000;background-color:#000}.socicon-reverbnation::before{content:'\e081'}.socicon-formulr{color:#ff5a60;background-color:#ff5a60}.socicon-formulr::before{content:'\e082'}.socicon-battlenet{color:#0096cd;background-color:#0096cd}.socicon-battlenet::before{content:'\e083'}.socicon-chrome{color:#757575;background-color:#757575}.socicon-chrome::before{content:'\e084'}.socicon-diablo{color:#8b1209;background-color:#8b1209}.socicon-diablo::before{content:'\e085'}.socicon-discord{color:#7289da;background-color:#7289da}.socicon-discord::before{content:'\e086'}.socicon-issuu{color:#f26f61;background-color:#f26f61}.socicon-issuu::before{content:'\e087'}.socicon-macos{color:#000;background-color:#000}.socicon-macos::before{content:'\e088'}.socicon-firefox{color:#484848;background-color:#484848}.socicon-firefox::before{content:'\e089'}.socicon-heroes{color:#2397f7;background-color:#2397f7}.socicon-heroes::before{content:'\e08a'}.socicon-hearthstone{color:#ec9313;background-color:#ec9313}.socicon-hearthstone::before{content:'\e08b'}.socicon-overwatch{color:#9e9e9e;background-color:#9e9e9e}.socicon-overwatch::before{content:'\e08c'}.socicon-opera{color:#ff1b2d;background-color:#ff1b2d}.socicon-opera::before{content:'\e08d'}.socicon-warcraft{color:#1eb10a;background-color:#1eb10a}.socicon-warcraft::before{content:'\e08e'}.socicon-starcraft{color:#002250;background-color:#002250}.socicon-starcraft::before{content:'\e08f'}.socicon-keybase{color:#ff7100;background-color:#ff7100}.socicon-keybase::before{content:'\e090'}.socicon-alliance{color:#144587;background-color:#144587}.socicon-alliance::before{content:'\e091'}.socicon-livejournal{color:#09c;background-color:#09c}.socicon-livejournal::before{content:'\e092'}.socicon-googlephotos{color:#212121;background-color:#212121}.socicon-googlephotos::before{content:'\e093'}.socicon-horde{color:#84121c;background-color:#84121c}.socicon-horde::before{content:'\e094'}.socicon-etsy{color:#f56400;background-color:#f56400}.socicon-etsy::before{content:'\e095'}.socicon-zapier{color:#ff4a00;background-color:#ff4a00}.socicon-zapier::before{content:'\e096'}.socicon-google-scholar{color:#4285f4;background-color:#4285f4}.socicon-google-scholar::before{content:'\e097'}.socicon-researchgate{color:#0cb;background-color:#0cb}.socicon-researchgate::before{content:'\e098'}.social-icons-lists .socicon{padding:10px;font-size:16px}.social-icons-lists li.social-icons-list-item{margin:4px;padding:0!important;display:inline-block;border:none!important;list-style:none!important}.social-icons-lists li.social-icons-list-item a.social-icon{text-decoration:none}.social-icons-lists li.social-icons-list-item a.social-icon:active,.social-icons-lists li.social-icons-list-item a.social-icon:focus{outline:0}.social-icons-lists li.social-icons-list-item a.social-icon:hover .socicon{opacity:.8}.social-icons-lists li.social-icons-list-item a.social-icon span.social-icons-list-label{margin-left:4px}.social-icons-lists li.social-icons-list-item::after,.social-icons-lists li.social-icons-list-item::before{visibility:hidden}.social-icons-lists.show-icons-label{list-style:outside}.social-icons-lists.social-icons-greyscale .socicon{color:#fff;background-color:#555}.social-icons-lists.icons-background-rounded .socicon{border-radius:100%}.social-icons-lists.icons-background-rounded .socicon,.social-icons-lists.icons-background-square .socicon{color:#fff}.social-icons-lists.icons-background-rounded.centre,.social-icons-lists.icons-background-square.centre{padding:0;text-align:center}.social-icons-lists.icons-background-none .socicon{padding:0;background:0 0}.social-icons-lists.icons-background-none.social-icons-greyscale .socicon{color:#555}.widget .social-icons-lists.show-icons-label li.social-icons-list-item{display:block}.widget .social-icons-lists.show-icons-label.icons-background-rounded.centre,.widget .social-icons-lists.show-icons-label.icons-background-square.centre{text-align:left}
|
1 |
+
[class*=socicon-]::before,[class^=socicon-]::before,[data-icon]::before{font-family:socicon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;-moz-osx-font-smoothing:grayscale}.socicon,[data-icon]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon-mixcloud,.socicon-modelmayhem{color:#000;background-color:#000}@font-face{font-family:socicon;src:url(../fonts/socicon.eot);src:url(../fonts/socicon.eot?#iefix) format("embedded-opentype"),url(../fonts/socicon.woff) format("woff"),url(../fonts/socicon.ttf) format("truetype"),url(../fonts/socicon.svg#socicon) format("svg");font-weight:400;font-style:normal}[data-icon]::before{content:attr(data-icon)}[class*=socicon-]::before,[class^=socicon-]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon{position:relative;top:3px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;font-size:1.2em}.socicon-modelmayhem::before{content:'\e000'}.socicon-mixcloud::before{content:'\e001'}.socicon-drupal{color:#00598e;background-color:#00598e}.socicon-drupal::before{content:'\e002'}.socicon-swarm{color:#fc9d3c;background-color:#fc9d3c}.socicon-swarm::before{content:'\e003'}.socicon-istock{color:#000;background-color:#000}.socicon-istock::before{content:'\e004'}.socicon-yammer{color:#1175c4;background-color:#1175c4}.socicon-yammer::before{content:'\e005'}.socicon-ello{color:#000;background-color:#000}.socicon-ello::before{content:'\e006'}.socicon-stackoverflow{color:#fd9827;background-color:#fd9827}.socicon-stackoverflow::before{content:'\e007'}.socicon-persona{color:#e6753d;background-color:#e6753d}.socicon-persona::before{content:'\e008'}.socicon-triplej{color:#e53531;background-color:#e53531}.socicon-triplej::before{content:'\e009'}.socicon-houzz{color:#7cc04b;background-color:#7cc04b}.socicon-houzz::before{content:'\e00a'}.socicon-rss{color:#f26109;background-color:#f26109}.socicon-rss::before{content:'\e00b'}.socicon-paypal{color:#009cde;background-color:#009cde}.socicon-paypal::before{content:'\e00c'}.socicon-odnoklassniki{color:#f48420;background-color:#f48420}.socicon-odnoklassniki::before{content:'\e00d'}.socicon-airbnb{color:#ff5a5f;background-color:#ff5a5f}.socicon-airbnb::before{content:'\e00e'}.socicon-periscope{color:#3aa4c6;background-color:#3aa4c6}.socicon-periscope::before{content:'\e00f'}.socicon-outlook{color:#0072c6;background-color:#0072c6}.socicon-outlook::before{content:'\e010'}.socicon-coderwall{color:#3e8dcc;background-color:#3e8dcc}.socicon-coderwall::before{content:'\e011'}.socicon-tripadvisor{color:#4b7e37;background-color:#4b7e37}.socicon-tripadvisor::before{content:'\e012'}.socicon-appnet{color:#494949;background-color:#494949}.socicon-appnet::before{content:'\e013'}.socicon-goodreads{color:#463020;background-color:#463020}.socicon-goodreads::before{content:'\e014'}.socicon-tripit{color:#1982c3;background-color:#1982c3}.socicon-tripit::before{content:'\e015'}.socicon-lanyrd{color:#3c80c9;background-color:#3c80c9}.socicon-lanyrd::before{content:'\e016'}.socicon-slideshare{color:#4ba3a6;background-color:#4ba3a6}.socicon-slideshare::before{content:'\e017'}.socicon-buffer{color:#000;background-color:#000}.socicon-buffer::before{content:'\e018'}.socicon-disqus{color:#2e9fff;background-color:#2e9fff}.socicon-disqus::before{content:'\e019'}.socicon-vkontakte{color:#5a7fa6;background-color:#5a7fa6}.socicon-vkontakte::before{content:'\e01a'}.socicon-whatsapp{color:#20b038;background-color:#20b038}.socicon-whatsapp::before{content:'\e01b'}.socicon-patreon{color:#e44727;background-color:#e44727}.socicon-patreon::before{content:'\e01c'}.socicon-storehouse{color:#25b0e6;background-color:#25b0e6}.socicon-storehouse::before{content:'\e01d'}.socicon-pocket{color:#ed4055;background-color:#ed4055}.socicon-pocket::before{content:'\e01e'}.socicon-mail{color:#000;background-color:#000}.socicon-mail::before{content:'\e01f'}.socicon-blogger{color:#ec661c;background-color:#ec661c}.socicon-blogger::before{content:'\e020'}.socicon-technorati{color:#5cb030;background-color:#5cb030}.socicon-technorati::before{content:'\e021'}.socicon-reddit{color:#e74a1e;background-color:#e74a1e}.socicon-reddit::before{content:'\e022'}.socicon-dribbble{color:#e84d88;background-color:#e84d88}.socicon-dribbble::before{content:'\e023'}.socicon-stumbleupon{color:#e64011;background-color:#e64011}.socicon-stumbleupon::before{content:'\e024'}.socicon-digg{color:#1d1d1b;background-color:#1d1d1b}.socicon-digg::before{content:'\e025'}.socicon-envato{color:#597c3a;background-color:#597c3a}.socicon-envato::before{content:'\e026'}.socicon-behance{color:#000;background-color:#000}.socicon-behance::before{content:'\e027'}.socicon-delicious{color:#020202;background-color:#020202}.socicon-delicious::before{content:'\e028'}.socicon-deviantart{color:#c5d200;background-color:#c5d200}.socicon-deviantart::before{content:'\e029'}.socicon-forrst{color:#5b9a68;background-color:#5b9a68}.socicon-forrst::before{content:'\e02a'}.socicon-play{color:#000;background-color:#000}.socicon-play::before{content:'\e02b'}.socicon-zerply{color:#9dbc7a;background-color:#9dbc7a}.socicon-zerply::before{content:'\e02c'}.socicon-wikipedia{color:#000;background-color:#000}.socicon-wikipedia::before{content:'\e02d'}.socicon-apple{color:#b9bfc1;background-color:#b9bfc1}.socicon-apple::before{content:'\e02e'}.socicon-flattr{color:#f67c1a;background-color:#f67c1a}.socicon-flattr::before{content:'\e02f'}.socicon-github{color:#221e1b;background-color:#221e1b}.socicon-github::before{content:'\e030'}.socicon-renren{color:#2266b0;background-color:#2266b0}.socicon-renren::before{content:'\e031'}.socicon-friendfeed{color:#2f72c4;background-color:#2f72c4}.socicon-friendfeed::before{content:'\e032'}.socicon-newsvine{color:#075b2f;background-color:#075b2f}.socicon-newsvine::before{content:'\e033'}.socicon-identica{color:#000;background-color:#000}.socicon-identica::before{content:'\e034'}.socicon-bebo{color:#ef1011;background-color:#ef1011}.socicon-bebo::before{content:'\e035'}.socicon-zynga{color:#dc0606;background-color:#dc0606}.socicon-zynga::before{content:'\e036'}.socicon-steam{color:#171a21;background-color:#171a21}.socicon-steam::before{content:'\e037'}.socicon-xbox{color:#92c83e;background-color:#92c83e}.socicon-xbox::before{content:'\e038'}.socicon-windows{color:#00bdf6;background-color:#00bdf6}.socicon-windows::before{content:'\e039'}.socicon-qq{color:#4297d3;background-color:#4297d3}.socicon-qq::before{content:'\e03a'}.socicon-douban{color:#3ca353;background-color:#3ca353}.socicon-douban::before{content:'\e03b'}.socicon-meetup{color:#e2373c;background-color:#e2373c}.socicon-meetup::before{content:'\e03c'}.socicon-playstation{color:#000;background-color:#000}.socicon-playstation::before{content:'\e03d'}.socicon-android{color:#8ec047;background-color:#8ec047}.socicon-android::before{content:'\e03e'}.socicon-snapchat{color:#fffa37;background-color:#fffa37}.socicon-snapchat::before{content:'\e03f'}.socicon-twitter{color:#4da7de;background-color:#4da7de}.socicon-twitter::before{content:'\e040'}.socicon-facebook{color:#3e5b98;background-color:#3e5b98}.socicon-facebook::before{content:'\e041'}.socicon-googleplus{color:#dd4b39;background-color:#dd4b39}.socicon-googleplus::before{content:'\e042'}.socicon-pinterest{color:#c92619;background-color:#c92619}.socicon-pinterest::before{content:'\e043'}.socicon-foursquare{color:#f94877;background-color:#f94877}.socicon-foursquare::before{content:'\e044'}.socicon-yahoo{color:#6e2a85;background-color:#6e2a85}.socicon-yahoo::before{content:'\e045'}.socicon-skype{color:#28abe3;background-color:#28abe3}.socicon-skype::before{content:'\e046'}.socicon-yelp{color:#c83218;background-color:#c83218}.socicon-yelp::before{content:'\e047'}.socicon-feedburner{color:#fc0;background-color:#fc0}.socicon-feedburner::before{content:'\e048'}.socicon-linkedin{color:#3371b7;background-color:#3371b7}.socicon-linkedin::before{content:'\e049'}.socicon-viadeo{color:#e4a000;background-color:#e4a000}.socicon-viadeo::before{content:'\e04a'}.socicon-xing{color:#005a60;background-color:#005a60}.socicon-xing::before{content:'\e04b'}.socicon-myspace{color:#323232;background-color:#323232}.socicon-myspace::before{content:'\e04c'}.socicon-soundcloud{color:#fe3801;background-color:#fe3801}.socicon-soundcloud::before{content:'\e04d'}.socicon-spotify{color:#7bb342;background-color:#7bb342}.socicon-spotify::before{content:'\e04e'}.socicon-grooveshark{color:#000;background-color:#000}.socicon-grooveshark::before{content:'\e04f'}.socicon-lastfm{color:#d41316;background-color:#d41316}.socicon-lastfm::before{content:'\e050'}.socicon-youtube{color:#e02a20;background-color:#e02a20}.socicon-youtube::before{content:'\e051'}.socicon-vimeo{color:#51b5e7;background-color:#51b5e7}.socicon-vimeo::before{content:'\e052'}.socicon-dailymotion{color:#004e72;background-color:#004e72}.socicon-dailymotion::before{content:'\e053'}.socicon-vine{color:#00b389;background-color:#00b389}.socicon-vine::before{content:'\e054'}.socicon-flickr{color:#1e1e1b;background-color:#1e1e1b}.socicon-flickr::before{content:'\e055'}.socicon-500px{color:#58a9de;background-color:#58a9de}.socicon-500px::before{content:'\e056'}.socicon-instagram{color:#9c7c6e;background-color:#9c7c6e}.socicon-instagram::before{content:'\e057'}.socicon-wordpress{color:#464646;background-color:#464646}.socicon-wordpress::before{content:'\e058'}.socicon-tumblr{color:#45556c;background-color:#45556c}.socicon-tumblr::before{content:'\e059'}.socicon-twitch{color:#6441a5;background-color:#6441a5}.socicon-twitch::before{content:'\e05a'}.socicon-8tracks{color:#122c4b;background-color:#122c4b}.socicon-8tracks::before{content:'\e05b'}.socicon-amazon{color:#f90;background-color:#f90}.socicon-amazon::before{content:'\e05c'}.socicon-icq{color:#7ebd00;background-color:#7ebd00}.socicon-icq::before{content:'\e05d'}.socicon-smugmug{color:#acfd32;background-color:#acfd32}.socicon-smugmug::before{content:'\e05e'}.socicon-ravelry{color:#b6014c;background-color:#b6014c}.socicon-ravelry::before{content:'\e05f'}.socicon-weibo{color:#e31c34;background-color:#e31c34}.socicon-weibo::before{content:'\e060'}.socicon-baidu{color:#2629d9;background-color:#2629d9}.socicon-baidu::before{content:'\e061'}.socicon-angellist{color:#000;background-color:#000}.socicon-angellist::before{content:'\e062'}.socicon-ebay{color:#333;background-color:#333}.socicon-ebay::before{content:'\e063'}.socicon-imdb{color:#e8ba00;background-color:#e8ba00}.socicon-imdb::before{content:'\e064'}.socicon-stayfriends{color:#f08a1c;background-color:#f08a1c}.socicon-stayfriends::before{content:'\e065'}.socicon-residentadvisor{color:#b3be1b;background-color:#b3be1b}.socicon-residentadvisor::before{content:'\e066'}.socicon-google{color:#4285f4;background-color:#4285f4}.socicon-google::before{content:'\e067'}.socicon-yandex{color:red;background-color:red}.socicon-yandex::before{content:'\e068'}.socicon-sharethis{color:#01bf01;background-color:#01bf01}.socicon-sharethis::before{content:'\e069'}.socicon-bandcamp{color:#619aa9;background-color:#619aa9}.socicon-bandcamp::before{content:'\e06a'}.socicon-itunes{color:#ff5e51;background-color:#ff5e51}.socicon-itunes::before{content:'\e06b'}.socicon-deezer{color:#32323d;background-color:#32323d}.socicon-deezer::before{content:'\e06c'}.socicon-medium{color:#000;background-color:#000}.socicon-medium::before{content:'\e06d'}.socicon-telegram{color:#08c;background-color:#08c}.socicon-telegram::before{content:'\e06e'}.socicon-openid{color:#f78c40;background-color:#f78c40}.socicon-openid::before{content:'\e06f'}.socicon-amplement{color:#0996c3;background-color:#0996c3}.socicon-amplement::before{content:'\e070'}.socicon-viber{color:#7b519d;background-color:#7b519d}.socicon-quora,.socicon-zomato{color:#cb202d;background-color:#cb202d}.socicon-viber::before{content:'\e071'}.socicon-zomato::before{content:'\e072'}.socicon-quora::before{content:'\e073'}.socicon-draugiem{color:#ffa32b;background-color:#ffa32b}.socicon-draugiem::before{content:'\e074'}.socicon-endomodo{color:#86ad00;background-color:#86ad00}.socicon-endomodo::before{content:'\e075'}.socicon-filmweb{color:#ffc404;background-color:#ffc404}.socicon-filmweb::before{content:'\e076'}.socicon-stackexchange{color:#2f2f2f;background-color:#2f2f2f}.socicon-stackexchange::before{content:'\e077'}.socicon-wykop{color:#328efe;background-color:#328efe}.socicon-wykop::before{content:'\e078'}.socicon-teamspeak{color:#465674;background-color:#465674}.socicon-teamspeak::before{content:'\e079'}.socicon-teamviewer{color:#168ef4;background-color:#168ef4}.socicon-teamviewer::before{content:'\e07a'}.socicon-ventrilo{color:#77808a;background-color:#77808a}.socicon-ventrilo::before{content:'\e07b'}.socicon-younow{color:#61c03e;background-color:#61c03e}.socicon-younow::before{content:'\e07c'}.socicon-raidcall{color:#073558;background-color:#073558}.socicon-raidcall::before{content:'\e07d'}.socicon-mumble{color:#5ab5d1;background-color:#5ab5d1}.socicon-mumble::before{content:'\e07e'}.socicon-bebee{color:#f28f16;background-color:#f28f16}.socicon-bebee::before{content:'\e07f'}.socicon-hitbox{color:#9c0;background-color:#9c0}.socicon-hitbox::before{content:'\e080'}.socicon-reverbnation{color:#000;background-color:#000}.socicon-reverbnation::before{content:'\e081'}.socicon-formulr{color:#ff5a60;background-color:#ff5a60}.socicon-formulr::before{content:'\e082'}.socicon-battlenet{color:#0096cd;background-color:#0096cd}.socicon-battlenet::before{content:'\e083'}.socicon-chrome{color:#757575;background-color:#757575}.socicon-chrome::before{content:'\e084'}.socicon-diablo{color:#8b1209;background-color:#8b1209}.socicon-diablo::before{content:'\e085'}.socicon-discord{color:#7289da;background-color:#7289da}.socicon-discord::before{content:'\e086'}.socicon-issuu{color:#f26f61;background-color:#f26f61}.socicon-issuu::before{content:'\e087'}.socicon-macos{color:#000;background-color:#000}.socicon-macos::before{content:'\e088'}.socicon-firefox{color:#484848;background-color:#484848}.socicon-firefox::before{content:'\e089'}.socicon-heroes{color:#2397f7;background-color:#2397f7}.socicon-heroes::before{content:'\e08a'}.socicon-hearthstone{color:#ec9313;background-color:#ec9313}.socicon-hearthstone::before{content:'\e08b'}.socicon-overwatch{color:#9e9e9e;background-color:#9e9e9e}.socicon-overwatch::before{content:'\e08c'}.socicon-opera{color:#ff1b2d;background-color:#ff1b2d}.socicon-opera::before{content:'\e08d'}.socicon-warcraft{color:#1eb10a;background-color:#1eb10a}.socicon-warcraft::before{content:'\e08e'}.socicon-starcraft{color:#002250;background-color:#002250}.socicon-starcraft::before{content:'\e08f'}.socicon-keybase{color:#ff7100;background-color:#ff7100}.socicon-keybase::before{content:'\e090'}.socicon-alliance{color:#144587;background-color:#144587}.socicon-alliance::before{content:'\e091'}.socicon-livejournal{color:#09c;background-color:#09c}.socicon-livejournal::before{content:'\e092'}.socicon-googlephotos{color:#212121;background-color:#212121}.socicon-googlephotos::before{content:'\e093'}.socicon-horde{color:#84121c;background-color:#84121c}.socicon-horde::before{content:'\e094'}.socicon-etsy{color:#f56400;background-color:#f56400}.socicon-etsy::before{content:'\e095'}.socicon-zapier{color:#ff4a00;background-color:#ff4a00}.socicon-zapier::before{content:'\e096'}.socicon-google-scholar{color:#4285f4;background-color:#4285f4}.socicon-google-scholar::before{content:'\e097'}.socicon-researchgate{color:#0cb;background-color:#0cb}.socicon-researchgate::before{content:'\e098'}.socicon-wechat{color:#09b507;background-color:#09b507}.socicon-wechat::before{content:'\e099'}.socicon-strava{color:#fc4c02;background-color:#fc4c02}.socicon-strava::before{content:'\e09a'}.socicon-line{color:#00b901;background-color:#00b901}.socicon-line::before{content:'\e09b'}.socicon-lyft{color:#ff00bf;background-color:#ff00bf}.socicon-lyft::before{content:'\e09c'}.socicon-uber{color:#000;background-color:#000}.socicon-uber::before{content:'\e09d'}.socicon-songkick{color:#f80046;background-color:#f80046}.socicon-songkick::before{content:'\e09e'}.socicon-viewbug{color:#2f9fcf;background-color:#2f9fcf}.socicon-viewbug::before{content:'\e09f'}.socicon-googlegroups{color:#4f8ef5;background-color:#4f8ef5}.socicon-googlegroups::before{content:'\e0a0'}.socicon-blizzard{color:#01b2f1;background-color:#01b2f1}.socicon-blizzard::before{content:'\e0a1'}.socicon-beam{color:#536dfe;background-color:#536dfe}.socicon-beam::before{content:'\e0a2'}.socicon-curse{color:#f26522;background-color:#f26522}.socicon-curse::before{content:'\e0a3'}.socicon-player{color:#6e41bd;background-color:#6e41bd}.socicon-player::before{content:'\e0a4'}.socicon-streamjar{color:#503a60;background-color:#503a60}.socicon-streamjar::before{content:'\e0a5'}.socicon-nintendo{color:#f58a33;background-color:#f58a33}.socicon-nintendo::before{content:'\e0a6'}.socicon-hellocoton{color:#d30d66;background-color:#d30d66}.socicon-hellocoton::before{content:'\e0a7'}.social-icons-lists .socicon{padding:10px;font-size:16px;box-sizing:content-box}.social-icons-lists li.social-icons-list-item{margin:4px;padding:0!important;display:inline-block;border:none!important;list-style:none!important}.social-icons-lists li.social-icons-list-item a.social-icon{text-decoration:none}.social-icons-lists li.social-icons-list-item a.social-icon:active,.social-icons-lists li.social-icons-list-item a.social-icon:focus{outline:0}.social-icons-lists li.social-icons-list-item a.social-icon:hover .socicon{opacity:.8}.social-icons-lists li.social-icons-list-item a.social-icon span.social-icons-list-label{margin-left:4px}.social-icons-lists li.social-icons-list-item::after,.social-icons-lists li.social-icons-list-item::before{visibility:hidden}.social-icons-lists.show-icons-label{list-style:outside}.social-icons-lists.social-icons-greyscale .socicon{color:#fff;background-color:#555}.social-icons-lists.icons-background-rounded .socicon{border-radius:100%}.social-icons-lists.icons-background-rounded .socicon,.social-icons-lists.icons-background-square .socicon{color:#fff}.social-icons-lists.icons-background-rounded.centre,.social-icons-lists.icons-background-square.centre{padding:0;text-align:center}.social-icons-lists.icons-background-none .socicon{padding:0;background:0 0}.social-icons-lists.icons-background-none.social-icons-greyscale .socicon{color:#555}.widget .social-icons-lists.show-icons-label li.social-icons-list-item{display:block}.widget .social-icons-lists.show-icons-label.icons-background-rounded.centre,.widget .social-icons-lists.show-icons-label.icons-background-square.centre{text-align:left}
|
assets/css/social-icons.scss
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
/**
|
2 |
* social-icons.scss
|
3 |
-
*
|
4 |
*/
|
5 |
|
6 |
/**
|
@@ -16,6 +16,7 @@
|
|
16 |
.socicon {
|
17 |
padding: 10px;
|
18 |
font-size: 16px;
|
|
|
19 |
}
|
20 |
|
21 |
li.social-icons-list-item {
|
1 |
/**
|
2 |
* social-icons.scss
|
3 |
+
* Governs the general look and feel of Social Icons sections.
|
4 |
*/
|
5 |
|
6 |
/**
|
16 |
.socicon {
|
17 |
padding: 10px;
|
18 |
font-size: 16px;
|
19 |
+
box-sizing: content-box;
|
20 |
}
|
21 |
|
22 |
li.social-icons-list-item {
|
assets/css/widgets.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
[class*=socicon-]::before,[class^=socicon-]::before,[data-icon]::before{font-family:socicon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;-moz-osx-font-smoothing:grayscale}.socicon,[data-icon]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon-mixcloud,.socicon-modelmayhem{color:#000;background-color:#000}@font-face{font-family:socicon;src:url(../fonts/socicon.eot);src:url(../fonts/socicon.eot?#iefix) format("embedded-opentype"),url(../fonts/socicon.woff) format("woff"),url(../fonts/socicon.ttf) format("truetype"),url(../fonts/socicon.svg#socicon) format("svg");font-weight:400;font-style:normal}[data-icon]::before{content:attr(data-icon)}[class*=socicon-]::before,[class^=socicon-]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon{position:relative;top:3px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;font-size:1.2em}.socicon-modelmayhem::before{content:'\e000'}.socicon-mixcloud::before{content:'\e001'}.socicon-drupal{color:#00598e;background-color:#00598e}.socicon-drupal::before{content:'\e002'}.socicon-swarm{color:#fc9d3c;background-color:#fc9d3c}.socicon-swarm::before{content:'\e003'}.socicon-istock{color:#000;background-color:#000}.socicon-istock::before{content:'\e004'}.socicon-yammer{color:#1175c4;background-color:#1175c4}.socicon-yammer::before{content:'\e005'}.socicon-ello{color:#000;background-color:#000}.socicon-ello::before{content:'\e006'}.socicon-stackoverflow{color:#fd9827;background-color:#fd9827}.socicon-stackoverflow::before{content:'\e007'}.socicon-persona{color:#e6753d;background-color:#e6753d}.socicon-persona::before{content:'\e008'}.socicon-triplej{color:#e53531;background-color:#e53531}.socicon-triplej::before{content:'\e009'}.socicon-houzz{color:#7cc04b;background-color:#7cc04b}.socicon-houzz::before{content:'\e00a'}.socicon-rss{color:#f26109;background-color:#f26109}.socicon-rss::before{content:'\e00b'}.socicon-paypal{color:#009cde;background-color:#009cde}.socicon-paypal::before{content:'\e00c'}.socicon-odnoklassniki{color:#f48420;background-color:#f48420}.socicon-odnoklassniki::before{content:'\e00d'}.socicon-airbnb{color:#ff5a5f;background-color:#ff5a5f}.socicon-airbnb::before{content:'\e00e'}.socicon-periscope{color:#3aa4c6;background-color:#3aa4c6}.socicon-periscope::before{content:'\e00f'}.socicon-outlook{color:#0072c6;background-color:#0072c6}.socicon-outlook::before{content:'\e010'}.socicon-coderwall{color:#3e8dcc;background-color:#3e8dcc}.socicon-coderwall::before{content:'\e011'}.socicon-tripadvisor{color:#4b7e37;background-color:#4b7e37}.socicon-tripadvisor::before{content:'\e012'}.socicon-appnet{color:#494949;background-color:#494949}.socicon-appnet::before{content:'\e013'}.socicon-goodreads{color:#463020;background-color:#463020}.socicon-goodreads::before{content:'\e014'}.socicon-tripit{color:#1982c3;background-color:#1982c3}.socicon-tripit::before{content:'\e015'}.socicon-lanyrd{color:#3c80c9;background-color:#3c80c9}.socicon-lanyrd::before{content:'\e016'}.socicon-slideshare{color:#4ba3a6;background-color:#4ba3a6}.socicon-slideshare::before{content:'\e017'}.socicon-buffer{color:#000;background-color:#000}.socicon-buffer::before{content:'\e018'}.socicon-disqus{color:#2e9fff;background-color:#2e9fff}.socicon-disqus::before{content:'\e019'}.socicon-vkontakte{color:#5a7fa6;background-color:#5a7fa6}.socicon-vkontakte::before{content:'\e01a'}.socicon-whatsapp{color:#20b038;background-color:#20b038}.socicon-whatsapp::before{content:'\e01b'}.socicon-patreon{color:#e44727;background-color:#e44727}.socicon-patreon::before{content:'\e01c'}.socicon-storehouse{color:#25b0e6;background-color:#25b0e6}.socicon-storehouse::before{content:'\e01d'}.socicon-pocket{color:#ed4055;background-color:#ed4055}.socicon-pocket::before{content:'\e01e'}.socicon-mail{color:#000;background-color:#000}.socicon-mail::before{content:'\e01f'}.socicon-blogger{color:#ec661c;background-color:#ec661c}.socicon-blogger::before{content:'\e020'}.socicon-technorati{color:#5cb030;background-color:#5cb030}.socicon-technorati::before{content:'\e021'}.socicon-reddit{color:#e74a1e;background-color:#e74a1e}.socicon-reddit::before{content:'\e022'}.socicon-dribbble{color:#e84d88;background-color:#e84d88}.socicon-dribbble::before{content:'\e023'}.socicon-stumbleupon{color:#e64011;background-color:#e64011}.socicon-stumbleupon::before{content:'\e024'}.socicon-digg{color:#1d1d1b;background-color:#1d1d1b}.socicon-digg::before{content:'\e025'}.socicon-envato{color:#597c3a;background-color:#597c3a}.socicon-envato::before{content:'\e026'}.socicon-behance{color:#000;background-color:#000}.socicon-behance::before{content:'\e027'}.socicon-delicious{color:#020202;background-color:#020202}.socicon-delicious::before{content:'\e028'}.socicon-deviantart{color:#c5d200;background-color:#c5d200}.socicon-deviantart::before{content:'\e029'}.socicon-forrst{color:#5b9a68;background-color:#5b9a68}.socicon-forrst::before{content:'\e02a'}.socicon-play{color:#000;background-color:#000}.socicon-play::before{content:'\e02b'}.socicon-zerply{color:#9dbc7a;background-color:#9dbc7a}.socicon-zerply::before{content:'\e02c'}.socicon-wikipedia{color:#000;background-color:#000}.socicon-wikipedia::before{content:'\e02d'}.socicon-apple{color:#b9bfc1;background-color:#b9bfc1}.socicon-apple::before{content:'\e02e'}.socicon-flattr{color:#f67c1a;background-color:#f67c1a}.socicon-flattr::before{content:'\e02f'}.socicon-github{color:#221e1b;background-color:#221e1b}.socicon-github::before{content:'\e030'}.socicon-renren{color:#2266b0;background-color:#2266b0}.socicon-renren::before{content:'\e031'}.socicon-friendfeed{color:#2f72c4;background-color:#2f72c4}.socicon-friendfeed::before{content:'\e032'}.socicon-newsvine{color:#075b2f;background-color:#075b2f}.socicon-newsvine::before{content:'\e033'}.socicon-identica{color:#000;background-color:#000}.socicon-identica::before{content:'\e034'}.socicon-bebo{color:#ef1011;background-color:#ef1011}.socicon-bebo::before{content:'\e035'}.socicon-zynga{color:#dc0606;background-color:#dc0606}.socicon-zynga::before{content:'\e036'}.socicon-steam{color:#171a21;background-color:#171a21}.socicon-steam::before{content:'\e037'}.socicon-xbox{color:#92c83e;background-color:#92c83e}.socicon-xbox::before{content:'\e038'}.socicon-windows{color:#00bdf6;background-color:#00bdf6}.socicon-windows::before{content:'\e039'}.socicon-qq{color:#4297d3;background-color:#4297d3}.socicon-qq::before{content:'\e03a'}.socicon-douban{color:#3ca353;background-color:#3ca353}.socicon-douban::before{content:'\e03b'}.socicon-meetup{color:#e2373c;background-color:#e2373c}.socicon-meetup::before{content:'\e03c'}.socicon-playstation{color:#000;background-color:#000}.socicon-playstation::before{content:'\e03d'}.socicon-android{color:#8ec047;background-color:#8ec047}.socicon-android::before{content:'\e03e'}.socicon-snapchat{color:#fffa37;background-color:#fffa37}.socicon-snapchat::before{content:'\e03f'}.socicon-twitter{color:#4da7de;background-color:#4da7de}.socicon-twitter::before{content:'\e040'}.socicon-facebook{color:#3e5b98;background-color:#3e5b98}.socicon-facebook::before{content:'\e041'}.socicon-googleplus{color:#dd4b39;background-color:#dd4b39}.socicon-googleplus::before{content:'\e042'}.socicon-pinterest{color:#c92619;background-color:#c92619}.socicon-pinterest::before{content:'\e043'}.socicon-foursquare{color:#f94877;background-color:#f94877}.socicon-foursquare::before{content:'\e044'}.socicon-yahoo{color:#6e2a85;background-color:#6e2a85}.socicon-yahoo::before{content:'\e045'}.socicon-skype{color:#28abe3;background-color:#28abe3}.socicon-skype::before{content:'\e046'}.socicon-yelp{color:#c83218;background-color:#c83218}.socicon-yelp::before{content:'\e047'}.socicon-feedburner{color:#fc0;background-color:#fc0}.socicon-feedburner::before{content:'\e048'}.socicon-linkedin{color:#3371b7;background-color:#3371b7}.socicon-linkedin::before{content:'\e049'}.socicon-viadeo{color:#e4a000;background-color:#e4a000}.socicon-viadeo::before{content:'\e04a'}.socicon-xing{color:#005a60;background-color:#005a60}.socicon-xing::before{content:'\e04b'}.socicon-myspace{color:#323232;background-color:#323232}.socicon-myspace::before{content:'\e04c'}.socicon-soundcloud{color:#fe3801;background-color:#fe3801}.socicon-soundcloud::before{content:'\e04d'}.socicon-spotify{color:#7bb342;background-color:#7bb342}.socicon-spotify::before{content:'\e04e'}.socicon-grooveshark{color:#000;background-color:#000}.socicon-grooveshark::before{content:'\e04f'}.socicon-lastfm{color:#d41316;background-color:#d41316}.socicon-lastfm::before{content:'\e050'}.socicon-youtube{color:#e02a20;background-color:#e02a20}.socicon-youtube::before{content:'\e051'}.socicon-vimeo{color:#51b5e7;background-color:#51b5e7}.socicon-vimeo::before{content:'\e052'}.socicon-dailymotion{color:#004e72;background-color:#004e72}.socicon-dailymotion::before{content:'\e053'}.socicon-vine{color:#00b389;background-color:#00b389}.socicon-vine::before{content:'\e054'}.socicon-flickr{color:#1e1e1b;background-color:#1e1e1b}.socicon-flickr::before{content:'\e055'}.socicon-500px{color:#58a9de;background-color:#58a9de}.socicon-500px::before{content:'\e056'}.socicon-instagram{color:#9c7c6e;background-color:#9c7c6e}.socicon-instagram::before{content:'\e057'}.socicon-wordpress{color:#464646;background-color:#464646}.socicon-wordpress::before{content:'\e058'}.socicon-tumblr{color:#45556c;background-color:#45556c}.socicon-tumblr::before{content:'\e059'}.socicon-twitch{color:#6441a5;background-color:#6441a5}.socicon-twitch::before{content:'\e05a'}.socicon-8tracks{color:#122c4b;background-color:#122c4b}.socicon-8tracks::before{content:'\e05b'}.socicon-amazon{color:#f90;background-color:#f90}.socicon-amazon::before{content:'\e05c'}.socicon-icq{color:#7ebd00;background-color:#7ebd00}.socicon-icq::before{content:'\e05d'}.socicon-smugmug{color:#acfd32;background-color:#acfd32}.socicon-smugmug::before{content:'\e05e'}.socicon-ravelry{color:#b6014c;background-color:#b6014c}.socicon-ravelry::before{content:'\e05f'}.socicon-weibo{color:#e31c34;background-color:#e31c34}.socicon-weibo::before{content:'\e060'}.socicon-baidu{color:#2629d9;background-color:#2629d9}.socicon-baidu::before{content:'\e061'}.socicon-angellist{color:#000;background-color:#000}.socicon-angellist::before{content:'\e062'}.socicon-ebay{color:#333;background-color:#333}.socicon-ebay::before{content:'\e063'}.socicon-imdb{color:#e8ba00;background-color:#e8ba00}.socicon-imdb::before{content:'\e064'}.socicon-stayfriends{color:#f08a1c;background-color:#f08a1c}.socicon-stayfriends::before{content:'\e065'}.socicon-residentadvisor{color:#b3be1b;background-color:#b3be1b}.socicon-residentadvisor::before{content:'\e066'}.socicon-google{color:#4285f4;background-color:#4285f4}.socicon-google::before{content:'\e067'}.socicon-yandex{color:red;background-color:red}.socicon-yandex::before{content:'\e068'}.socicon-sharethis{color:#01bf01;background-color:#01bf01}.socicon-sharethis::before{content:'\e069'}.socicon-bandcamp{color:#619aa9;background-color:#619aa9}.socicon-bandcamp::before{content:'\e06a'}.socicon-itunes{color:#ff5e51;background-color:#ff5e51}.socicon-itunes::before{content:'\e06b'}.socicon-deezer{color:#32323d;background-color:#32323d}.socicon-deezer::before{content:'\e06c'}.socicon-medium{color:#000;background-color:#000}.socicon-medium::before{content:'\e06d'}.socicon-telegram{color:#08c;background-color:#08c}.socicon-telegram::before{content:'\e06e'}.socicon-openid{color:#f78c40;background-color:#f78c40}.socicon-openid::before{content:'\e06f'}.socicon-amplement{color:#0996c3;background-color:#0996c3}.socicon-amplement::before{content:'\e070'}.socicon-viber{color:#7b519d;background-color:#7b519d}.socicon-quora,.socicon-zomato{color:#cb202d;background-color:#cb202d}.socicon-viber::before{content:'\e071'}.socicon-zomato::before{content:'\e072'}.socicon-quora::before{content:'\e073'}.socicon-draugiem{color:#ffa32b;background-color:#ffa32b}.socicon-draugiem::before{content:'\e074'}.socicon-endomodo{color:#86ad00;background-color:#86ad00}.socicon-endomodo::before{content:'\e075'}.socicon-filmweb{color:#ffc404;background-color:#ffc404}.socicon-filmweb::before{content:'\e076'}.socicon-stackexchange{color:#2f2f2f;background-color:#2f2f2f}.socicon-stackexchange::before{content:'\e077'}.socicon-wykop{color:#328efe;background-color:#328efe}.socicon-wykop::before{content:'\e078'}.socicon-teamspeak{color:#465674;background-color:#465674}.socicon-teamspeak::before{content:'\e079'}.socicon-teamviewer{color:#168ef4;background-color:#168ef4}.socicon-teamviewer::before{content:'\e07a'}.socicon-ventrilo{color:#77808a;background-color:#77808a}.socicon-ventrilo::before{content:'\e07b'}.socicon-younow{color:#61c03e;background-color:#61c03e}.socicon-younow::before{content:'\e07c'}.socicon-raidcall{color:#073558;background-color:#073558}.socicon-raidcall::before{content:'\e07d'}.socicon-mumble{color:#5ab5d1;background-color:#5ab5d1}.socicon-mumble::before{content:'\e07e'}.socicon-bebee{color:#f28f16;background-color:#f28f16}.socicon-bebee::before{content:'\e07f'}.socicon-hitbox{color:#9c0;background-color:#9c0}.socicon-hitbox::before{content:'\e080'}.socicon-reverbnation{color:#000;background-color:#000}.socicon-reverbnation::before{content:'\e081'}.socicon-formulr{color:#ff5a60;background-color:#ff5a60}.socicon-formulr::before{content:'\e082'}.socicon-battlenet{color:#0096cd;background-color:#0096cd}.socicon-battlenet::before{content:'\e083'}.socicon-chrome{color:#757575;background-color:#757575}.socicon-chrome::before{content:'\e084'}.socicon-diablo{color:#8b1209;background-color:#8b1209}.socicon-diablo::before{content:'\e085'}.socicon-discord{color:#7289da;background-color:#7289da}.socicon-discord::before{content:'\e086'}.socicon-issuu{color:#f26f61;background-color:#f26f61}.socicon-issuu::before{content:'\e087'}.socicon-macos{color:#000;background-color:#000}.socicon-macos::before{content:'\e088'}.socicon-firefox{color:#484848;background-color:#484848}.socicon-firefox::before{content:'\e089'}.socicon-heroes{color:#2397f7;background-color:#2397f7}.socicon-heroes::before{content:'\e08a'}.socicon-hearthstone{color:#ec9313;background-color:#ec9313}.socicon-hearthstone::before{content:'\e08b'}.socicon-overwatch{color:#9e9e9e;background-color:#9e9e9e}.socicon-overwatch::before{content:'\e08c'}.socicon-opera{color:#ff1b2d;background-color:#ff1b2d}.socicon-opera::before{content:'\e08d'}.socicon-warcraft{color:#1eb10a;background-color:#1eb10a}.socicon-warcraft::before{content:'\e08e'}.socicon-starcraft{color:#002250;background-color:#002250}.socicon-starcraft::before{content:'\e08f'}.socicon-keybase{color:#ff7100;background-color:#ff7100}.socicon-keybase::before{content:'\e090'}.socicon-alliance{color:#144587;background-color:#144587}.socicon-alliance::before{content:'\e091'}.socicon-livejournal{color:#09c;background-color:#09c}.socicon-livejournal::before{content:'\e092'}.socicon-googlephotos{color:#212121;background-color:#212121}.socicon-googlephotos::before{content:'\e093'}.socicon-horde{color:#84121c;background-color:#84121c}.socicon-horde::before{content:'\e094'}.socicon-etsy{color:#f56400;background-color:#f56400}.socicon-etsy::before{content:'\e095'}.socicon-zapier{color:#ff4a00;background-color:#ff4a00}.socicon-zapier::before{content:'\e096'}.socicon-google-scholar{color:#4285f4;background-color:#4285f4}.socicon-google-scholar::before{content:'\e097'}.socicon-researchgate{color:#0cb;background-color:#0cb}.socicon-researchgate::before{content:'\e098'}.social-icons-field-handle{float:left;cursor:move;margin-top:12px;margin-left:-100%}.social-icons-field-handle.dashicons{width:30px;margin-top:18px}.social-icons-field-handle.socicon{color:#fff;padding:6px}.social-icons-field-remove{width:30px;float:left;display:block;text-align:right;margin-top:20px;margin-left:-30px;text-decoration:none}.social-icons-field-remove:active,.social-icons-field-remove:focus{outline:0;box-shadow:none}.social-icons-field-remove span.dashicons:hover{color:#a00}.social-icons-add-button{margin-bottom:10px}.wp-customizer .social-icons-add-button{margin-top:1em}ul.social-icons-list{border:1px solid #ddd}ul.social-icons-list li.social-icons-field{margin:-1px;padding:10px;display:block;border:1px solid #ddd}ul.social-icons-list li.social-icons-field::after{clear:both;content:"";display:table}ul.social-icons-list li.social-icons-field:last-child{border-bottom:none}ul.social-icons-list li.social-icons-field .social-icons-wrap{float:left;width:100%}ul.social-icons-list li.social-icons-field .social-icons-wrap .social-icons-inputs{margin-left:40px;margin-right:30px}ul.social-icons-list li.social-icons-field .social-icons-wrap .social-icons-inputs input.social-icons-field-label[type=text]{margin-top:2px}ul.social-icons-list li.social-icons-field.ui-sortable-helper{border:1px dashed #999}.hide-icons-label .social-icons-field-label{display:none}.hide-icons-label .social-icons-field-handle{margin-top:-4px}.hide-icons-label .social-icons-field-handle.dashicons,.hide-icons-label .social-icons-field-remove{margin-top:3px}
|
1 |
+
[class*=socicon-]::before,[class^=socicon-]::before,[data-icon]::before{font-family:socicon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;-moz-osx-font-smoothing:grayscale}.socicon,[data-icon]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon-mixcloud,.socicon-modelmayhem{color:#000;background-color:#000}@font-face{font-family:socicon;src:url(../fonts/socicon.eot);src:url(../fonts/socicon.eot?#iefix) format("embedded-opentype"),url(../fonts/socicon.woff) format("woff"),url(../fonts/socicon.ttf) format("truetype"),url(../fonts/socicon.svg#socicon) format("svg");font-weight:400;font-style:normal}[data-icon]::before{content:attr(data-icon)}[class*=socicon-]::before,[class^=socicon-]::before{line-height:1;-webkit-font-smoothing:antialiased}.socicon{position:relative;top:3px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;font-size:1.2em}.socicon-modelmayhem::before{content:'\e000'}.socicon-mixcloud::before{content:'\e001'}.socicon-drupal{color:#00598e;background-color:#00598e}.socicon-drupal::before{content:'\e002'}.socicon-swarm{color:#fc9d3c;background-color:#fc9d3c}.socicon-swarm::before{content:'\e003'}.socicon-istock{color:#000;background-color:#000}.socicon-istock::before{content:'\e004'}.socicon-yammer{color:#1175c4;background-color:#1175c4}.socicon-yammer::before{content:'\e005'}.socicon-ello{color:#000;background-color:#000}.socicon-ello::before{content:'\e006'}.socicon-stackoverflow{color:#fd9827;background-color:#fd9827}.socicon-stackoverflow::before{content:'\e007'}.socicon-persona{color:#e6753d;background-color:#e6753d}.socicon-persona::before{content:'\e008'}.socicon-triplej{color:#e53531;background-color:#e53531}.socicon-triplej::before{content:'\e009'}.socicon-houzz{color:#7cc04b;background-color:#7cc04b}.socicon-houzz::before{content:'\e00a'}.socicon-rss{color:#f26109;background-color:#f26109}.socicon-rss::before{content:'\e00b'}.socicon-paypal{color:#009cde;background-color:#009cde}.socicon-paypal::before{content:'\e00c'}.socicon-odnoklassniki{color:#f48420;background-color:#f48420}.socicon-odnoklassniki::before{content:'\e00d'}.socicon-airbnb{color:#ff5a5f;background-color:#ff5a5f}.socicon-airbnb::before{content:'\e00e'}.socicon-periscope{color:#3aa4c6;background-color:#3aa4c6}.socicon-periscope::before{content:'\e00f'}.socicon-outlook{color:#0072c6;background-color:#0072c6}.socicon-outlook::before{content:'\e010'}.socicon-coderwall{color:#3e8dcc;background-color:#3e8dcc}.socicon-coderwall::before{content:'\e011'}.socicon-tripadvisor{color:#4b7e37;background-color:#4b7e37}.socicon-tripadvisor::before{content:'\e012'}.socicon-appnet{color:#494949;background-color:#494949}.socicon-appnet::before{content:'\e013'}.socicon-goodreads{color:#463020;background-color:#463020}.socicon-goodreads::before{content:'\e014'}.socicon-tripit{color:#1982c3;background-color:#1982c3}.socicon-tripit::before{content:'\e015'}.socicon-lanyrd{color:#3c80c9;background-color:#3c80c9}.socicon-lanyrd::before{content:'\e016'}.socicon-slideshare{color:#4ba3a6;background-color:#4ba3a6}.socicon-slideshare::before{content:'\e017'}.socicon-buffer{color:#000;background-color:#000}.socicon-buffer::before{content:'\e018'}.socicon-disqus{color:#2e9fff;background-color:#2e9fff}.socicon-disqus::before{content:'\e019'}.socicon-vkontakte{color:#5a7fa6;background-color:#5a7fa6}.socicon-vkontakte::before{content:'\e01a'}.socicon-whatsapp{color:#20b038;background-color:#20b038}.socicon-whatsapp::before{content:'\e01b'}.socicon-patreon{color:#e44727;background-color:#e44727}.socicon-patreon::before{content:'\e01c'}.socicon-storehouse{color:#25b0e6;background-color:#25b0e6}.socicon-storehouse::before{content:'\e01d'}.socicon-pocket{color:#ed4055;background-color:#ed4055}.socicon-pocket::before{content:'\e01e'}.socicon-mail{color:#000;background-color:#000}.socicon-mail::before{content:'\e01f'}.socicon-blogger{color:#ec661c;background-color:#ec661c}.socicon-blogger::before{content:'\e020'}.socicon-technorati{color:#5cb030;background-color:#5cb030}.socicon-technorati::before{content:'\e021'}.socicon-reddit{color:#e74a1e;background-color:#e74a1e}.socicon-reddit::before{content:'\e022'}.socicon-dribbble{color:#e84d88;background-color:#e84d88}.socicon-dribbble::before{content:'\e023'}.socicon-stumbleupon{color:#e64011;background-color:#e64011}.socicon-stumbleupon::before{content:'\e024'}.socicon-digg{color:#1d1d1b;background-color:#1d1d1b}.socicon-digg::before{content:'\e025'}.socicon-envato{color:#597c3a;background-color:#597c3a}.socicon-envato::before{content:'\e026'}.socicon-behance{color:#000;background-color:#000}.socicon-behance::before{content:'\e027'}.socicon-delicious{color:#020202;background-color:#020202}.socicon-delicious::before{content:'\e028'}.socicon-deviantart{color:#c5d200;background-color:#c5d200}.socicon-deviantart::before{content:'\e029'}.socicon-forrst{color:#5b9a68;background-color:#5b9a68}.socicon-forrst::before{content:'\e02a'}.socicon-play{color:#000;background-color:#000}.socicon-play::before{content:'\e02b'}.socicon-zerply{color:#9dbc7a;background-color:#9dbc7a}.socicon-zerply::before{content:'\e02c'}.socicon-wikipedia{color:#000;background-color:#000}.socicon-wikipedia::before{content:'\e02d'}.socicon-apple{color:#b9bfc1;background-color:#b9bfc1}.socicon-apple::before{content:'\e02e'}.socicon-flattr{color:#f67c1a;background-color:#f67c1a}.socicon-flattr::before{content:'\e02f'}.socicon-github{color:#221e1b;background-color:#221e1b}.socicon-github::before{content:'\e030'}.socicon-renren{color:#2266b0;background-color:#2266b0}.socicon-renren::before{content:'\e031'}.socicon-friendfeed{color:#2f72c4;background-color:#2f72c4}.socicon-friendfeed::before{content:'\e032'}.socicon-newsvine{color:#075b2f;background-color:#075b2f}.socicon-newsvine::before{content:'\e033'}.socicon-identica{color:#000;background-color:#000}.socicon-identica::before{content:'\e034'}.socicon-bebo{color:#ef1011;background-color:#ef1011}.socicon-bebo::before{content:'\e035'}.socicon-zynga{color:#dc0606;background-color:#dc0606}.socicon-zynga::before{content:'\e036'}.socicon-steam{color:#171a21;background-color:#171a21}.socicon-steam::before{content:'\e037'}.socicon-xbox{color:#92c83e;background-color:#92c83e}.socicon-xbox::before{content:'\e038'}.socicon-windows{color:#00bdf6;background-color:#00bdf6}.socicon-windows::before{content:'\e039'}.socicon-qq{color:#4297d3;background-color:#4297d3}.socicon-qq::before{content:'\e03a'}.socicon-douban{color:#3ca353;background-color:#3ca353}.socicon-douban::before{content:'\e03b'}.socicon-meetup{color:#e2373c;background-color:#e2373c}.socicon-meetup::before{content:'\e03c'}.socicon-playstation{color:#000;background-color:#000}.socicon-playstation::before{content:'\e03d'}.socicon-android{color:#8ec047;background-color:#8ec047}.socicon-android::before{content:'\e03e'}.socicon-snapchat{color:#fffa37;background-color:#fffa37}.socicon-snapchat::before{content:'\e03f'}.socicon-twitter{color:#4da7de;background-color:#4da7de}.socicon-twitter::before{content:'\e040'}.socicon-facebook{color:#3e5b98;background-color:#3e5b98}.socicon-facebook::before{content:'\e041'}.socicon-googleplus{color:#dd4b39;background-color:#dd4b39}.socicon-googleplus::before{content:'\e042'}.socicon-pinterest{color:#c92619;background-color:#c92619}.socicon-pinterest::before{content:'\e043'}.socicon-foursquare{color:#f94877;background-color:#f94877}.socicon-foursquare::before{content:'\e044'}.socicon-yahoo{color:#6e2a85;background-color:#6e2a85}.socicon-yahoo::before{content:'\e045'}.socicon-skype{color:#28abe3;background-color:#28abe3}.socicon-skype::before{content:'\e046'}.socicon-yelp{color:#c83218;background-color:#c83218}.socicon-yelp::before{content:'\e047'}.socicon-feedburner{color:#fc0;background-color:#fc0}.socicon-feedburner::before{content:'\e048'}.socicon-linkedin{color:#3371b7;background-color:#3371b7}.socicon-linkedin::before{content:'\e049'}.socicon-viadeo{color:#e4a000;background-color:#e4a000}.socicon-viadeo::before{content:'\e04a'}.socicon-xing{color:#005a60;background-color:#005a60}.socicon-xing::before{content:'\e04b'}.socicon-myspace{color:#323232;background-color:#323232}.socicon-myspace::before{content:'\e04c'}.socicon-soundcloud{color:#fe3801;background-color:#fe3801}.socicon-soundcloud::before{content:'\e04d'}.socicon-spotify{color:#7bb342;background-color:#7bb342}.socicon-spotify::before{content:'\e04e'}.socicon-grooveshark{color:#000;background-color:#000}.socicon-grooveshark::before{content:'\e04f'}.socicon-lastfm{color:#d41316;background-color:#d41316}.socicon-lastfm::before{content:'\e050'}.socicon-youtube{color:#e02a20;background-color:#e02a20}.socicon-youtube::before{content:'\e051'}.socicon-vimeo{color:#51b5e7;background-color:#51b5e7}.socicon-vimeo::before{content:'\e052'}.socicon-dailymotion{color:#004e72;background-color:#004e72}.socicon-dailymotion::before{content:'\e053'}.socicon-vine{color:#00b389;background-color:#00b389}.socicon-vine::before{content:'\e054'}.socicon-flickr{color:#1e1e1b;background-color:#1e1e1b}.socicon-flickr::before{content:'\e055'}.socicon-500px{color:#58a9de;background-color:#58a9de}.socicon-500px::before{content:'\e056'}.socicon-instagram{color:#9c7c6e;background-color:#9c7c6e}.socicon-instagram::before{content:'\e057'}.socicon-wordpress{color:#464646;background-color:#464646}.socicon-wordpress::before{content:'\e058'}.socicon-tumblr{color:#45556c;background-color:#45556c}.socicon-tumblr::before{content:'\e059'}.socicon-twitch{color:#6441a5;background-color:#6441a5}.socicon-twitch::before{content:'\e05a'}.socicon-8tracks{color:#122c4b;background-color:#122c4b}.socicon-8tracks::before{content:'\e05b'}.socicon-amazon{color:#f90;background-color:#f90}.socicon-amazon::before{content:'\e05c'}.socicon-icq{color:#7ebd00;background-color:#7ebd00}.socicon-icq::before{content:'\e05d'}.socicon-smugmug{color:#acfd32;background-color:#acfd32}.socicon-smugmug::before{content:'\e05e'}.socicon-ravelry{color:#b6014c;background-color:#b6014c}.socicon-ravelry::before{content:'\e05f'}.socicon-weibo{color:#e31c34;background-color:#e31c34}.socicon-weibo::before{content:'\e060'}.socicon-baidu{color:#2629d9;background-color:#2629d9}.socicon-baidu::before{content:'\e061'}.socicon-angellist{color:#000;background-color:#000}.socicon-angellist::before{content:'\e062'}.socicon-ebay{color:#333;background-color:#333}.socicon-ebay::before{content:'\e063'}.socicon-imdb{color:#e8ba00;background-color:#e8ba00}.socicon-imdb::before{content:'\e064'}.socicon-stayfriends{color:#f08a1c;background-color:#f08a1c}.socicon-stayfriends::before{content:'\e065'}.socicon-residentadvisor{color:#b3be1b;background-color:#b3be1b}.socicon-residentadvisor::before{content:'\e066'}.socicon-google{color:#4285f4;background-color:#4285f4}.socicon-google::before{content:'\e067'}.socicon-yandex{color:red;background-color:red}.socicon-yandex::before{content:'\e068'}.socicon-sharethis{color:#01bf01;background-color:#01bf01}.socicon-sharethis::before{content:'\e069'}.socicon-bandcamp{color:#619aa9;background-color:#619aa9}.socicon-bandcamp::before{content:'\e06a'}.socicon-itunes{color:#ff5e51;background-color:#ff5e51}.socicon-itunes::before{content:'\e06b'}.socicon-deezer{color:#32323d;background-color:#32323d}.socicon-deezer::before{content:'\e06c'}.socicon-medium{color:#000;background-color:#000}.socicon-medium::before{content:'\e06d'}.socicon-telegram{color:#08c;background-color:#08c}.socicon-telegram::before{content:'\e06e'}.socicon-openid{color:#f78c40;background-color:#f78c40}.socicon-openid::before{content:'\e06f'}.socicon-amplement{color:#0996c3;background-color:#0996c3}.socicon-amplement::before{content:'\e070'}.socicon-viber{color:#7b519d;background-color:#7b519d}.socicon-quora,.socicon-zomato{color:#cb202d;background-color:#cb202d}.socicon-viber::before{content:'\e071'}.socicon-zomato::before{content:'\e072'}.socicon-quora::before{content:'\e073'}.socicon-draugiem{color:#ffa32b;background-color:#ffa32b}.socicon-draugiem::before{content:'\e074'}.socicon-endomodo{color:#86ad00;background-color:#86ad00}.socicon-endomodo::before{content:'\e075'}.socicon-filmweb{color:#ffc404;background-color:#ffc404}.socicon-filmweb::before{content:'\e076'}.socicon-stackexchange{color:#2f2f2f;background-color:#2f2f2f}.socicon-stackexchange::before{content:'\e077'}.socicon-wykop{color:#328efe;background-color:#328efe}.socicon-wykop::before{content:'\e078'}.socicon-teamspeak{color:#465674;background-color:#465674}.socicon-teamspeak::before{content:'\e079'}.socicon-teamviewer{color:#168ef4;background-color:#168ef4}.socicon-teamviewer::before{content:'\e07a'}.socicon-ventrilo{color:#77808a;background-color:#77808a}.socicon-ventrilo::before{content:'\e07b'}.socicon-younow{color:#61c03e;background-color:#61c03e}.socicon-younow::before{content:'\e07c'}.socicon-raidcall{color:#073558;background-color:#073558}.socicon-raidcall::before{content:'\e07d'}.socicon-mumble{color:#5ab5d1;background-color:#5ab5d1}.socicon-mumble::before{content:'\e07e'}.socicon-bebee{color:#f28f16;background-color:#f28f16}.socicon-bebee::before{content:'\e07f'}.socicon-hitbox{color:#9c0;background-color:#9c0}.socicon-hitbox::before{content:'\e080'}.socicon-reverbnation{color:#000;background-color:#000}.socicon-reverbnation::before{content:'\e081'}.socicon-formulr{color:#ff5a60;background-color:#ff5a60}.socicon-formulr::before{content:'\e082'}.socicon-battlenet{color:#0096cd;background-color:#0096cd}.socicon-battlenet::before{content:'\e083'}.socicon-chrome{color:#757575;background-color:#757575}.socicon-chrome::before{content:'\e084'}.socicon-diablo{color:#8b1209;background-color:#8b1209}.socicon-diablo::before{content:'\e085'}.socicon-discord{color:#7289da;background-color:#7289da}.socicon-discord::before{content:'\e086'}.socicon-issuu{color:#f26f61;background-color:#f26f61}.socicon-issuu::before{content:'\e087'}.socicon-macos{color:#000;background-color:#000}.socicon-macos::before{content:'\e088'}.socicon-firefox{color:#484848;background-color:#484848}.socicon-firefox::before{content:'\e089'}.socicon-heroes{color:#2397f7;background-color:#2397f7}.socicon-heroes::before{content:'\e08a'}.socicon-hearthstone{color:#ec9313;background-color:#ec9313}.socicon-hearthstone::before{content:'\e08b'}.socicon-overwatch{color:#9e9e9e;background-color:#9e9e9e}.socicon-overwatch::before{content:'\e08c'}.socicon-opera{color:#ff1b2d;background-color:#ff1b2d}.socicon-opera::before{content:'\e08d'}.socicon-warcraft{color:#1eb10a;background-color:#1eb10a}.socicon-warcraft::before{content:'\e08e'}.socicon-starcraft{color:#002250;background-color:#002250}.socicon-starcraft::before{content:'\e08f'}.socicon-keybase{color:#ff7100;background-color:#ff7100}.socicon-keybase::before{content:'\e090'}.socicon-alliance{color:#144587;background-color:#144587}.socicon-alliance::before{content:'\e091'}.socicon-livejournal{color:#09c;background-color:#09c}.socicon-livejournal::before{content:'\e092'}.socicon-googlephotos{color:#212121;background-color:#212121}.socicon-googlephotos::before{content:'\e093'}.socicon-horde{color:#84121c;background-color:#84121c}.socicon-horde::before{content:'\e094'}.socicon-etsy{color:#f56400;background-color:#f56400}.socicon-etsy::before{content:'\e095'}.socicon-zapier{color:#ff4a00;background-color:#ff4a00}.socicon-zapier::before{content:'\e096'}.socicon-google-scholar{color:#4285f4;background-color:#4285f4}.socicon-google-scholar::before{content:'\e097'}.socicon-researchgate{color:#0cb;background-color:#0cb}.socicon-researchgate::before{content:'\e098'}.socicon-wechat{color:#09b507;background-color:#09b507}.socicon-wechat::before{content:'\e099'}.socicon-strava{color:#fc4c02;background-color:#fc4c02}.socicon-strava::before{content:'\e09a'}.socicon-line{color:#00b901;background-color:#00b901}.socicon-line::before{content:'\e09b'}.socicon-lyft{color:#ff00bf;background-color:#ff00bf}.socicon-lyft::before{content:'\e09c'}.socicon-uber{color:#000;background-color:#000}.socicon-uber::before{content:'\e09d'}.socicon-songkick{color:#f80046;background-color:#f80046}.socicon-songkick::before{content:'\e09e'}.socicon-viewbug{color:#2f9fcf;background-color:#2f9fcf}.socicon-viewbug::before{content:'\e09f'}.socicon-googlegroups{color:#4f8ef5;background-color:#4f8ef5}.socicon-googlegroups::before{content:'\e0a0'}.socicon-blizzard{color:#01b2f1;background-color:#01b2f1}.socicon-blizzard::before{content:'\e0a1'}.socicon-beam{color:#536dfe;background-color:#536dfe}.socicon-beam::before{content:'\e0a2'}.socicon-curse{color:#f26522;background-color:#f26522}.socicon-curse::before{content:'\e0a3'}.socicon-player{color:#6e41bd;background-color:#6e41bd}.socicon-player::before{content:'\e0a4'}.socicon-streamjar{color:#503a60;background-color:#503a60}.socicon-streamjar::before{content:'\e0a5'}.socicon-nintendo{color:#f58a33;background-color:#f58a33}.socicon-nintendo::before{content:'\e0a6'}.socicon-hellocoton{color:#d30d66;background-color:#d30d66}.socicon-hellocoton::before{content:'\e0a7'}.social-icons-field-handle{float:left;cursor:move;margin-top:12px;margin-left:-100%}.social-icons-field-handle.dashicons{width:30px;margin-top:18px}.social-icons-field-handle.socicon{color:#fff;padding:6px}.social-icons-field-remove{width:30px;float:left;display:block;text-align:right;margin-top:20px;margin-left:-30px;text-decoration:none}.social-icons-field-remove:active,.social-icons-field-remove:focus{outline:0;box-shadow:none}.social-icons-field-remove span.dashicons:hover{color:#a00}.social-icons-add-button{margin-bottom:10px}.wp-customizer .social-icons-add-button{margin-top:1em}ul.social-icons-list{border:1px solid #ddd}ul.social-icons-list li.social-icons-field{margin:-1px;padding:10px;display:block;border:1px solid #ddd}ul.social-icons-list li.social-icons-field::after{clear:both;content:"";display:table}ul.social-icons-list li.social-icons-field:last-child{border-bottom:none}ul.social-icons-list li.social-icons-field .social-icons-wrap{float:left;width:100%}ul.social-icons-list li.social-icons-field .social-icons-wrap .social-icons-inputs{margin-left:40px;margin-right:30px}ul.social-icons-list li.social-icons-field .social-icons-wrap .social-icons-inputs input.social-icons-field-label[type=text]{margin-top:2px}ul.social-icons-list li.social-icons-field.ui-sortable-helper{border:1px dashed #999}.hide-icons-label .social-icons-field-label{display:none}.hide-icons-label .social-icons-field-handle{margin-top:-4px}.hide-icons-label .social-icons-field-handle.dashicons,.hide-icons-label .social-icons-field-remove{margin-top:3px}
|
assets/fonts/socicon.eot
CHANGED
Binary file
|
assets/fonts/socicon.svg
CHANGED
@@ -120,7 +120,6 @@
|
|
120 |
<glyph glyph-name="amplement" unicode="" d="M253 310c23 3 40 7 51 12 18 7 27 20 27 35 0 20-7 34-21 41-14 8-35 12-62 12-30 0-51-8-64-22-9-11-15-26-18-45l-122 0c2 43 14 77 35 104 34 43 91 65 173 65 54 0 101-11 143-32 41-21 62-61 62-119l0-223c0-15 0-34 1-56 1-16 3-28 7-34 5-6 11-11 19-15l0-18-138 0c-4 10-7 19-8 28-2 9-3 18-4 29-17-19-38-35-61-48-27-16-58-24-92-24-44 0-81 12-110 37-29 25-43 61-43 107 0 60 23 103 69 130 26 14 63 25 112 31z m78-59c-8-5-17-9-25-12-8-3-19-7-34-9l-29-5c-27-5-46-11-58-18-20-11-30-29-30-53 0-22 6-38 18-48 12-9 27-14 45-14 27 0 53 8 76 24 24 16 36 45 37 88z"/>
|
121 |
<glyph glyph-name="viber" unicode="" d="M295 383c-6 1-12-4-12-11-1-6 4-12 11-13 40-2 59-22 61-64 1-6 6-11 13-11 0 0 0 0 0 0 7 0 12 6 12 12-3 55-32 84-85 87z m135-120c6 0 12 5 12 11 1 48-13 88-43 120-29 32-70 50-122 55-7 0-12-5-13-12 0-6 5-12 11-13 47-3 81-18 106-46 26-27 38-61 37-103 0-6 5-12 12-12z m3 178c-47 46-107 70-178 71-7 0-12-6-12-12 0-7 5-13 12-13 64 0 119-22 162-64 43-42 65-99 65-174 0-6 6-12 13-12 6 0 12 6 12 12-2 81-26 146-74 192z m45-330c0 0-28 23-42 33-13 10-33 22-44 29-21 11-42 4-50-8l-18-22c-10-11-27-10-27-10-125 32-158 159-158 159 0 0-2 17 9 26l23 18c11 9 18 30 7 50-6 11-19 32-28 45-11 13-34 41-34 41-11 13-27 16-45 7 0 0 0 0 0 0-17-9-32-21-46-37 0 0 0 0 0-1-11-12-17-25-19-38 0-1 0-3 0-5 0-6 0-11 2-17l1 0c5-19 19-51 48-105 19-34 38-63 58-87 10-13 21-26 35-39 0-1 1-2 1-2 1-1 1-1 2-2 0 0 1-1 1-1 1-1 1-1 2-2 13-13 26-24 39-34 24-20 53-39 88-58 53-30 85-43 104-48l1-1c5-1 10-3 16-3 2 0 4 0 6 1 12 2 25 8 37 18 0 0 0 0 1 1 16 14 28 30 37 46 0 0 0 0 0 1 9 17 6 33-7 45z"/>
|
122 |
<glyph glyph-name="zomato" unicode="" d="M407 356c0 0-86 32-151 14-66-18-93-60-93-60 0 0-30-33-52-36-22-3-39-4-111 0l0-35c72 3 89 2 111-1 22-2 52-36 52-36 0 0 27-42 93-60 66-18 152 14 152 14 102 37 104 97 104 97l0 6c0 0-2 60-105 97z m-100-19c-32-1-53-10-67-18 0 0 0-1 0-1-1 0-2 0-3 0-4 0-6 3-6 6 0 3 1 5 3 6 9 4 18 7 30 10 10 4 23 5 37 5 31 0 63-8 80-13 0 0-37 7-74 5z"/>
|
123 |
-
<glyph glyph-name="quora" unicode="" d="M272 113c-18 34-39 70-79 70-8 0-16-2-23-5l-14 28c17 14 44 25 79 25 54 0 82-26 104-59 14 29 20 67 20 115 0 119-37 180-125 180-86 0-122-61-122-180 0-119 36-179 122-179 14 0 26 2 38 5z m21-42c-19-5-39-8-59-8-114 0-226 92-226 224 0 134 112 225 226 225 117 0 227-91 227-225 0-75-35-135-85-174 16-25 33-41 57-41 25 0 35 20 38 35l33 0c2-20-8-106-102-106-57-1-87 32-109 70z"/>
|
124 |
<glyph glyph-name="draugiem" unicode="" d="M366 348c91-1 145-58 84-135-28-35-75-71-138-93-3-1-6-2-9-3-7-2-12-4-18-6-14-4-26-7-40-10-14-2-27-5-40-6-9-1-18-1-26-1-59-2-103 14-117 48-17 41 18 98 88 142-52-21-146-70-150-140l0-9c1-7 2-14 4-22 15-47 86-69 175-61 9 0 18 1 27 3 13 2 26 4 40 7 13 4 26 7 40 11 3 1 6 2 8 3 7 2 12 4 18 6 78 29 135 66 169 109 20 25 29 48 32 69l0 15c-6 51-66 81-147 73m-60 25c2 0 4 1 6 1 13 3 19 17 20 34 0 17-6 31-20 33-1 1-3 1-4 1-12 0-19-7-23-17-2-5-3-11-3-17 0-8 1-15 3-21 4-8 10-14 21-14z m0-5c-6 0-11-1-15-2l1-1 2-5 1-4 2-4 1-4 0-5 1-5 0-9-1-4-1-10 0-4 0-5-1-4-1-5-1-5-1-4-2-8-1-4-1-3-1-4 0-2-1-2-1-5 0-3-1-3 0-1-1-6 0-4-1-3 0-4-1-4 0-3-1-4 0-3-1-4 0-3c1-11 1-20 2-25 0-6 1-10 3-13 3-4 7-5 14-6 6 1 10 2 13 5 3 2 4 7 6 14 3 16 9 65 15 87 8 31 28 87-21 91-2 0-4 0-6 0z m-61 15c20 0 29 18 29 40 0 21-9 39-28 39l-1 0c-19 0-28-18-28-39 0-22 9-40 28-40z m-39-91c1-7 3-14 5-20 6-25 12-82 14-99 2-18 8-21 21-23 12 1 18 5 20 23 2 17 8 74 14 99 2 6 4 13 5 20 6 23 10 50 0 67-6 11-18 18-40 18-21 0-34-7-40-18-9-17-5-44 1-67z m-27 82c2 0 4 0 6 0 11 0 17 5 21 14 2 5 3 12 3 20-1 6-2 12-3 17-4 11-12 17-23 17-1 0-2 0-3 0-15-2-21-17-20-34 0-17 6-31 19-34z m-6-185c1-7 3-11 6-14 3-3 7-5 13-5 7 0 11 2 14 6 1 3 3 7 3 13 1 5 1 14 2 25l0 0 0 4-1 3 0 4-1 4 0 3-1 4 0 4-1 3 0 4-1 3 0 3 0 0-1 3 0 3-1 3 0 2-1 3 0 2-1 3-1 4-1 5-2 8-1 4-1 4-1 5-1 4-1 5 0 4-2 10 0 13 1 5 1 5 1 4 1 4 2 4 2 5 1 1c-4 1-9 2-15 2-2 0-4 0-6-1-49-4-29-60-21-91 6-22 13-71 15-87z"/>
|
125 |
<glyph glyph-name="endomodo" unicode="" d="M97 347c0 10-7 19-17 22l-63 0c-10-3-17-12-17-22 0-12 10-22 22-22l53 0c13 0 22 10 22 22z m384 56c-26 40-72 61-149 61-11 0-22-1-32-2-2 0-4 0-6 0 0 0 0 0-1 0 0 0-1 0-2-1-40-4-63-4-63-4l-104 0c-12 0-22-10-22-22 0-13 10-22 22-22l94 0c12 0 22-10 22-22 0-11-7-19-17-22-1 0-3 0-5 0l-80 0c-9-3-17-12-17-22 0-12 10-22 22-22l20 0c12 0 22-10 22-22 0-12-10-22-22-22l-101 0c-12 0-22-10-22-22 0-12 10-22 22-22l96 0c12 0 22-10 22-22 0-12-10-22-22-22l-11 0c-12 0-22-10-22-22 0-12 10-22 22-22l43 0c13 0 22-10 22-22 0-12-9-22-22-22l-9 0c-14 0-24-11-24-24 0-13 10-24 24-24l49 0c0 0 30-1 61-4 7-1 14-2 20-3 3 0 5 0 6 0 11-1 21-1 32-1 56 0 107 12 134 23 5 2 9 5 9 11 0 1 0 3-1 3l-9 35c-2 6-5 9-10 9 0 0-2 0-4-1-27-8-60-18-108-18-45 0-76 7-97 27-18 18-27 39-28 76l263 0c8 0 12 7 12 14 1 11 1 26 1 36 1 58-6 106-30 139z m-56-154c-23 0-42 19-42 42 0 23 19 41 42 41 19 0 35-13 40-30-3 4-8 6-12 6-10 0-17-8-17-17 0-9 7-17 17-17 5 0 9 2 12 6-5-18-21-31-40-31z"/>
|
126 |
<glyph glyph-name="filmweb" unicode="" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m-59-76c28 0 50-22 50-50 0-29-22-51-50-51-29 0-51 22-51 51 0 28 22 50 51 50z m-129-180c0 28 23 51 51 51 28 0 50-23 50-51 0-28-22-51-50-51-28 0-51 23-51 51z m129-180c-29 0-51 22-51 50 0 29 22 51 51 51 28 0 50-22 50-51 0-28-22-50-50-50z m121 154l-86 0 0 52 86 0z m99-71c-18-27-43-48-72-62l-20 44c44 20 71 64 71 114 0 26-7 50-20 71-12 20-30 36-51 46l21 43c29-14 53-36 71-64 18-28 27-61 27-96 0-34-9-68-27-96z"/>
|
@@ -140,17 +139,11 @@
|
|
140 |
<glyph glyph-name="instagram" unicode="" d="M256 466c69 0 76-1 103-2 26-1 39-5 48-8 12-5 21-11 29-19 9-9 15-18 19-29 4-10 8-23 9-48 1-28 2-35 2-104 0-69-1-76-2-103-1-26-5-39-8-48-5-12-11-21-19-29-9-9-18-15-29-19-10-4-23-8-48-9-28-1-35-2-104-2-69 0-76 1-103 2-26 1-39 5-48 8-12 5-21 11-29 19-9 9-15 18-19 29-4 10-8 23-9 48-1 28-2 35-2 104 0 69 1 76 2 103 1 26 5 39 8 48 5 12 11 21 19 29 9 9 18 15 29 19 10 4 23 8 48 9 28 1 35 2 104 2m0 46c-70 0-78-1-105-2-28-1-47-5-62-11-17-7-32-16-46-30-14-14-23-29-30-46-6-16-10-34-11-62-1-27-2-35-2-105 0-70 1-78 2-105 1-28 5-47 11-62 7-17 16-32 30-46 14-14 29-23 46-30 16-6 34-10 62-11 27-1 35-2 105-2 70 0 78 1 105 2 28 1 47 5 62 11 17 7 32 16 46 30 14 14 23 29 30 46 6 16 10 34 11 62 1 27 2 35 2 105 0 70-1 78-2 105-1 28-5 47-11 62-7 17-16 32-30 46-14 14-29 23-46 30-16 6-34 10-62 11-27 1-35 2-105 2z m0-124c-73 0-132-59-132-132 0-73 59-132 132-132 73 0 132 59 132 132 0 73-59 132-132 132z m0-218c-47 0-86 39-86 86 0 47 39 86 86 86 47 0 86-39 86-86 0-47-39-86-86-86z m167 223c0-17-13-31-30-31-17 0-31 14-31 31 0 17 14 30 31 30 17 0 30-13 30-30z"/>
|
141 |
<glyph glyph-name="battlenet" unicode="" d="M506 216c-3 7-7 13-11 19-14 16-30 29-46 40-2 1-3 3-5 2 11 1 20 3 30 8 7 4 10 10 9 19 0 7-3 13-6 20-8 12-19 21-30 29-6 4-12 7-19 11-2 1-3 2-1 4 2 3 3 5 4 8 9 17 19 34 27 52 2 5 5 10 6 16 0 2 0 5 0 7 0 1 0 1-1 2-1 0-2-1-2-1-1-2-2-5-4-7-7-11-14-24-22-35-7-12-14-24-22-36-1-2-2-2-4-1-13 5-25 9-37 13-16 5-33 9-49 11-2 0-4 1-5 3-1 3-3 6-5 9-17 30-37 59-62 83-11 10-24 19-41 21-1 0-2 0-4 0-5-1-9-2-13-5-8-5-13-12-16-21-8-16-12-33-14-51 0-6-1-12-1-18-2 0-2 2-3 3-5 6-11 12-18 16-5 4-11 4-18 1-9-4-15-12-20-21-5-13-8-26-8-40 0-6 0-12 0-18 0-2-1-3-3-3-3 0-6 0-9 0-12-1-25-1-37-2-11 0-22-1-32-3-3 0-6-1-9-3-1 0-3-1-2-2 0-1 2-1 3-1 16-1 31-1 48-1 12-1 23-1 35-1 1 0 2 0 3-1 5 0 5 0 5-5 4-29 11-57 22-84 1-2 0-4-1-5-3-6-6-11-10-17-14-24-25-49-32-76-4-15-7-29-5-44 2-15 11-24 24-28 9-2 19-2 28 0 16 3 32 8 47 15 5 2 8 4 13 6-1-3-2-5-3-8-2-5-4-10-4-16-2-11 1-18 12-23 3-1 7-2 10-3 8-1 17 0 24 1 16 4 29 11 43 19 2 2 3 2 5-1 8-13 16-26 25-39 6-10 13-20 20-28 3-3 6-5 10-5 1 2 0 3-1 4-3 4-5 8-7 11-3 7-7 12-10 18-8 16-17 31-25 46-2 4-2 4 2 7 10 8 20 16 30 26 11 10 22 21 32 34 2 3 4 3 7 3 13 0 26 0 40 1 14 1 26 2 39 4 19 3 37 7 54 16 11 6 21 14 22 28 0 0 0 0 0 0-1 2-1 4 0 6 0 0 0 1 0 1-1 3-1 7-2 10z m-305 172c2 14 5 28 11 41 3 6 5 11 10 15 6 8 15 9 23 6 5-1 9-4 13-7 15-12 27-29 37-46-34 0-66-7-95-25-1 6 0 11 1 16z m-80-31c1 11 2 22 6 32 2 5 5 10 9 13 8 7 22 5 26-5 1 0 1-1 1-2 0-12 1-24 3-37 0-2-1-1-2-1-7 0-13 0-20 0 0 0 0-1 0-1-7 0-13 0-20 0-2-1-3-1-3 1z m28-217c-6-1-11-1-16 0-13 2-20 10-21 23 0 9 2 17 4 25 4 13 9 26 17 39 17-29 38-53 67-70 0-1-1-1-1-1-16-7-33-13-50-16z m105-43c-11-6-22-10-34-11-2 0-3 0-4 0-16 2-20 14-15 27 0 1 1 2 2 2 5 3 10 7 15 10 5 4 10 7 15 10 2-3 4-6 6-10 5-8 10-17 16-26 0 0 2-1-1-2z m57 44c-13-12-26-24-40-34-2-2-3-2-4 1-5 10-10 21-16 31 0 1-1 2-1 4 21-1 40 4 58 14-18-5-37-7-56-6 0 2 1 2 2 3 40 34 76 72 108 114 2 3 2 4-1 5-4 2-8 5-12 7-1 0-2 1-3-1-12-17-27-31-42-45-29-25-60-47-92-69-2-1-3-1-5 0-22 13-37 31-49 52-15 24-23 51-29 80-4 13-6 27-7 41-1 3 0 4 3 4 12-2 25-2 36-3 3 0 3-1 2-3-10-17-15-34-15-53 0-1 0-2 0-2 5 17 11 34 22 50 2-11 4-21 6-30 10-42 23-82 39-121 1-3 2-3 4-2 4 3 8 5 12 7 1 1 2 2 1 3-9 19-13 38-17 58-8 37-12 74-14 111 0 3 0 4 3 6 18 11 38 16 59 17 32 2 64-4 94-13 15-5 29-10 42-16 1-1 2-1 1-3-7-11-13-21-21-32-9 18-23 32-40 41 6-6 13-13 18-21 5-7 10-15 14-24-4 1-9 3-13 4-12 5-24 8-36 12-34 9-68 16-102 20-7 1-7 1-7-6 0-4 0-7 0-10 0-2 0-2 2-2 24-2 47-10 70-18 32-11 63-25 93-40 1-1 1-2 1-4 0-23-7-44-18-65-13-24-30-44-50-62z m121 47c-6-5-13-8-20-10-16-4-33-6-50-6 17 29 28 60 28 94 1 0 2-1 3-1 15-12 29-23 41-39 3-4 5-8 7-13 2-10 0-18-9-25z m3 101c-4-2-8-2-12 0-9 6-20 10-30 15-1 0-2 1-1 3 6 11 13 23 19 35 1 1 1 2 3 1 9-7 19-13 26-23 3-5 6-10 6-16 0-7-4-13-11-15z"/>
|
142 |
<glyph glyph-name="chrome" unicode="" d="M352 256c0-53-43-96-96-96-53 0-96 43-96 96 0 53 43 96 96 96 53 0 96-43 96-96z m-95 113l231 0c-42 85-130 143-230 143-82 0-155-38-202-98l88-150c4 59 53 105 113 105z m237-17l-176 0c32-20 52-55 52-95 0-19-5-38-14-54l-116-202c6 0 11 0 17 0 141 0 255 114 255 256 0 33-7 66-18 95z m-234-211c-50 0-93 32-108 76l-108 183c-28-41-44-90-44-143 0-131 97-239 222-256l90 153c-16-8-33-13-52-13z"/>
|
143 |
-
<glyph glyph-name="diablo" unicode="" d="M428 291c-2 9-6 18-12 28-6 11-8 17-4 20 3 2 8 4 14 5-15 23-37 38-64 48-9 3-17 6-27 8-1 17-3 34-5 51 0 0-2-18-3-49-16 4-31 6-46 7-3 0-8 1-15 1-3 34-6 67-11 102 0 0-3-40-6-102-1 0-2 0-3 0-18 0-37 0-57 0-1 14-3 27-4 42 0 0-2-16-3-42-24-1-75-6-103-6 2-2 0-8 4-13 5-5 45-14 44-20l0-226c-2-15-39-26-43-29-3-3-4-12-5-11 34 1 71 3 100 5 2-26 3-52 6-77 2 28 5 54 6 78 23 1 40 2 46 2 4 0 7 0 10 0 2-38 4-76 8-112 4 40 7 78 9 112 12 1 25 2 38 5 7 2 14 4 21 6 1-31 3-62 6-91 3 36 6 67 8 97 12 5 23 10 34 18 21 14 37 33 49 56 13 23 15 52 8 87z m-220-150l0 235c16 1 29 2 40 2-2-66-4-150-1-236-10 0-23 0-39-1z m95 10c-5-4-15-6-35-8 6 102 5 172 1 233 14-2 27-6 40-12 6-3 11-6 16-9-2-51-4-118-2-188-9-7-15-12-20-16z m39 34c3 62 2 109 0 150 10-18 16-43 18-74 2-35-4-60-18-76z"/>
|
144 |
<glyph glyph-name="discord" unicode="" d="M449 393c-63 47-123 45-123 45l-6-7c75-22 109-55 109-55-46 24-91 37-132 41-32 4-62 3-89-1-2 0-4 0-7-1-16-1-53-7-100-27-17-8-26-13-26-13 0 0 36 35 115 57l-5 5c0 0-60 2-123-45 0 0-63-114-63-254 0 0 37-63 134-66 0 0 17 20 29 36-56 17-76 51-76 51 0 0 4-3 12-7 0 0 1-1 1-1 2-1 3-2 4-3 11-6 22-10 33-14 18-8 39-14 64-19 33-6 72-9 114-1 20 4 41 10 63 19 16 6 33 14 51 26 0 0-22-35-79-51 13-17 29-36 29-36 97 3 133 66 133 66 1 141-62 255-62 255z m-275-213c-24 0-44 22-44 48 0 27 20 48 44 48 25 0 45-21 45-48 0-26-20-48-45-48z m160 0c-24 0-44 22-44 48 0 27 20 48 44 48 25 0 45-21 45-48 0-26-20-48-45-48z"/>
|
145 |
<glyph glyph-name="issuu" unicode="" d="M257 386c-72 1-131-57-132-129 0-72 57-131 129-132 72 0 131 57 132 129 1 73-57 132-129 132z m-2-196c-36 0-65 30-65 67 0 36 30 65 67 65 36 0 65-30 65-67 0-36-30-65-67-65z m1 322c-1 0-1 0-1 0l-233 0c-12 0-22-10-22-22l0-234c0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m0-432c-98 1-177 82-176 180 1 98 81 177 179 176 98-1 177-82 176-179 0-99-81-178-179-177z"/>
|
146 |
<glyph glyph-name="macos" unicode="" d="M378 105l-32 0-90 129-91-129-31 0 106 151-106 151 31 0 91-129 90 129 32 0-106-151z m-122 407c-141 0-256-115-256-256 0-141 115-256 256-256 142 0 256 115 256 256 1 141-114 256-256 256z"/>
|
147 |
<glyph glyph-name="firefox" unicode="" d="M450 445c0 0 0-1 1-1-1 0-1 0-1 1m-286-181c1-1 1-2 2-2-1 1-1 1-2 2m-75 157c1 0 1 1 2 1 0-1 1-1 1-1-1 0-2 0-3 0m-46 22c0 0 0 0 0 0m-1-2c0-1 0 0 0 1l0 1 0-2m0 2c0 0 0 0 0 0 0 0 0 0 0 0m-28-124c0 0 0 0 0 0 0-1-1-1-1-1l1 1c0 1 1 2 1 3-1 0-1-1-1-3m220 31c1 0 2 1 3 2 1 0 1 0 1 1-1-1-2-2-3-3 0 0-1 0-2-1 1 0 1 1 1 1m9 8c0 0 0 1 0 2 0 1 1 2 1 3l1 2c0 0 1 0 1 0-1-1-1-2-1-3 0-1 0-1 0-1 0-1-1-2-2-3m3 11c0 0 0 0 0-1 0 0 0 0 0-1l0 1c0 1 0 2 0 1m1-2c1 0 1 0 0 0 1 0 0 0 0 0l0-1c0 1 0 1 0 1m240-170c0-1 0-1 0 0-1-1-1-2-2-3 1 1 1 2 2 3 15 29 33 85 19 134l0 2c-1 1-1 2-1 3l0 1c0 0-1 1-1 1 0-1-4-13-9-31 3 27 1 56-9 82-5 13-10 23-16 31-7 12-15 21-21 25l1-1c-1 1-1 1-1 1 0-1 1-3 2-8-13 20-32 30-35 31l-1 0c0 0 1-6 3-18-20 16-45 29-73 37 47-31 64-57 75-81-12 13-34 26-48 28 21-16 57-64 54-136-10 25-23 35-23 35 0 0 0-1 0-1l-1 1c4-26 4-45 4-59 0 0 0-1 0-1 0-1 0-2 0-4 0-1 0-2 0-3 0-1 0-2 0-3 0-1 0-2 0-3 0-1 0-2 0-3-2-12-4-20-6-29-3 12-6 18-6 18l0-1c0 0 0 1 0 1 0 0-1-23-16-55-1-3-3-7-5-10 0 0 0-1-1-1 0-1 0-1-1-2l-1-2c0 0 0-1-1-1 0-1 0-1-1-2-6-7-10-11-14-12-1-1-2-1-3-1-1 0-1 1-2 1 1 3 1 6 0 8 0 0-4-1-7-5-2-2-3-4-5-5 0 0 3 4 3 4-2-1-4-3-6-5-7-7-13-16-17-13 4 1 6 5 7 9-3-2-10-8-26-10-7-1-34-6-71 12 5 1 13 3 19-1-6 7-21 5-31 9-10 3-22 16-29 22 25-6 51-3 69 6 1 1 2 1 3 2 2 1 3 2 5 3 10 7 25 18 34 19 1 0 2 0 3-1 9-2 15 7 8 16-7 8-25 19-48 14-19-5-34-20-60-9-2 0-3 1-5 2-1 1 5-1 4 0-5 2-14 6-17 7 0 1 4 0 4 0-5 3-9 5-12 8 0 0-1 0-1 1 0 0-1 1-1 1-1 1-2 2-2 2l0 0c0 0-1 1-1 1-8 10-6 20-4 25 1 5 5 9 7 11 1 0 1 0 1 0 4-1 6-2 6-2 0 0-2 2-3 3 1 0 1 0 1 1 3-1 9-4 12-5 5-2 7-5 7-5 0 0 1 1 0 3-1 1-2 4-7 6 3-1 5-2 8-3 1 4 2 8 1 15-1 5 0 6-2 8-1 1 1 2 2 1 0 1-1 2-1 3-1 2-1 3-3 5 0 1 0 1-1 1l-2 3c-1 1-2 2-2 3 2-4 5-7 6-9 1-1 1-1 2-1 2 3 10 8 19 13 2 1 3 2 4 3-5-3-11-7-15-10-4-3-7-6-8-8 8 9 38 24 45 31 1 1 2 1 2 2 0 0 0 0 0 0 4 3 6 6 7 10 2 4 4 14-2 17-4 1-8 2-15 2l-1 0c-6 0-14 0-25 0-15 0-23 14-26 20l0 0 0 0c5 17 15 32 29 44 1 0-4-1-3 0 1 1 8 5 9 5 1 1-7 3-14 2-7-2-8-2-12-5 0 0-1 0-1 0 2 2 7 4 6 4-8-2-17-7-25-13 0 1 0 2 0 3-4-2-12-9-15-14 0 1 0 2 0 3-2-2-5-5-7-8-7 1-14 3-20 3-2 0-3 0-3 0-1 0-1 0-2 0-1 0-2 0-3 0-1 0-2 0-3 0l-2 0c0 0-1 0-2 0-8 0-15-2-22-4-6 5-14 13-20 22 0 0 0 0-1 0 0 0 0 0 0 0 0-1 0-2 0-1-4 7-8 19-8 27 0 0 0 0 0-1 0 0 0 0 0 1 0 0-6-4-10-17-1-1-1-2-1-3 0 0 0-1 0-2 0 2 0 3 1 4 0 0 0 1 0 1 0-1 0-1 0-2 0 0 0 0 0 0l0-1c-1-1-1-2-1-3 0 0 0 0 0 1 0 0 0 0 0-1 0 0 0 1 0 2l-1-2c0 0 0 2 0 3 0-1-1-2-2-3 0 0 0 0 1 1 0 1 1 2 1 2 0 1 0 1 0 1 0-1-3-4-3-7-1-2-1-3-2-5 0 1 0 1 0 1l0 0c0 0 0 0 0 0-2-4-4-10-5-16-2-7-3-15-3-26-1-10 0-17 0-19 1 1 1 1 1 1 0 0 0 0 0 0 0 0-1-1-1-1 0 0 0 0 0 1-6-9-10-16-12-20-8-14-15-37-21-72l0 1 0-1c0 0 0 0 0 0 0 0 0 0 1 1 0 0 0-1-1-1 0 0 1 1 2 4 0 1 0 1 0 2 2 5 5 13 10 21-6-19-11-48-8-91 0 0 0 0 0 0 0 0 0 0 0-1 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0-1 0-1 0 0 1 3 1 6 0 1 0 1 0 2 1 5 2 11 4 18 1-29 9-64 31-103 17-30 63-99 178-124-1 0-1 0-2 0 1 0 1 0 2 0-5 1-9 3-13 5 0 0 0 0-1 1-4 2-6 4-7 5 1 0 3-1 7-2 14-4 44-12 68-11l-1 0c0 0 0 0-1 0-2 0-4 1-5 2-4 2-5 4-5 4 0 0 1 0 3 0 16 0 91-1 133 32 10 8 17 17 19 24 0 0 0 0-1 0 0 0-2-1-4-2 2 1 3 2 4 2l0 2 1 0c0 0 0-1-1-1l0-1c5 3 10 6 15 9 8 6 18 13 27 22 1 2 3 3 4 5l0 1c0 0 1 0 1 0 1 1 1 2 2 3l1 0c1 1 2 3 3 4 4 5 8 10 10 15l1 1c6 10 10 21 10 34 0-3-1-6-2-9 0 0-1-1-1-1 1 1 1 1 2 2-1 14-2 22-5 29"/>
|
148 |
-
<glyph glyph-name="heroes" unicode="" d="M256 512l-222-128 0-256 222-128 222 128 0 256z m-164-344c-61 102-10 227 86 263 1 0 2 0 6 1-79-79-71-188 22-247-18-4-34-8-50-11-17-4-34-8-51-11-5-1-9-1-13 5z m322-18c-39-58-95-83-165-79-34 3-66 15-93 35-3 3-8 7-10 10 47-11 92-18 134 10 42 28 52 73 59 121 27-30 51-58 76-86 4-4 1-7-1-11z m32 93c-2-20-7-40-16-60-5 16-9 31-14 45-1 2-1 4-2 7-37 94-107 127-204 97-6-2-13-5-22-8 10 37 20 72 29 106 2 7 5 10 11 10 58 5 108-14 152-50 45-38 71-87 66-147z"/>
|
149 |
-
<glyph glyph-name="hearthstone" unicode="" d="M508 261c-1 0-2 1-3 2-30 18-61 35-90 53-1 1-2 1-2 2-5 12-12 24-20 34-1 1-1 2 0 3 4 20 9 40 14 59 1 2 1 2-1 2-19-5-37-9-55-13-3-1-6-2-9-1-9 4-18 8-27 12-1 0-2 1-3 2-1 1-2 3-3 5-18 30-36 59-54 89-1 2-2 2-3 0-5-9-11-18-16-28-14-22-28-45-41-68-1-1-2-2-3-3-7-4-13-8-20-11-2-1-4-1-6 0-13 4-27 9-40 14-7 2-14 4-22 7 0-1 0-1 0-2 5-20 10-40 14-60 0-1 0-2 0-3-5-12-10-25-17-38-1-2-2-3-4-4-27-15-53-30-80-45-5-3-9-5-14-8-2-1-2-1 0-2 0 0 0-1 1-1 30-19 60-38 90-57 1 0 2-1 3-2 5-11 12-21 16-32 0-1 0-2 0-4-6-20-12-40-19-61 0 0-1-1 0-2 0 0 1 0 2 0 20 5 40 10 61 15 2 1 3 0 4-1 11-6 21-12 32-16 5-2 9-5 11-10 16-29 33-57 49-86 1-3 2-3 4 0 17 29 34 58 52 87 1 2 2 2 3 3 13 6 25 11 37 19 2 1 3 1 4 1 20-5 40-10 60-15 3 0 3 0 2 3-3 12-7 24-10 36-2 7-4 16-7 23 0 2-1 3 0 5 8 11 15 21 19 34 0 1 1 2 2 3 21 13 41 26 62 39 9 6 18 11 27 17 3 1 3 2 0 4z m-160-7c-3-12-5-24-8-36-2-7-5-13-8-19-1-3-3-5-6-8-1-1-3-2-4-3-6-3-9-7-11-12-1-2-2-3-3-3-12-6-23-11-35-16-1 0-2 0-4 0-10 1-21-1-31-5-4-1-6 0-9 0-16 6-32 11-50 16 6 2 12 4 18 6 6 2 12 4 19 6 1 0 3 1 4 2 7 6 17 10 26 13 9 4 19 7 28 11 1 0 2 1 4 2 2 2 3 3 5 6 6 5 11 12 15 19 1 2 2 4 4 5 2 1 2 2 2 3 0 11 0 23-1 34 0 8-2 16-3 23 0 0-1 1-2 2-3 3-6 7-9 11-3 3-6 6-6 11 0 2-1 2-3 2-10-3-20-2-30-2-3 0-5-2-8-3-10-3-17-11-25-16-1-1-1-2-1-3-2-8-4-16-5-24 0-1 0-2 0-3 3-5 6-10 8-15 1-1 2-2 3-3 6-2 11 1 17 3 2 0 1 2 0 3-2 3-4 7-6 10-3 5-1 8 5 8 6 0 12 0 18 0 3 0 6-1 9-3 4-2 6-5 8-9 3-8 5-17 6-25 1-3-1-6-1-10-1-3-3-4-4-6-10-9-23-11-35-15-6-1-12 0-18 0-6 0-9 3-13 7-8 8-18 16-24 27-1 1-2 2-3 4-2 5-4 10-7 15-5 9-7 20-9 30 0 1 0 2 0 3 1 5 3 10 4 15 1 2 1 2 3 2 4 1 7 3 11 4 2 0 3 1 4 3 4 6 8 11 12 17 0 1 1 2 2 2 11 6 22 12 32 17 1 1 3 1 4 1 0 0 0 0 0-1 6-2 12-2 18 0 2 1 3 1 4 0 14-5 28-10 43-16 1-1 3-2 4-3 9-11 18-21 28-31 2-2 3-4 3-7 4-14 8-28 11-41 1 0 0-2 0-5z"/>
|
150 |
-
<glyph glyph-name="overwatch" unicode="" d="M291 435c28-6 55-18 77-36l48 57c-45 37-104 57-163 56-57-1-113-20-158-56l48-57c42 33 97 46 148 36z m216-129c-10 52-38 102-77 138l-49-56c39-37 61-91 57-144-2-27-9-53-23-76l-98 95-50 107 0-162 100-96c-45-35-106-46-160-31-22 6-43 16-61 30l101 97c0 53 0 109 0 162l-50-107-99-96c-30 53-31 121-2 175 9 17 21 33 35 46l-48 56c-1-1-2-1-3-2-50-48-81-117-79-188 0-72 33-144 88-191 51-45 120-68 188-61 73 5 143 44 186 104 42 56 58 131 44 200z"/>
|
151 |
-
<glyph glyph-name="warcraft" unicode="" d="M511 256c0 51-14 98-39 137l0 65-59 0c-44 34-98 54-158 54-35 0-70-7-100-21-7-3-13-6-20-9-1-1-2-2-4-2-6-3-11-6-16-10 0 0-1-1-2-2-5-3-10-6-14-10l-60 0 0-66c-25-40-39-86-39-136 0-42 10-81 28-117l0-79 63 0c45-37 102-60 164-60 63 0 120 23 165 60l63 0 0 79c18 36 28 75 28 117z m-134-178c-12-8-25-15-38-21-26-10-54-17-84-17-120 0-217 98-217 218 0 120 97 217 217 217 120 0 217-97 217-217 0-75-38-141-95-180z m27 326l-77 0 0 0 0-1 0 1 4-24 0-3-30-172-47 182 0-1 0 1-10-41-34-136 0 0-36 167 2 24 0 3-68 0 8-27 54-241-5-28 79 0 0 1-6 26 9 32 9 35 22-68-8-25 0-1 88 0-2 6-8 23 1 6 39 228 13 28 3 5"/>
|
152 |
<glyph glyph-name="opera" unicode="" d="M426 447c-45 40-104 65-169 65 0 0 0 0-1 0-141 0-256-115-256-256 0-137 108-249 244-255 4 0 8-1 12-1 66 0 125 25 170 65 53 47 86 115 86 191 0 76-33 144-86 191z m-302-197c0 0 0 12 0 12 1 55 19 105 48 138 24 28 54 45 87 45 75 0 135-85 135-189 0-104-60-189-135-189-33 0-63 17-87 45-29 33-47 83-48 138z"/>
|
153 |
-
<glyph glyph-name="starcraft" unicode="" d="M183 337l-52 0c0-6 0-3 0-9l102-110c0 36 0 84 0 119l-25-25z m-52-245c0-7 1-16 6-21 27-29 59-52 96-71 0 41 0 75 0 116l-102 0c0-10 0-13 0-24z m0 312c0-3 0-3 0-6l102 0c0 33 0 60 0 92-21 7-40 12-60 19-12 4-24 4-37 0-23-7-47-13-72-20 13-9 24-16 35-24 23-15 32-35 32-61z m182-4l72 0c0 3 0 1 0 4 0 26 9 46 30 61 11 8 23 15 36 24-26 7-49 13-73 20-12 4-24 4-36 0-20-7-40-12-60-19 0-40 0-73 0-114l25 23 6 0z m43-286c-28 6-53 23-74 50 0-57 0-107 0-164 37 19 69 42 96 71 5 5 7 14 7 21 0 9 0 11 0 20-2 0-3 0-4 0-8 0-16 1-25 2z m-257 235l87 0 23-20 51 56 0 3-219 0c0 0-14-6-14-17 0-6 0-17 0-21 0 0 0 0 0 0 0-1 0-1 0-1l154-179c0 0-67 0-88 0-21 0-36 15-36 15l-55-57c0 0 216 0 246 0 30 0 19 32 19 32z m362-12l49 51-201 0c0 0-21-14-34-41-1-2-3-7-3-7 0 0-36-85 3-147 74-120 187-43 187-43-1 0-2 0-3 0l-14 0c-128 5-106 159-102 185 0 1 0 3 0 3l2 9 87 1z m-107-14c-4-21-8-97 31-143 0 60 0 96 0 156l-29-1-2-8c1 0 0-1 0-4z"/>
|
154 |
<glyph glyph-name="keybase" unicode="" d="M505 263c-5 4-11 7-16 10-2 2-4 4-6 5-21 10-41 19-62 26-11 5-17 13-20 24-3 7-3 15-5 23-2 8-3 17-8 25-6 12-20 13-29 3-2-2-4-5-6-8-5 14-10 28-16 41-2 7-6 13-10 19-10 12-30 16-41 5-5-4-9-9-13-13-7-9-7-9-15-1-6 5-12 8-19 9-9 2-16-1-21-7-6-7-9-15-9-23-1-10-3-20-5-30-1 1-1 2-1 2-8 14-23 15-31 2-3-4-5-8-8-13-6-14-12-28-18-43-2-5-5-9-10-12-4-2-8-4-12-6-2-1-4-1-4-3-1-1-2-1-3-1-10 2-19 3-29 4-6 1-8 0-8-7 0-6-1-13-1-20 0 0 0 0 0 0-2 1-4 0-5-1-6-4-12-7-17-12-4-4-9-4-15-3-6 1-13 1-19 0-10 0-19-2-23-12 0-4 0-8 0-12 6-18 17-31 33-40 3-4 9-5 13-6 3-1 7-1 9-4 11-10 24-17 38-23 19-8 38-14 58-19 4 0 5-1 2-5-2-3-2-6-2-10-1-10 4-18 10-25 14-14 32-21 51-25 25-6 51-6 77-7 16-1 32 1 48 1 5 0 8 2 11 5 6 8 12 16 19 23 26 26 53 52 80 78 11 10 22 21 33 31 2 2 4 4 5 6 9 10 20 19 27 31 0 3 0 7 0 10-2 3-4 6-7 8z m-346 50c4 11 9 22 13 33 3 6 6 13 10 19 1 2 2 5 5 5 3 0 3-3 5-5 0-2 1-3 1-5 3-7 5-15 7-23 0-2 0-5 2-6 2 0 3 2 4 3 3 5 4 9 6 14 1-1 3-1 4-2 6-1 12-1 17-2 22-2 44-3 66 2 10 2 19 4 28 9 0 0 1 1 1 2 2-1 4 1 5 1 3 2 6 4 9 6 1-3 2-6 3-9 1-2 1-4 2-7 2-2 1-4-1-5-3-2-5-3-7-5-2-1-4-1-4-3-1 0-1 0-2 0 0 0 0 0-1 0-31-15-64-16-98-12-11 1-23 3-34 5-2 0-3-1-4-1-2 8-4 16-7 24 0 2-1 5-3 5-3 0-3-3-4-4-5-10-8-21-12-31-1-3 0-3 2-3-1-1-2-3-1-5 0 0 0 0 0 0-1-1-1-2-1-2 1-5 4-8 7-11 8-5 16-7 24-8 24-5 48-6 72-6 14 1 27 2 41 5 18 4 35 12 48 27 0 0 0 0 0 1 1 0 2 0 2 0 3 0 6-1 9-1 2 0 6-3 8 0 2 2-1 6-1 9-2 9-3 18-5 27-1 1-1 3-3 4-2 0-2-2-3-3-1-1-2-3-2-4-3-4-4-9-6-12 0 0 0 0 0 0-2 1-5 2-4 5 3 9 6 18 12 25 3 4 5 4 7 0 3-5 5-10 6-15 2-10 3-19 5-29 1-6 3-12 8-16 7-8 12-18 13-29 0-1 1-2 1-3-20-2-40-4-60-5-13-1-27-4-40-1-2 0-3 1-5 1-33 4-66 9-99 13-11 1-21 3-32 5-10 3-21 4-32 5 8 3 14 9 18 18z m132-64c8 0 9-1 7-9-1-4-3-7-7-9 2 6 3 12 0 18z m-14-21c-15-3-32 7-37 22-2 4-1 6 4 5 11-1 22-3 34-4-6-8-7-16-1-23z m-115 40c2-1 6 0 7-3 1-4-2-10-7-14 2 6 2 11 0 17z m-40 5c9-2 19-3 29-4-5-7-6-13-1-20-15-1-27 6-32 18-2 5-1 6 4 6z m179-181c-1-3-2-5-5-5-4 0-7 0-10 0-9-1-17-2-26-1-8 0-17 0-26 1-16 2-31 5-45 12-9 4-16 10-21 17-3 4-5 8-3 13 3 2 4 0 6-1 9-6 20-9 31-10 25-3 50-1 74 7 15 6 28 12 39 24 5 5 9 11 8 19-2 11-10 18-20 18-3 0-6 0-9 0-7-2-14-5-21-8-11-4-22-10-34-14-21-8-43-14-66-11-32 4-62 14-91 29-8 5-15 11-22 17 0 0-1 0-1 0 1 2 1 4 2 6 0 2 0 3 0 5 1 1 1 2 1 4-1 10-1 21-6 30 6 3 10 7 15 11 3 1 5 4 9 2 0 0 0 0 0 0 1-9 3-17 9-24 4-8 11-11 19-13 10-3 21-2 31 0 18 3 33 9 45 23 3 4 6 9 9 14 2 0 3-1 5-1 2-1 2-3 2-5 3-14 10-27 21-37 14-12 31-19 50-22 11-1 21 2 29 11 4 3 6 7 8 11 5 8 8 17 10 27 1 3 2 5 6 5 6 0 13 0 20 0 21 1 43 2 64 3 0-1-1-3-1-4-5-21-15-40-28-57-14-18-31-34-49-48-16-12-26-28-29-48z m-124 44c2 5 6 6 10 6 23 1 45 7 66 16 12 5 23 10 35 15 4 2 7 3 11 3 6 1 10-1 13-6 3-5 0-8-2-12-7-8-15-13-24-17-29-13-59-18-90-12-7 1-13 4-19 7z m251 68c-13-17-27-31-43-45-14-12-28-23-41-35-5-4-8-9-12-13-3-5-5-11-6-17 0-3 1-5 3-6-6-2-11 0-17 0-2-1-1 2-1 3 0 14 6 25 14 35 8 9 18 15 27 23 28 25 51 52 63 89 6 18 7 37 3 56-1 1-1 2-1 4 14-5 28-11 42-17-4-29-13-55-31-77z m-119-35c-33-19-68-32-106-33 17-9 91 14 106 33z"/>
|
155 |
<glyph glyph-name="alliance" unicode="" d="M70 408c0 0 0 1 1 1 6 5 12 8 21 7 6-1 11-3 18-5 7-3 13-6 21-8 4-2 9-3 13-3 14 0 23 10 22 23 0 0 0 1 1 1 2-3 6-5 10-6 6-1 11 0 16 2 8 3 12 9 10 18 0 3-1 6-2 9 0 3 0 4 2 4 5 0 10 0 15-1 10-2 19-7 28-12 2-1 4-2 7-4 0 3-1 5-1 8-1 7-1 13 2 19 0 3 1 5 3 5 1 0 1-2 2-4 2-6 1-13 1-20 0-2-1-4-1-6 2 0 3 1 3 2 6 3 12 7 19 9 9 4 19 6 28 5 3-1 3-1 2-4-1-3-1-6-2-8-1-10 3-17 12-19 9-3 18-2 26 4 0-1 0-2 0-2-1-10 7-20 17-21 5-1 10 0 14 1 8 2 15 5 22 8 7 2 13 4 19 5 9 1 17 1 23-6 0-1 1-2 3-1-3 6-8 9-15 11-7 1-15 0-22-1-9-1-17-3-26-3-6 0-12 0-18 4-2 1-4 2-4 4 1 2 4 3 6 3 4 1 8 0 12-1 3 0 7-1 11 0-15 10-31 12-47 13 8 3 16 6 25 11-2 0-3 0-5 0-9-1-19-1-29 1-3 1-3 1-1 4 3 5 8 7 14 9 4 2 8 2 12 3-3 2-7 3-11 3-11 1-22 0-33-3-9-1-17-3-26-4-2 0-3 1-3 3 0 7 2 12 7 15 4 3 9 5 14 6 1 1 3 1 5 2-1 0-2 0-3 0-11 0-21-3-30-9-2-1-3-1-5 0-7 5-11 12-13 20-1 4-1 7-1 12-2-2-1-4-3-6-1 2-1 4-3 7 0-4 0-8 0-11-2-9-6-17-14-22-2-1-3-1-5 0-6 4-13 7-20 8-4 1-8 1-12 0 1 0 2-1 3-1 6-1 11-3 16-6 4-5 7-10 6-17 0-2-1-3-3-2-7 1-15 2-22 4-13 2-25 4-37 3-4-1-7-1-11-3 0-1 1 0 2 0 5-1 10-2 16-4 3-2 7-4 9-8 1-2 1-3-2-3-10-2-20-2-30-1-1 0-2 0-3-1 9-4 17-7 26-11-17 0-34-2-48-13 1-1 2 0 3 0 6 0 11 2 17 2 2 0 4-1 7-2 2-1 2-2 0-4-4-3-9-5-14-5-7-1-14 0-22 1-9 2-17 3-26 3-5 0-8 0-12-2-4-1-6-4-8-8 0-1-1-1 0-2 0-1 0 0 1 0z m128-128c-4-4-8-6-11-9-3-4-6-8-6-13-1-24 9-42 27-56 2-2 4-3 7-4 11-5 24-2 32 8 9 9 10 22 4 33-3 4-6 8-9 11-4 5-8 9-11 14-6 9-7 18-4 28 2 5 4 10 7 14 4 8 7 17 7 25 0 3 0 3-3 3-5-1-8-3-12-5-4-1-7-3-10-4-9-1-14 2-17 9-1 3-2 5-2 8-1 7-2 13-3 19-1 2 0 2 1 3 6 1 11 0 16-4 3-2 5-4 8-6 8-6 18-8 28-9-1 0-1 0-1 1-12 7-21 15-30 26-2 3-5 5-8 8-8 6-16 6-23-2-1-1-2-3-3-4-6-8-9-19-10-29 0-11 4-18 13-22 3-1 5-2 9-4 3-1 5-2 8-4 11-6 13-17 6-27-4-3-7-6-10-8z m112 36c4 2 8 5 12 6 3 2 7 3 10 5 5 3 7 6 8 11 3 18-4 32-16 44 0 1-1 1-1 1-4 3-8 3-11 2-4-3-8-5-11-8-5-4-9-8-13-12-5-7-12-12-19-16-1-1-3-1-4-3 10 1 20 3 28 9 3 2 6 5 9 7 5 3 10 4 15 4 2-1 3-1 2-3-1-3-2-6-2-9-1-5-2-10-3-16-3-10-10-13-20-11-3 1-6 3-9 4-4 2-7 3-12 4-2 1-3 0-3-2 1-9 3-17 7-25 2-2 3-5 5-8 3-8 5-15 3-24-1-8-5-13-10-19-4-5-9-9-12-14-12-17-6-36 12-44 11-4 20-2 29 4 15 12 24 27 26 47 1 11-2 20-11 26-3 3-6 6-9 8-3 3-5 5-7 9-5 8-2 17 7 23z m-215-129c2 3 4 6 6 9 2 5 4 10 7 14 2 6 5 12 8 17 5 9 12 12 22 9 2 0 5-2 7-3 0 0 1-1 2 0-2 6-5 10-11 12-4 2-9 2-13 2-10 0-19-3-28-8-1-1-2-2-2 0-2 16-3 32 0 48 2 15 10 27 23 35 3 1 6 3 10 5 4 3 8 5 11 8 2 2 5 4 6 7 0 0-1 1-1 1-1 0-1 0-2 0-13 1-25 0-38-4-2-1-2 0-3 1 0 4-2 7-5 8-2 1-3 2-5 2-2 0-2 1-2 3 0 1 0 1 1 2 2 11 8 19 17 25 6 4 13 7 20 9 1 1 2 1 1 2-7 7-14 12-23 15-6 1-12 1-17-2-2 0-3-1-3-3 0-5 2-9 6-12 3-3 3-3 0-6-6-4-10-10-13-16-10-16-16-33-16-51 0-2 1-3 2-4 3-2 6-3 9-4 1 0 2 0 1-1-1-6 2-10 5-14 1-1 2-2 1-3-4-26-2-52 2-78 1-5 1-5-3-7-8-4-12-11-10-20 1-1 1-2 2-3 10-4 19-4 26 5z m339 19c-2 1-3 1-2 3 5 27 7 54 2 80 0 2 0 2 1 3 4 4 6 9 5 14 0 1 0 2 2 2 2 0 5 1 8 3 2 1 3 3 3 5-1 21-8 39-20 55-3 4-7 7-10 11-3 4-3 4 1 7 2 2 4 4 5 6 1 7 0 8-7 9-11 3-28-5-36-16 1 0 2-1 3-1 8-3 15-6 22-11 8-7 13-15 14-25 0-2 0-3-2-3-6 0-10-3-11-10-1-2-1-2-3-1-13 4-26 5-38 4-1 0-2 0-3-1 1-1 2-3 3-4 4-4 8-6 12-9 6-3 10-5 15-9 10-6 16-14 19-25 5-19 4-37 2-55 0-1-1-2-2-1-9 7-21 9-34 8-5 0-9-2-13-5-3-2-4-5-5-9 3 1 5 2 7 2 9 4 16 2 22-5 2-2 3-4 4-6 3-5 5-11 8-16 3-6 5-12 8-18 7-10 18-13 29-8 1 1 2 1 2 3 2 6 1 11-3 16-3 4-5 6-8 7z m-111-88c-5-1-7-3-9-7-2-5-2-9-3-13-2-10-6-19-13-27-8-10-17-19-28-27-1-2-3-3-5-4-5-3-11-3-17-1-3 2-7 4-10 7-11 8-20 19-29 30-4 6-7 13-8 21 0 4-1 9-3 14-1 3-4 6-9 6-4 1-7-1-10-5-2-3-3-8-4-12-1-7 0-14 3-21 2-3 5-6 9-6 0 1 0 1-1 2-3 5-5 12-4 19 0 2 1 4 2 6 2 1 3 1 4-1 1-1 1-3 1-5 1-10 6-18 11-25 4-7 9-13 14-19 1-2 2-3 1-5-1-8 0-15 3-22 1-2 3-4 5-6 0 2-1 3-1 5-1 4-2 8-1 12 0 2 2 4 5 4 6 0 12-3 16-7 4-3 3-3 1-6-3-3-6-8-8-12-2-4-3-8-1-14 1 3 2 5 4 7 1 1 3 3 4 4 3 2 6 4 8 6 5 3 5 3 11 0 6-4 12-8 15-15 0 0 1 0 1 0 1 6-1 11-4 16-2 3-4 7-6 10-1 1-2 2-1 3 4 3 8 7 15 8 8 1 9 0 9-8 0-3-1-6-1-10 0-1-1-1-1-3 2 2 3 4 5 6 4 7 4 15 3 23-1 2 0 3 1 5 6 7 12 14 16 22 4 7 7 14 8 21 0 2 1 3 2 5 0 1 1 2 2 2 1 0 2-1 2-2 4-6 3-16-1-21-1-1-1-2-2-3-1-1-1-1-1-2 1 0 1 0 2 0 3 1 5 3 7 5 5 11 6 22 0 33-1 5-4 7-9 7z m100 42c-3 2-7 4-11 7-3 1-5 3-7 7-1 1-2 2-1 4 2 1 3 2 5 1 2 0 4-1 6-1 1-1 2-1 4 0-3 1-5 3-7 5-2 1-4 2-7 1-2 0-2 1-2 2 1 4 1 9 1 13-1 9-5 17-12 22-9 6-19 5-26-1 6-2 6-2 12-8 2-2 4-4 8-3 2 0 3-1 3-3-1-8-2-17-4-26-5-23-17-44-31-64-1-1-2-1-2 0-4 4-7 8-11 11-4 5-8 8-13 11-5 2-10 2-15 0-3-2-6-3-10-3-1 0-1 0-1-1 1-8 7-12 14-10 3 0 6 2 8 2 9 4 14 1 17-9 0 0 1-1 1-2 1-6 1-12 1-18 1-6 1-14 4-20 0-2 1-3 3-5 0 1 0 2 0 3-1 12 2 23 7 33 5 9 12 16 20 23 3 2 3 2 5-1 3-3 4-6 6-8 1-2 3-4 6-5-4 10-5 21-4 31 0 7 2 14 6 20 1 2 2 2 4 0 2-1 3-3 3-5 0-4 0-8 0-11 0-3 1-6 3-8 0 2 1 4 1 6 0 2 0 4 1 5 1 5 5 6 9 5 5-1 8-4 11-8 2-5 1-9-3-12-1-1-3-2-4-3 3 0 5 1 7 1 8 4 10 13 4 19-3 0-6 2-9 3z m-233-35c3-1 6-2 9-3 2 0 5 1 7 2 2 2 3 6 4 8 1 1 0 2-1 2-3 0-6 1-8 2-7 4-13 3-19-1-5-3-9-7-13-11-3-3-5-5-8-8-1-1-2-1-3 0-7 10-13 20-18 31-9 18-15 38-16 59 0 2 0 3 3 3 3-1 5 0 7 2 4 4 7 8 13 9-9 7-21 6-29-1-5-4-7-11-8-17-1-5-1-11 0-16 0-1 1-2-1-2-7 2-11-3-15-6 1 0 2 0 4 0 2 1 4 2 6 2 2 0 4-1 5-2 1-2 0-3-1-4-2-2-3-4-5-6-4-2-8-4-11-6-4-2-7-4-10-7-3-4-4-9-1-14 2-4 7-6 12-6-1 1-2 2-4 3-4 3-5 6-2 11 1 3 4 6 7 8 7 4 12 2 14-6 0-2 0-4 1-6 0 0 0-1 1-1 1 2 1 4 2 7 0 4 0 8 0 11 1 3 1 5 3 6 2 2 3 2 5-1 1-2 2-4 3-7 3-9 3-19 2-29-1-5-2-10-3-15 3 2 5 4 7 7 2 2 3 6 5 8 1 1 2 1 3 0 12-10 21-22 26-37 2-7 3-15 2-22 1 0 1 1 1 1 3 6 4 12 4 18 2 8 1 16 3 24 1 11 6 14 17 10z m98 36c3 5 4 10 4 16 0 4-1 5-5 6-1 0-2 0-4 0-3 0-6 0-10 0-7-1-9 1-12 8 0 3-1 5-3 6-2 2-3 2-5 0-1-2-2-5-3-7-2-5-5-7-10-7-2 0-5 0-8 0-3 0-7 1-10-1-2 0-2-1-3-3 0-7 2-14 6-20 3-3 5-7 8-11 4-5 5-10 5-16 0 0 0-1 1-1 2 1 2 4 3 6 1 3 1 6 2 8 1 2 3 2 5 1 1 0 3-1 2-4-1-3 0-7 1-11 2-6 6-12 7-18 1 2 1 5 1 7-1 4-2 9-3 13 0 3 0 6 1 10 2 3 4 4 6 4 3-1 4-3 5-5 0-3 1-5 1-8 1-1 1-3 3-3-2 8 1 13 6 19 4 4 6 8 9 11z m-51 120c-3-1-4-2-3-4 0-8 3-15 8-21 4-5 8-9 12-14 1-1 2-1 3 0 4 4 9 8 13 13 5 7 8 14 8 22 0 2 0 3-3 4-6 1-12 2-19 2-7 0-13-1-19-2z m5 108c-2-3-4-7-5-11-2-5-1-9 2-13 8-9 18-10 28-5 1 0 2 1 4 2 6 4 8 10 5 17-1 3-3 5-4 7-5 6-6 12-5 19 0 2 0 4-1 6-2-4-4-8-5-12-1-5-1-10-1-14 0-3 0-6-1-8-1-1-2-2-4-2-1 0-1 1-2 3-2 5-2 11-2 16 0 4 0 8-1 12-1 2-2 4-4 5 1-4 1-8 0-12-1-4-3-7-4-10z m20-56c-1-1-1-3-1-4-1-5 1-10 2-14 2-4 3-8 3-12 0-1 0-2-2-3-4-2-9-3-14-2-4 2-5 3-4 7 1 5 3 9 4 14 1 4 2 8 0 13-2-7-7-14-10-20-3-6-4-13-4-20 0-2 0-3 2-4 12-5 25-5 36 0 2 1 3 2 3 4 0 6-1 12-3 18-4 8-10 15-12 23z m-192-55c0 3-1 5-5 4-4-1-5-3-6-6-2-7-1-13 2-19 0 5 2 9 5 13 2 3 3 5 4 8z m383-1c-1 3-3 5-7 6-2 0-3 0-4-3 0-4 1-6 3-9 2-4 6-8 6-13 3 6 4 12 2 19z"/>
|
156 |
<glyph glyph-name="livejournal" unicode="" d="M176 462c0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0z m95 20c-34 0-66-7-95-20 2-1 3-2 5-4 5-5 10-10 15-15 1-1 1-1 1-1l172-172c-53-31-94-73-124-128l-173 173c-1 1-1 1-2 2-5 6-11 11-16 16-1 1-2 2-3 4 26 57 67 99 126 124-1 1-1 1-1 1 0 0 0 0 0 0-15 15-30 29-44 44-6 5-11 7-18 3-9-4-17-9-25-14-28-19-51-42-70-69-6-9-12-18-17-29-3-6-3-10 3-15 15-15 30-30 45-45-13-29-19-62-19-95 0-133 108-241 240-241 133 0 241 108 241 241 0 132-108 240-241 240z m25-359c20 46 52 77 96 98 8-41 16-80 24-123-42 9-80 17-120 25z"/>
|
@@ -160,4 +153,26 @@
|
|
160 |
<glyph glyph-name="zapier" unicode="" d="M508 298l-149 0 106 106c-8 12-18 23-28 33-10 10-21 20-33 28l-106-106 0 149c-13 3-27 4-42 4-14 0-29-1-42-4l0-149-106 106c-12-8-23-18-33-28-10-10-20-21-28-33l106-105-149 0c0 0-4-28-4-42 0-15 1-29 4-43l149 0-106-106c16-24 37-44 61-61l105 106 0-150c14-2 28-4 42-4l1 0c14 0 29 2 42 4l0 150 106-106c12 8 23 18 33 28 10 10 20 21 28 33l-106 106 149 0c3 13 4 28 4 42 0 15-1 29-4 42m-188-42c0-19-4-37-10-54-17-6-35-10-54-10-19 0-37 4-54 10-6 17-10 35-10 54 0 19 4 37 10 54 17 6 35 10 54 10 19 0 37-4 54-10 6-17 10-35 10-54z"/>
|
161 |
<glyph glyph-name="google-scholar" unicode="" d="M458 455c5 0 8-2 8-4 1-3 1-6 1-10l0-172c0-4-2-7-4-10-3-3-6-4-10-4l-6 0c-4 0-7 2-10 4-3 3-4 6-4 10l0 172c0 4 0 7 0 10 1 2 3 4 8 4l0 23-75-62c1-1 1-2 2-2 0-1 1-1 1-2 3-6 6-13 8-20 1-7 2-16 2-25 0-7 0-13-1-19-1-6-3-13-5-18-3-5-5-10-8-15-3-4-6-8-9-11-3-4-7-7-10-10-3-3-7-6-10-9-3-3-6-6-9-9-3-3-5-6-8-9-2-3-4-6-5-9-1-4-1-7-1-10 0-4 0-7 2-10 1-3 3-7 7-10 3-3 6-7 10-10 3-3 7-7 12-10 4-3 9-6 13-10 4-3 9-7 13-11 4-4 8-8 12-13 4-6 7-11 10-17 3-6 5-13 6-19 2-7 3-14 3-21 0-10-1-19-4-28-2-9-6-17-11-24-5-8-11-15-17-21-7-7-14-12-21-17-9-4-17-9-25-12-9-3-17-6-27-8-8-2-17-4-27-5-9-1-18-2-27-2-5 0-11 0-17 1-5 0-11 1-17 2-5 1-11 2-17 3-6 2-12 4-17 6-6 2-12 4-17 7-5 3-10 6-14 10-5 3-9 7-12 11-4 4-7 9-10 14-3 5-5 11-7 17-1 5-2 11-2 18 0 8 1 15 3 22 2 7 5 14 10 21 4 6 9 12 15 18 5 5 12 10 19 14 6 4 13 7 21 11 7 3 16 5 26 8 10 2 20 4 31 5 11 2 24 3 37 4-6 8-10 15-13 22-3 7-5 14-5 20 0 4 1 8 2 12 1 4 2 8 4 13-3 0-6-1-10-1-3 0-6 0-9 0-15 0-27 2-39 6-12 5-23 11-32 21-10 9-17 20-22 31-5 11-7 24-7 38 0 1 0 3 0 4 0 2 0 3 0 4l-116 0 173 150 285 0-26-20 0-37z m-143-297c0 1-2 2-4 3-2 2-4 3-7 6-3 2-6 4-8 6-1 1-2 2-3 2-1 0-3 0-5 0-2 0-5 1-8 1-7 0-13-1-19-1-7-1-13-2-19-3-6-1-13-3-19-5-6-2-12-4-18-6-6-3-11-6-17-10-4-4-9-8-12-13-4-5-7-11-9-17-2-6-3-12-3-19 0-7 1-13 3-19 1-5 4-11 8-16 3-5 7-10 11-13 5-4 10-8 15-10 5-3 10-6 16-8 6-2 11-4 17-5 7-2 13-3 18-3 7-1 13-1 18-1 13 0 24 1 34 4 11 2 20 6 29 12 9 6 15 12 19 21 5 9 7 18 7 30 0 2 0 4-1 7 0 2 0 4-1 7-1 3-2 5-2 7-1 2-2 4-2 5-1 2-2 4-3 6-1 2-3 4-5 6-2 3-3 4-5 6-2 2-3 3-4 4-1 1-2 2-4 4-1 2-4 4-6 6-3 3-5 4-7 6-2-1-3 0-4 0z m-4 135c4 5 8 12 11 20 3 8 4 16 4 24 0 8-1 16-2 24-2 8-3 16-6 25-3 8-6 16-11 24-4 7-9 14-15 21-6 7-13 12-20 15-6 4-14 5-22 5-9 0-17-1-24-5-6-3-12-8-17-14-5-7-8-13-11-21-2-8-3-17-3-26 0-8 0-16 2-24 1-7 3-15 5-24 3-8 6-15 11-23 4-7 9-13 15-20 6-6 13-11 20-14 7-3 14-5 22-5 9 0 17 2 24 5 6 2 12 7 17 13z"/>
|
162 |
<glyph glyph-name="researchgate" unicode="" d="M336 0c11 0 22 2 29 5l0 16c-22 0-44 15-60 32-27 29-63 77-93 130 50 12 86 58 86 104 0 69-53 101-123 101-36 0-65-2-92-2-24 0-49 0-64 0l0-17 23-4c16-4 26-11 26-49l0-240c0-38-10-45-26-48l-23-4 0-19c17 1 46 2 74 2 28 0 63-1 79-2l0 18-32 4c-17 3-25 10-25 48l0 102c15-1 27-1 47-1 37-66 72-117 92-140 19-22 47-36 82-36m-177 204c-21 0-30 0-44 2l0 153c14 1 32 1 49 1 52 0 82-27 82-75 0-49-33-81-87-81m186 154c0 3-1 7-1 11-1 4-1 10-1 16 0 6-1 13-1 21 0 8 0 16 1 22 0 6 0 11 1 15 0 4 1 8 1 11 1 3 2 6 3 9 5 16 13 28 26 36 12 9 26 13 44 13 9 0 17-1 24-3 8-2 14-5 20-9 5-3 10-8 14-13 4-5 7-10 10-15 1-2 0-4-1-5l-22-9c-2-1-3 0-4 2-5 9-9 15-17 20-7 4-13 6-24 6-12 0-17-2-24-7-7-5-13-12-16-22-1-2-1-4-2-6-1-3-1-6-2-10 0-4 0-9 0-14 0-6-1-12-1-20 0-8 0-14 1-20 0-6 0-10 0-14 1-3 1-7 2-9 0-3 1-5 2-7 3-10 8-15 14-20 7-4 15-7 26-7 10 0 20 3 26 7 6 5 11 11 14 19 1 3 2 8 3 13 1 5 1 10 1 18 0 1-1 2-2 2l-36 0c-2 0-3 1-3 3l0 21c0 2 1 3 3 3l66 0c2 0 3-1 3-3l0-19c0-9 0-18-1-25-1-8-2-15-4-20-5-16-12-27-25-36-12-8-27-12-45-12-17 0-32 4-44 12-12 8-20 20-26 36-1 2-2 6-3 9"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
</font></defs></svg>
|
120 |
<glyph glyph-name="amplement" unicode="" d="M253 310c23 3 40 7 51 12 18 7 27 20 27 35 0 20-7 34-21 41-14 8-35 12-62 12-30 0-51-8-64-22-9-11-15-26-18-45l-122 0c2 43 14 77 35 104 34 43 91 65 173 65 54 0 101-11 143-32 41-21 62-61 62-119l0-223c0-15 0-34 1-56 1-16 3-28 7-34 5-6 11-11 19-15l0-18-138 0c-4 10-7 19-8 28-2 9-3 18-4 29-17-19-38-35-61-48-27-16-58-24-92-24-44 0-81 12-110 37-29 25-43 61-43 107 0 60 23 103 69 130 26 14 63 25 112 31z m78-59c-8-5-17-9-25-12-8-3-19-7-34-9l-29-5c-27-5-46-11-58-18-20-11-30-29-30-53 0-22 6-38 18-48 12-9 27-14 45-14 27 0 53 8 76 24 24 16 36 45 37 88z"/>
|
121 |
<glyph glyph-name="viber" unicode="" d="M295 383c-6 1-12-4-12-11-1-6 4-12 11-13 40-2 59-22 61-64 1-6 6-11 13-11 0 0 0 0 0 0 7 0 12 6 12 12-3 55-32 84-85 87z m135-120c6 0 12 5 12 11 1 48-13 88-43 120-29 32-70 50-122 55-7 0-12-5-13-12 0-6 5-12 11-13 47-3 81-18 106-46 26-27 38-61 37-103 0-6 5-12 12-12z m3 178c-47 46-107 70-178 71-7 0-12-6-12-12 0-7 5-13 12-13 64 0 119-22 162-64 43-42 65-99 65-174 0-6 6-12 13-12 6 0 12 6 12 12-2 81-26 146-74 192z m45-330c0 0-28 23-42 33-13 10-33 22-44 29-21 11-42 4-50-8l-18-22c-10-11-27-10-27-10-125 32-158 159-158 159 0 0-2 17 9 26l23 18c11 9 18 30 7 50-6 11-19 32-28 45-11 13-34 41-34 41-11 13-27 16-45 7 0 0 0 0 0 0-17-9-32-21-46-37 0 0 0 0 0-1-11-12-17-25-19-38 0-1 0-3 0-5 0-6 0-11 2-17l1 0c5-19 19-51 48-105 19-34 38-63 58-87 10-13 21-26 35-39 0-1 1-2 1-2 1-1 1-1 2-2 0 0 1-1 1-1 1-1 1-1 2-2 13-13 26-24 39-34 24-20 53-39 88-58 53-30 85-43 104-48l1-1c5-1 10-3 16-3 2 0 4 0 6 1 12 2 25 8 37 18 0 0 0 0 1 1 16 14 28 30 37 46 0 0 0 0 0 1 9 17 6 33-7 45z"/>
|
122 |
<glyph glyph-name="zomato" unicode="" d="M407 356c0 0-86 32-151 14-66-18-93-60-93-60 0 0-30-33-52-36-22-3-39-4-111 0l0-35c72 3 89 2 111-1 22-2 52-36 52-36 0 0 27-42 93-60 66-18 152 14 152 14 102 37 104 97 104 97l0 6c0 0-2 60-105 97z m-100-19c-32-1-53-10-67-18 0 0 0-1 0-1-1 0-2 0-3 0-4 0-6 3-6 6 0 3 1 5 3 6 9 4 18 7 30 10 10 4 23 5 37 5 31 0 63-8 80-13 0 0-37 7-74 5z"/>
|
|
|
123 |
<glyph glyph-name="draugiem" unicode="" d="M366 348c91-1 145-58 84-135-28-35-75-71-138-93-3-1-6-2-9-3-7-2-12-4-18-6-14-4-26-7-40-10-14-2-27-5-40-6-9-1-18-1-26-1-59-2-103 14-117 48-17 41 18 98 88 142-52-21-146-70-150-140l0-9c1-7 2-14 4-22 15-47 86-69 175-61 9 0 18 1 27 3 13 2 26 4 40 7 13 4 26 7 40 11 3 1 6 2 8 3 7 2 12 4 18 6 78 29 135 66 169 109 20 25 29 48 32 69l0 15c-6 51-66 81-147 73m-60 25c2 0 4 1 6 1 13 3 19 17 20 34 0 17-6 31-20 33-1 1-3 1-4 1-12 0-19-7-23-17-2-5-3-11-3-17 0-8 1-15 3-21 4-8 10-14 21-14z m0-5c-6 0-11-1-15-2l1-1 2-5 1-4 2-4 1-4 0-5 1-5 0-9-1-4-1-10 0-4 0-5-1-4-1-5-1-5-1-4-2-8-1-4-1-3-1-4 0-2-1-2-1-5 0-3-1-3 0-1-1-6 0-4-1-3 0-4-1-4 0-3-1-4 0-3-1-4 0-3c1-11 1-20 2-25 0-6 1-10 3-13 3-4 7-5 14-6 6 1 10 2 13 5 3 2 4 7 6 14 3 16 9 65 15 87 8 31 28 87-21 91-2 0-4 0-6 0z m-61 15c20 0 29 18 29 40 0 21-9 39-28 39l-1 0c-19 0-28-18-28-39 0-22 9-40 28-40z m-39-91c1-7 3-14 5-20 6-25 12-82 14-99 2-18 8-21 21-23 12 1 18 5 20 23 2 17 8 74 14 99 2 6 4 13 5 20 6 23 10 50 0 67-6 11-18 18-40 18-21 0-34-7-40-18-9-17-5-44 1-67z m-27 82c2 0 4 0 6 0 11 0 17 5 21 14 2 5 3 12 3 20-1 6-2 12-3 17-4 11-12 17-23 17-1 0-2 0-3 0-15-2-21-17-20-34 0-17 6-31 19-34z m-6-185c1-7 3-11 6-14 3-3 7-5 13-5 7 0 11 2 14 6 1 3 3 7 3 13 1 5 1 14 2 25l0 0 0 4-1 3 0 4-1 4 0 3-1 4 0 4-1 3 0 4-1 3 0 3 0 0-1 3 0 3-1 3 0 2-1 3 0 2-1 3-1 4-1 5-2 8-1 4-1 4-1 5-1 4-1 5 0 4-2 10 0 13 1 5 1 5 1 4 1 4 2 4 2 5 1 1c-4 1-9 2-15 2-2 0-4 0-6-1-49-4-29-60-21-91 6-22 13-71 15-87z"/>
|
124 |
<glyph glyph-name="endomodo" unicode="" d="M97 347c0 10-7 19-17 22l-63 0c-10-3-17-12-17-22 0-12 10-22 22-22l53 0c13 0 22 10 22 22z m384 56c-26 40-72 61-149 61-11 0-22-1-32-2-2 0-4 0-6 0 0 0 0 0-1 0 0 0-1 0-2-1-40-4-63-4-63-4l-104 0c-12 0-22-10-22-22 0-13 10-22 22-22l94 0c12 0 22-10 22-22 0-11-7-19-17-22-1 0-3 0-5 0l-80 0c-9-3-17-12-17-22 0-12 10-22 22-22l20 0c12 0 22-10 22-22 0-12-10-22-22-22l-101 0c-12 0-22-10-22-22 0-12 10-22 22-22l96 0c12 0 22-10 22-22 0-12-10-22-22-22l-11 0c-12 0-22-10-22-22 0-12 10-22 22-22l43 0c13 0 22-10 22-22 0-12-9-22-22-22l-9 0c-14 0-24-11-24-24 0-13 10-24 24-24l49 0c0 0 30-1 61-4 7-1 14-2 20-3 3 0 5 0 6 0 11-1 21-1 32-1 56 0 107 12 134 23 5 2 9 5 9 11 0 1 0 3-1 3l-9 35c-2 6-5 9-10 9 0 0-2 0-4-1-27-8-60-18-108-18-45 0-76 7-97 27-18 18-27 39-28 76l263 0c8 0 12 7 12 14 1 11 1 26 1 36 1 58-6 106-30 139z m-56-154c-23 0-42 19-42 42 0 23 19 41 42 41 19 0 35-13 40-30-3 4-8 6-12 6-10 0-17-8-17-17 0-9 7-17 17-17 5 0 9 2 12 6-5-18-21-31-40-31z"/>
|
125 |
<glyph glyph-name="filmweb" unicode="" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m-59-76c28 0 50-22 50-50 0-29-22-51-50-51-29 0-51 22-51 51 0 28 22 50 51 50z m-129-180c0 28 23 51 51 51 28 0 50-23 50-51 0-28-22-51-50-51-28 0-51 23-51 51z m129-180c-29 0-51 22-51 50 0 29 22 51 51 51 28 0 50-22 50-51 0-28-22-50-50-50z m121 154l-86 0 0 52 86 0z m99-71c-18-27-43-48-72-62l-20 44c44 20 71 64 71 114 0 26-7 50-20 71-12 20-30 36-51 46l21 43c29-14 53-36 71-64 18-28 27-61 27-96 0-34-9-68-27-96z"/>
|
139 |
<glyph glyph-name="instagram" unicode="" d="M256 466c69 0 76-1 103-2 26-1 39-5 48-8 12-5 21-11 29-19 9-9 15-18 19-29 4-10 8-23 9-48 1-28 2-35 2-104 0-69-1-76-2-103-1-26-5-39-8-48-5-12-11-21-19-29-9-9-18-15-29-19-10-4-23-8-48-9-28-1-35-2-104-2-69 0-76 1-103 2-26 1-39 5-48 8-12 5-21 11-29 19-9 9-15 18-19 29-4 10-8 23-9 48-1 28-2 35-2 104 0 69 1 76 2 103 1 26 5 39 8 48 5 12 11 21 19 29 9 9 18 15 29 19 10 4 23 8 48 9 28 1 35 2 104 2m0 46c-70 0-78-1-105-2-28-1-47-5-62-11-17-7-32-16-46-30-14-14-23-29-30-46-6-16-10-34-11-62-1-27-2-35-2-105 0-70 1-78 2-105 1-28 5-47 11-62 7-17 16-32 30-46 14-14 29-23 46-30 16-6 34-10 62-11 27-1 35-2 105-2 70 0 78 1 105 2 28 1 47 5 62 11 17 7 32 16 46 30 14 14 23 29 30 46 6 16 10 34 11 62 1 27 2 35 2 105 0 70-1 78-2 105-1 28-5 47-11 62-7 17-16 32-30 46-14 14-29 23-46 30-16 6-34 10-62 11-27 1-35 2-105 2z m0-124c-73 0-132-59-132-132 0-73 59-132 132-132 73 0 132 59 132 132 0 73-59 132-132 132z m0-218c-47 0-86 39-86 86 0 47 39 86 86 86 47 0 86-39 86-86 0-47-39-86-86-86z m167 223c0-17-13-31-30-31-17 0-31 14-31 31 0 17 14 30 31 30 17 0 30-13 30-30z"/>
|
140 |
<glyph glyph-name="battlenet" unicode="" d="M506 216c-3 7-7 13-11 19-14 16-30 29-46 40-2 1-3 3-5 2 11 1 20 3 30 8 7 4 10 10 9 19 0 7-3 13-6 20-8 12-19 21-30 29-6 4-12 7-19 11-2 1-3 2-1 4 2 3 3 5 4 8 9 17 19 34 27 52 2 5 5 10 6 16 0 2 0 5 0 7 0 1 0 1-1 2-1 0-2-1-2-1-1-2-2-5-4-7-7-11-14-24-22-35-7-12-14-24-22-36-1-2-2-2-4-1-13 5-25 9-37 13-16 5-33 9-49 11-2 0-4 1-5 3-1 3-3 6-5 9-17 30-37 59-62 83-11 10-24 19-41 21-1 0-2 0-4 0-5-1-9-2-13-5-8-5-13-12-16-21-8-16-12-33-14-51 0-6-1-12-1-18-2 0-2 2-3 3-5 6-11 12-18 16-5 4-11 4-18 1-9-4-15-12-20-21-5-13-8-26-8-40 0-6 0-12 0-18 0-2-1-3-3-3-3 0-6 0-9 0-12-1-25-1-37-2-11 0-22-1-32-3-3 0-6-1-9-3-1 0-3-1-2-2 0-1 2-1 3-1 16-1 31-1 48-1 12-1 23-1 35-1 1 0 2 0 3-1 5 0 5 0 5-5 4-29 11-57 22-84 1-2 0-4-1-5-3-6-6-11-10-17-14-24-25-49-32-76-4-15-7-29-5-44 2-15 11-24 24-28 9-2 19-2 28 0 16 3 32 8 47 15 5 2 8 4 13 6-1-3-2-5-3-8-2-5-4-10-4-16-2-11 1-18 12-23 3-1 7-2 10-3 8-1 17 0 24 1 16 4 29 11 43 19 2 2 3 2 5-1 8-13 16-26 25-39 6-10 13-20 20-28 3-3 6-5 10-5 1 2 0 3-1 4-3 4-5 8-7 11-3 7-7 12-10 18-8 16-17 31-25 46-2 4-2 4 2 7 10 8 20 16 30 26 11 10 22 21 32 34 2 3 4 3 7 3 13 0 26 0 40 1 14 1 26 2 39 4 19 3 37 7 54 16 11 6 21 14 22 28 0 0 0 0 0 0-1 2-1 4 0 6 0 0 0 1 0 1-1 3-1 7-2 10z m-305 172c2 14 5 28 11 41 3 6 5 11 10 15 6 8 15 9 23 6 5-1 9-4 13-7 15-12 27-29 37-46-34 0-66-7-95-25-1 6 0 11 1 16z m-80-31c1 11 2 22 6 32 2 5 5 10 9 13 8 7 22 5 26-5 1 0 1-1 1-2 0-12 1-24 3-37 0-2-1-1-2-1-7 0-13 0-20 0 0 0 0-1 0-1-7 0-13 0-20 0-2-1-3-1-3 1z m28-217c-6-1-11-1-16 0-13 2-20 10-21 23 0 9 2 17 4 25 4 13 9 26 17 39 17-29 38-53 67-70 0-1-1-1-1-1-16-7-33-13-50-16z m105-43c-11-6-22-10-34-11-2 0-3 0-4 0-16 2-20 14-15 27 0 1 1 2 2 2 5 3 10 7 15 10 5 4 10 7 15 10 2-3 4-6 6-10 5-8 10-17 16-26 0 0 2-1-1-2z m57 44c-13-12-26-24-40-34-2-2-3-2-4 1-5 10-10 21-16 31 0 1-1 2-1 4 21-1 40 4 58 14-18-5-37-7-56-6 0 2 1 2 2 3 40 34 76 72 108 114 2 3 2 4-1 5-4 2-8 5-12 7-1 0-2 1-3-1-12-17-27-31-42-45-29-25-60-47-92-69-2-1-3-1-5 0-22 13-37 31-49 52-15 24-23 51-29 80-4 13-6 27-7 41-1 3 0 4 3 4 12-2 25-2 36-3 3 0 3-1 2-3-10-17-15-34-15-53 0-1 0-2 0-2 5 17 11 34 22 50 2-11 4-21 6-30 10-42 23-82 39-121 1-3 2-3 4-2 4 3 8 5 12 7 1 1 2 2 1 3-9 19-13 38-17 58-8 37-12 74-14 111 0 3 0 4 3 6 18 11 38 16 59 17 32 2 64-4 94-13 15-5 29-10 42-16 1-1 2-1 1-3-7-11-13-21-21-32-9 18-23 32-40 41 6-6 13-13 18-21 5-7 10-15 14-24-4 1-9 3-13 4-12 5-24 8-36 12-34 9-68 16-102 20-7 1-7 1-7-6 0-4 0-7 0-10 0-2 0-2 2-2 24-2 47-10 70-18 32-11 63-25 93-40 1-1 1-2 1-4 0-23-7-44-18-65-13-24-30-44-50-62z m121 47c-6-5-13-8-20-10-16-4-33-6-50-6 17 29 28 60 28 94 1 0 2-1 3-1 15-12 29-23 41-39 3-4 5-8 7-13 2-10 0-18-9-25z m3 101c-4-2-8-2-12 0-9 6-20 10-30 15-1 0-2 1-1 3 6 11 13 23 19 35 1 1 1 2 3 1 9-7 19-13 26-23 3-5 6-10 6-16 0-7-4-13-11-15z"/>
|
141 |
<glyph glyph-name="chrome" unicode="" d="M352 256c0-53-43-96-96-96-53 0-96 43-96 96 0 53 43 96 96 96 53 0 96-43 96-96z m-95 113l231 0c-42 85-130 143-230 143-82 0-155-38-202-98l88-150c4 59 53 105 113 105z m237-17l-176 0c32-20 52-55 52-95 0-19-5-38-14-54l-116-202c6 0 11 0 17 0 141 0 255 114 255 256 0 33-7 66-18 95z m-234-211c-50 0-93 32-108 76l-108 183c-28-41-44-90-44-143 0-131 97-239 222-256l90 153c-16-8-33-13-52-13z"/>
|
|
|
142 |
<glyph glyph-name="discord" unicode="" d="M449 393c-63 47-123 45-123 45l-6-7c75-22 109-55 109-55-46 24-91 37-132 41-32 4-62 3-89-1-2 0-4 0-7-1-16-1-53-7-100-27-17-8-26-13-26-13 0 0 36 35 115 57l-5 5c0 0-60 2-123-45 0 0-63-114-63-254 0 0 37-63 134-66 0 0 17 20 29 36-56 17-76 51-76 51 0 0 4-3 12-7 0 0 1-1 1-1 2-1 3-2 4-3 11-6 22-10 33-14 18-8 39-14 64-19 33-6 72-9 114-1 20 4 41 10 63 19 16 6 33 14 51 26 0 0-22-35-79-51 13-17 29-36 29-36 97 3 133 66 133 66 1 141-62 255-62 255z m-275-213c-24 0-44 22-44 48 0 27 20 48 44 48 25 0 45-21 45-48 0-26-20-48-45-48z m160 0c-24 0-44 22-44 48 0 27 20 48 44 48 25 0 45-21 45-48 0-26-20-48-45-48z"/>
|
143 |
<glyph glyph-name="issuu" unicode="" d="M257 386c-72 1-131-57-132-129 0-72 57-131 129-132 72 0 131 57 132 129 1 73-57 132-129 132z m-2-196c-36 0-65 30-65 67 0 36 30 65 67 65 36 0 65-30 65-67 0-36-30-65-67-65z m1 322c-1 0-1 0-1 0l-233 0c-12 0-22-10-22-22l0-234c0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m0-432c-98 1-177 82-176 180 1 98 81 177 179 176 98-1 177-82 176-179 0-99-81-178-179-177z"/>
|
144 |
<glyph glyph-name="macos" unicode="" d="M378 105l-32 0-90 129-91-129-31 0 106 151-106 151 31 0 91-129 90 129 32 0-106-151z m-122 407c-141 0-256-115-256-256 0-141 115-256 256-256 142 0 256 115 256 256 1 141-114 256-256 256z"/>
|
145 |
<glyph glyph-name="firefox" unicode="" d="M450 445c0 0 0-1 1-1-1 0-1 0-1 1m-286-181c1-1 1-2 2-2-1 1-1 1-2 2m-75 157c1 0 1 1 2 1 0-1 1-1 1-1-1 0-2 0-3 0m-46 22c0 0 0 0 0 0m-1-2c0-1 0 0 0 1l0 1 0-2m0 2c0 0 0 0 0 0 0 0 0 0 0 0m-28-124c0 0 0 0 0 0 0-1-1-1-1-1l1 1c0 1 1 2 1 3-1 0-1-1-1-3m220 31c1 0 2 1 3 2 1 0 1 0 1 1-1-1-2-2-3-3 0 0-1 0-2-1 1 0 1 1 1 1m9 8c0 0 0 1 0 2 0 1 1 2 1 3l1 2c0 0 1 0 1 0-1-1-1-2-1-3 0-1 0-1 0-1 0-1-1-2-2-3m3 11c0 0 0 0 0-1 0 0 0 0 0-1l0 1c0 1 0 2 0 1m1-2c1 0 1 0 0 0 1 0 0 0 0 0l0-1c0 1 0 1 0 1m240-170c0-1 0-1 0 0-1-1-1-2-2-3 1 1 1 2 2 3 15 29 33 85 19 134l0 2c-1 1-1 2-1 3l0 1c0 0-1 1-1 1 0-1-4-13-9-31 3 27 1 56-9 82-5 13-10 23-16 31-7 12-15 21-21 25l1-1c-1 1-1 1-1 1 0-1 1-3 2-8-13 20-32 30-35 31l-1 0c0 0 1-6 3-18-20 16-45 29-73 37 47-31 64-57 75-81-12 13-34 26-48 28 21-16 57-64 54-136-10 25-23 35-23 35 0 0 0-1 0-1l-1 1c4-26 4-45 4-59 0 0 0-1 0-1 0-1 0-2 0-4 0-1 0-2 0-3 0-1 0-2 0-3 0-1 0-2 0-3 0-1 0-2 0-3-2-12-4-20-6-29-3 12-6 18-6 18l0-1c0 0 0 1 0 1 0 0-1-23-16-55-1-3-3-7-5-10 0 0 0-1-1-1 0-1 0-1-1-2l-1-2c0 0 0-1-1-1 0-1 0-1-1-2-6-7-10-11-14-12-1-1-2-1-3-1-1 0-1 1-2 1 1 3 1 6 0 8 0 0-4-1-7-5-2-2-3-4-5-5 0 0 3 4 3 4-2-1-4-3-6-5-7-7-13-16-17-13 4 1 6 5 7 9-3-2-10-8-26-10-7-1-34-6-71 12 5 1 13 3 19-1-6 7-21 5-31 9-10 3-22 16-29 22 25-6 51-3 69 6 1 1 2 1 3 2 2 1 3 2 5 3 10 7 25 18 34 19 1 0 2 0 3-1 9-2 15 7 8 16-7 8-25 19-48 14-19-5-34-20-60-9-2 0-3 1-5 2-1 1 5-1 4 0-5 2-14 6-17 7 0 1 4 0 4 0-5 3-9 5-12 8 0 0-1 0-1 1 0 0-1 1-1 1-1 1-2 2-2 2l0 0c0 0-1 1-1 1-8 10-6 20-4 25 1 5 5 9 7 11 1 0 1 0 1 0 4-1 6-2 6-2 0 0-2 2-3 3 1 0 1 0 1 1 3-1 9-4 12-5 5-2 7-5 7-5 0 0 1 1 0 3-1 1-2 4-7 6 3-1 5-2 8-3 1 4 2 8 1 15-1 5 0 6-2 8-1 1 1 2 2 1 0 1-1 2-1 3-1 2-1 3-3 5 0 1 0 1-1 1l-2 3c-1 1-2 2-2 3 2-4 5-7 6-9 1-1 1-1 2-1 2 3 10 8 19 13 2 1 3 2 4 3-5-3-11-7-15-10-4-3-7-6-8-8 8 9 38 24 45 31 1 1 2 1 2 2 0 0 0 0 0 0 4 3 6 6 7 10 2 4 4 14-2 17-4 1-8 2-15 2l-1 0c-6 0-14 0-25 0-15 0-23 14-26 20l0 0 0 0c5 17 15 32 29 44 1 0-4-1-3 0 1 1 8 5 9 5 1 1-7 3-14 2-7-2-8-2-12-5 0 0-1 0-1 0 2 2 7 4 6 4-8-2-17-7-25-13 0 1 0 2 0 3-4-2-12-9-15-14 0 1 0 2 0 3-2-2-5-5-7-8-7 1-14 3-20 3-2 0-3 0-3 0-1 0-1 0-2 0-1 0-2 0-3 0-1 0-2 0-3 0l-2 0c0 0-1 0-2 0-8 0-15-2-22-4-6 5-14 13-20 22 0 0 0 0-1 0 0 0 0 0 0 0 0-1 0-2 0-1-4 7-8 19-8 27 0 0 0 0 0-1 0 0 0 0 0 1 0 0-6-4-10-17-1-1-1-2-1-3 0 0 0-1 0-2 0 2 0 3 1 4 0 0 0 1 0 1 0-1 0-1 0-2 0 0 0 0 0 0l0-1c-1-1-1-2-1-3 0 0 0 0 0 1 0 0 0 0 0-1 0 0 0 1 0 2l-1-2c0 0 0 2 0 3 0-1-1-2-2-3 0 0 0 0 1 1 0 1 1 2 1 2 0 1 0 1 0 1 0-1-3-4-3-7-1-2-1-3-2-5 0 1 0 1 0 1l0 0c0 0 0 0 0 0-2-4-4-10-5-16-2-7-3-15-3-26-1-10 0-17 0-19 1 1 1 1 1 1 0 0 0 0 0 0 0 0-1-1-1-1 0 0 0 0 0 1-6-9-10-16-12-20-8-14-15-37-21-72l0 1 0-1c0 0 0 0 0 0 0 0 0 0 1 1 0 0 0-1-1-1 0 0 1 1 2 4 0 1 0 1 0 2 2 5 5 13 10 21-6-19-11-48-8-91 0 0 0 0 0 0 0 0 0 0 0-1 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0-1 0-1 0 0 1 3 1 6 0 1 0 1 0 2 1 5 2 11 4 18 1-29 9-64 31-103 17-30 63-99 178-124-1 0-1 0-2 0 1 0 1 0 2 0-5 1-9 3-13 5 0 0 0 0-1 1-4 2-6 4-7 5 1 0 3-1 7-2 14-4 44-12 68-11l-1 0c0 0 0 0-1 0-2 0-4 1-5 2-4 2-5 4-5 4 0 0 1 0 3 0 16 0 91-1 133 32 10 8 17 17 19 24 0 0 0 0-1 0 0 0-2-1-4-2 2 1 3 2 4 2l0 2 1 0c0 0 0-1-1-1l0-1c5 3 10 6 15 9 8 6 18 13 27 22 1 2 3 3 4 5l0 1c0 0 1 0 1 0 1 1 1 2 2 3l1 0c1 1 2 3 3 4 4 5 8 10 10 15l1 1c6 10 10 21 10 34 0-3-1-6-2-9 0 0-1-1-1-1 1 1 1 1 2 2-1 14-2 22-5 29"/>
|
|
|
|
|
|
|
|
|
146 |
<glyph glyph-name="opera" unicode="" d="M426 447c-45 40-104 65-169 65 0 0 0 0-1 0-141 0-256-115-256-256 0-137 108-249 244-255 4 0 8-1 12-1 66 0 125 25 170 65 53 47 86 115 86 191 0 76-33 144-86 191z m-302-197c0 0 0 12 0 12 1 55 19 105 48 138 24 28 54 45 87 45 75 0 135-85 135-189 0-104-60-189-135-189-33 0-63 17-87 45-29 33-47 83-48 138z"/>
|
|
|
147 |
<glyph glyph-name="keybase" unicode="" d="M505 263c-5 4-11 7-16 10-2 2-4 4-6 5-21 10-41 19-62 26-11 5-17 13-20 24-3 7-3 15-5 23-2 8-3 17-8 25-6 12-20 13-29 3-2-2-4-5-6-8-5 14-10 28-16 41-2 7-6 13-10 19-10 12-30 16-41 5-5-4-9-9-13-13-7-9-7-9-15-1-6 5-12 8-19 9-9 2-16-1-21-7-6-7-9-15-9-23-1-10-3-20-5-30-1 1-1 2-1 2-8 14-23 15-31 2-3-4-5-8-8-13-6-14-12-28-18-43-2-5-5-9-10-12-4-2-8-4-12-6-2-1-4-1-4-3-1-1-2-1-3-1-10 2-19 3-29 4-6 1-8 0-8-7 0-6-1-13-1-20 0 0 0 0 0 0-2 1-4 0-5-1-6-4-12-7-17-12-4-4-9-4-15-3-6 1-13 1-19 0-10 0-19-2-23-12 0-4 0-8 0-12 6-18 17-31 33-40 3-4 9-5 13-6 3-1 7-1 9-4 11-10 24-17 38-23 19-8 38-14 58-19 4 0 5-1 2-5-2-3-2-6-2-10-1-10 4-18 10-25 14-14 32-21 51-25 25-6 51-6 77-7 16-1 32 1 48 1 5 0 8 2 11 5 6 8 12 16 19 23 26 26 53 52 80 78 11 10 22 21 33 31 2 2 4 4 5 6 9 10 20 19 27 31 0 3 0 7 0 10-2 3-4 6-7 8z m-346 50c4 11 9 22 13 33 3 6 6 13 10 19 1 2 2 5 5 5 3 0 3-3 5-5 0-2 1-3 1-5 3-7 5-15 7-23 0-2 0-5 2-6 2 0 3 2 4 3 3 5 4 9 6 14 1-1 3-1 4-2 6-1 12-1 17-2 22-2 44-3 66 2 10 2 19 4 28 9 0 0 1 1 1 2 2-1 4 1 5 1 3 2 6 4 9 6 1-3 2-6 3-9 1-2 1-4 2-7 2-2 1-4-1-5-3-2-5-3-7-5-2-1-4-1-4-3-1 0-1 0-2 0 0 0 0 0-1 0-31-15-64-16-98-12-11 1-23 3-34 5-2 0-3-1-4-1-2 8-4 16-7 24 0 2-1 5-3 5-3 0-3-3-4-4-5-10-8-21-12-31-1-3 0-3 2-3-1-1-2-3-1-5 0 0 0 0 0 0-1-1-1-2-1-2 1-5 4-8 7-11 8-5 16-7 24-8 24-5 48-6 72-6 14 1 27 2 41 5 18 4 35 12 48 27 0 0 0 0 0 1 1 0 2 0 2 0 3 0 6-1 9-1 2 0 6-3 8 0 2 2-1 6-1 9-2 9-3 18-5 27-1 1-1 3-3 4-2 0-2-2-3-3-1-1-2-3-2-4-3-4-4-9-6-12 0 0 0 0 0 0-2 1-5 2-4 5 3 9 6 18 12 25 3 4 5 4 7 0 3-5 5-10 6-15 2-10 3-19 5-29 1-6 3-12 8-16 7-8 12-18 13-29 0-1 1-2 1-3-20-2-40-4-60-5-13-1-27-4-40-1-2 0-3 1-5 1-33 4-66 9-99 13-11 1-21 3-32 5-10 3-21 4-32 5 8 3 14 9 18 18z m132-64c8 0 9-1 7-9-1-4-3-7-7-9 2 6 3 12 0 18z m-14-21c-15-3-32 7-37 22-2 4-1 6 4 5 11-1 22-3 34-4-6-8-7-16-1-23z m-115 40c2-1 6 0 7-3 1-4-2-10-7-14 2 6 2 11 0 17z m-40 5c9-2 19-3 29-4-5-7-6-13-1-20-15-1-27 6-32 18-2 5-1 6 4 6z m179-181c-1-3-2-5-5-5-4 0-7 0-10 0-9-1-17-2-26-1-8 0-17 0-26 1-16 2-31 5-45 12-9 4-16 10-21 17-3 4-5 8-3 13 3 2 4 0 6-1 9-6 20-9 31-10 25-3 50-1 74 7 15 6 28 12 39 24 5 5 9 11 8 19-2 11-10 18-20 18-3 0-6 0-9 0-7-2-14-5-21-8-11-4-22-10-34-14-21-8-43-14-66-11-32 4-62 14-91 29-8 5-15 11-22 17 0 0-1 0-1 0 1 2 1 4 2 6 0 2 0 3 0 5 1 1 1 2 1 4-1 10-1 21-6 30 6 3 10 7 15 11 3 1 5 4 9 2 0 0 0 0 0 0 1-9 3-17 9-24 4-8 11-11 19-13 10-3 21-2 31 0 18 3 33 9 45 23 3 4 6 9 9 14 2 0 3-1 5-1 2-1 2-3 2-5 3-14 10-27 21-37 14-12 31-19 50-22 11-1 21 2 29 11 4 3 6 7 8 11 5 8 8 17 10 27 1 3 2 5 6 5 6 0 13 0 20 0 21 1 43 2 64 3 0-1-1-3-1-4-5-21-15-40-28-57-14-18-31-34-49-48-16-12-26-28-29-48z m-124 44c2 5 6 6 10 6 23 1 45 7 66 16 12 5 23 10 35 15 4 2 7 3 11 3 6 1 10-1 13-6 3-5 0-8-2-12-7-8-15-13-24-17-29-13-59-18-90-12-7 1-13 4-19 7z m251 68c-13-17-27-31-43-45-14-12-28-23-41-35-5-4-8-9-12-13-3-5-5-11-6-17 0-3 1-5 3-6-6-2-11 0-17 0-2-1-1 2-1 3 0 14 6 25 14 35 8 9 18 15 27 23 28 25 51 52 63 89 6 18 7 37 3 56-1 1-1 2-1 4 14-5 28-11 42-17-4-29-13-55-31-77z m-119-35c-33-19-68-32-106-33 17-9 91 14 106 33z"/>
|
148 |
<glyph glyph-name="alliance" unicode="" d="M70 408c0 0 0 1 1 1 6 5 12 8 21 7 6-1 11-3 18-5 7-3 13-6 21-8 4-2 9-3 13-3 14 0 23 10 22 23 0 0 0 1 1 1 2-3 6-5 10-6 6-1 11 0 16 2 8 3 12 9 10 18 0 3-1 6-2 9 0 3 0 4 2 4 5 0 10 0 15-1 10-2 19-7 28-12 2-1 4-2 7-4 0 3-1 5-1 8-1 7-1 13 2 19 0 3 1 5 3 5 1 0 1-2 2-4 2-6 1-13 1-20 0-2-1-4-1-6 2 0 3 1 3 2 6 3 12 7 19 9 9 4 19 6 28 5 3-1 3-1 2-4-1-3-1-6-2-8-1-10 3-17 12-19 9-3 18-2 26 4 0-1 0-2 0-2-1-10 7-20 17-21 5-1 10 0 14 1 8 2 15 5 22 8 7 2 13 4 19 5 9 1 17 1 23-6 0-1 1-2 3-1-3 6-8 9-15 11-7 1-15 0-22-1-9-1-17-3-26-3-6 0-12 0-18 4-2 1-4 2-4 4 1 2 4 3 6 3 4 1 8 0 12-1 3 0 7-1 11 0-15 10-31 12-47 13 8 3 16 6 25 11-2 0-3 0-5 0-9-1-19-1-29 1-3 1-3 1-1 4 3 5 8 7 14 9 4 2 8 2 12 3-3 2-7 3-11 3-11 1-22 0-33-3-9-1-17-3-26-4-2 0-3 1-3 3 0 7 2 12 7 15 4 3 9 5 14 6 1 1 3 1 5 2-1 0-2 0-3 0-11 0-21-3-30-9-2-1-3-1-5 0-7 5-11 12-13 20-1 4-1 7-1 12-2-2-1-4-3-6-1 2-1 4-3 7 0-4 0-8 0-11-2-9-6-17-14-22-2-1-3-1-5 0-6 4-13 7-20 8-4 1-8 1-12 0 1 0 2-1 3-1 6-1 11-3 16-6 4-5 7-10 6-17 0-2-1-3-3-2-7 1-15 2-22 4-13 2-25 4-37 3-4-1-7-1-11-3 0-1 1 0 2 0 5-1 10-2 16-4 3-2 7-4 9-8 1-2 1-3-2-3-10-2-20-2-30-1-1 0-2 0-3-1 9-4 17-7 26-11-17 0-34-2-48-13 1-1 2 0 3 0 6 0 11 2 17 2 2 0 4-1 7-2 2-1 2-2 0-4-4-3-9-5-14-5-7-1-14 0-22 1-9 2-17 3-26 3-5 0-8 0-12-2-4-1-6-4-8-8 0-1-1-1 0-2 0-1 0 0 1 0z m128-128c-4-4-8-6-11-9-3-4-6-8-6-13-1-24 9-42 27-56 2-2 4-3 7-4 11-5 24-2 32 8 9 9 10 22 4 33-3 4-6 8-9 11-4 5-8 9-11 14-6 9-7 18-4 28 2 5 4 10 7 14 4 8 7 17 7 25 0 3 0 3-3 3-5-1-8-3-12-5-4-1-7-3-10-4-9-1-14 2-17 9-1 3-2 5-2 8-1 7-2 13-3 19-1 2 0 2 1 3 6 1 11 0 16-4 3-2 5-4 8-6 8-6 18-8 28-9-1 0-1 0-1 1-12 7-21 15-30 26-2 3-5 5-8 8-8 6-16 6-23-2-1-1-2-3-3-4-6-8-9-19-10-29 0-11 4-18 13-22 3-1 5-2 9-4 3-1 5-2 8-4 11-6 13-17 6-27-4-3-7-6-10-8z m112 36c4 2 8 5 12 6 3 2 7 3 10 5 5 3 7 6 8 11 3 18-4 32-16 44 0 1-1 1-1 1-4 3-8 3-11 2-4-3-8-5-11-8-5-4-9-8-13-12-5-7-12-12-19-16-1-1-3-1-4-3 10 1 20 3 28 9 3 2 6 5 9 7 5 3 10 4 15 4 2-1 3-1 2-3-1-3-2-6-2-9-1-5-2-10-3-16-3-10-10-13-20-11-3 1-6 3-9 4-4 2-7 3-12 4-2 1-3 0-3-2 1-9 3-17 7-25 2-2 3-5 5-8 3-8 5-15 3-24-1-8-5-13-10-19-4-5-9-9-12-14-12-17-6-36 12-44 11-4 20-2 29 4 15 12 24 27 26 47 1 11-2 20-11 26-3 3-6 6-9 8-3 3-5 5-7 9-5 8-2 17 7 23z m-215-129c2 3 4 6 6 9 2 5 4 10 7 14 2 6 5 12 8 17 5 9 12 12 22 9 2 0 5-2 7-3 0 0 1-1 2 0-2 6-5 10-11 12-4 2-9 2-13 2-10 0-19-3-28-8-1-1-2-2-2 0-2 16-3 32 0 48 2 15 10 27 23 35 3 1 6 3 10 5 4 3 8 5 11 8 2 2 5 4 6 7 0 0-1 1-1 1-1 0-1 0-2 0-13 1-25 0-38-4-2-1-2 0-3 1 0 4-2 7-5 8-2 1-3 2-5 2-2 0-2 1-2 3 0 1 0 1 1 2 2 11 8 19 17 25 6 4 13 7 20 9 1 1 2 1 1 2-7 7-14 12-23 15-6 1-12 1-17-2-2 0-3-1-3-3 0-5 2-9 6-12 3-3 3-3 0-6-6-4-10-10-13-16-10-16-16-33-16-51 0-2 1-3 2-4 3-2 6-3 9-4 1 0 2 0 1-1-1-6 2-10 5-14 1-1 2-2 1-3-4-26-2-52 2-78 1-5 1-5-3-7-8-4-12-11-10-20 1-1 1-2 2-3 10-4 19-4 26 5z m339 19c-2 1-3 1-2 3 5 27 7 54 2 80 0 2 0 2 1 3 4 4 6 9 5 14 0 1 0 2 2 2 2 0 5 1 8 3 2 1 3 3 3 5-1 21-8 39-20 55-3 4-7 7-10 11-3 4-3 4 1 7 2 2 4 4 5 6 1 7 0 8-7 9-11 3-28-5-36-16 1 0 2-1 3-1 8-3 15-6 22-11 8-7 13-15 14-25 0-2 0-3-2-3-6 0-10-3-11-10-1-2-1-2-3-1-13 4-26 5-38 4-1 0-2 0-3-1 1-1 2-3 3-4 4-4 8-6 12-9 6-3 10-5 15-9 10-6 16-14 19-25 5-19 4-37 2-55 0-1-1-2-2-1-9 7-21 9-34 8-5 0-9-2-13-5-3-2-4-5-5-9 3 1 5 2 7 2 9 4 16 2 22-5 2-2 3-4 4-6 3-5 5-11 8-16 3-6 5-12 8-18 7-10 18-13 29-8 1 1 2 1 2 3 2 6 1 11-3 16-3 4-5 6-8 7z m-111-88c-5-1-7-3-9-7-2-5-2-9-3-13-2-10-6-19-13-27-8-10-17-19-28-27-1-2-3-3-5-4-5-3-11-3-17-1-3 2-7 4-10 7-11 8-20 19-29 30-4 6-7 13-8 21 0 4-1 9-3 14-1 3-4 6-9 6-4 1-7-1-10-5-2-3-3-8-4-12-1-7 0-14 3-21 2-3 5-6 9-6 0 1 0 1-1 2-3 5-5 12-4 19 0 2 1 4 2 6 2 1 3 1 4-1 1-1 1-3 1-5 1-10 6-18 11-25 4-7 9-13 14-19 1-2 2-3 1-5-1-8 0-15 3-22 1-2 3-4 5-6 0 2-1 3-1 5-1 4-2 8-1 12 0 2 2 4 5 4 6 0 12-3 16-7 4-3 3-3 1-6-3-3-6-8-8-12-2-4-3-8-1-14 1 3 2 5 4 7 1 1 3 3 4 4 3 2 6 4 8 6 5 3 5 3 11 0 6-4 12-8 15-15 0 0 1 0 1 0 1 6-1 11-4 16-2 3-4 7-6 10-1 1-2 2-1 3 4 3 8 7 15 8 8 1 9 0 9-8 0-3-1-6-1-10 0-1-1-1-1-3 2 2 3 4 5 6 4 7 4 15 3 23-1 2 0 3 1 5 6 7 12 14 16 22 4 7 7 14 8 21 0 2 1 3 2 5 0 1 1 2 2 2 1 0 2-1 2-2 4-6 3-16-1-21-1-1-1-2-2-3-1-1-1-1-1-2 1 0 1 0 2 0 3 1 5 3 7 5 5 11 6 22 0 33-1 5-4 7-9 7z m100 42c-3 2-7 4-11 7-3 1-5 3-7 7-1 1-2 2-1 4 2 1 3 2 5 1 2 0 4-1 6-1 1-1 2-1 4 0-3 1-5 3-7 5-2 1-4 2-7 1-2 0-2 1-2 2 1 4 1 9 1 13-1 9-5 17-12 22-9 6-19 5-26-1 6-2 6-2 12-8 2-2 4-4 8-3 2 0 3-1 3-3-1-8-2-17-4-26-5-23-17-44-31-64-1-1-2-1-2 0-4 4-7 8-11 11-4 5-8 8-13 11-5 2-10 2-15 0-3-2-6-3-10-3-1 0-1 0-1-1 1-8 7-12 14-10 3 0 6 2 8 2 9 4 14 1 17-9 0 0 1-1 1-2 1-6 1-12 1-18 1-6 1-14 4-20 0-2 1-3 3-5 0 1 0 2 0 3-1 12 2 23 7 33 5 9 12 16 20 23 3 2 3 2 5-1 3-3 4-6 6-8 1-2 3-4 6-5-4 10-5 21-4 31 0 7 2 14 6 20 1 2 2 2 4 0 2-1 3-3 3-5 0-4 0-8 0-11 0-3 1-6 3-8 0 2 1 4 1 6 0 2 0 4 1 5 1 5 5 6 9 5 5-1 8-4 11-8 2-5 1-9-3-12-1-1-3-2-4-3 3 0 5 1 7 1 8 4 10 13 4 19-3 0-6 2-9 3z m-233-35c3-1 6-2 9-3 2 0 5 1 7 2 2 2 3 6 4 8 1 1 0 2-1 2-3 0-6 1-8 2-7 4-13 3-19-1-5-3-9-7-13-11-3-3-5-5-8-8-1-1-2-1-3 0-7 10-13 20-18 31-9 18-15 38-16 59 0 2 0 3 3 3 3-1 5 0 7 2 4 4 7 8 13 9-9 7-21 6-29-1-5-4-7-11-8-17-1-5-1-11 0-16 0-1 1-2-1-2-7 2-11-3-15-6 1 0 2 0 4 0 2 1 4 2 6 2 2 0 4-1 5-2 1-2 0-3-1-4-2-2-3-4-5-6-4-2-8-4-11-6-4-2-7-4-10-7-3-4-4-9-1-14 2-4 7-6 12-6-1 1-2 2-4 3-4 3-5 6-2 11 1 3 4 6 7 8 7 4 12 2 14-6 0-2 0-4 1-6 0 0 0-1 1-1 1 2 1 4 2 7 0 4 0 8 0 11 1 3 1 5 3 6 2 2 3 2 5-1 1-2 2-4 3-7 3-9 3-19 2-29-1-5-2-10-3-15 3 2 5 4 7 7 2 2 3 6 5 8 1 1 2 1 3 0 12-10 21-22 26-37 2-7 3-15 2-22 1 0 1 1 1 1 3 6 4 12 4 18 2 8 1 16 3 24 1 11 6 14 17 10z m98 36c3 5 4 10 4 16 0 4-1 5-5 6-1 0-2 0-4 0-3 0-6 0-10 0-7-1-9 1-12 8 0 3-1 5-3 6-2 2-3 2-5 0-1-2-2-5-3-7-2-5-5-7-10-7-2 0-5 0-8 0-3 0-7 1-10-1-2 0-2-1-3-3 0-7 2-14 6-20 3-3 5-7 8-11 4-5 5-10 5-16 0 0 0-1 1-1 2 1 2 4 3 6 1 3 1 6 2 8 1 2 3 2 5 1 1 0 3-1 2-4-1-3 0-7 1-11 2-6 6-12 7-18 1 2 1 5 1 7-1 4-2 9-3 13 0 3 0 6 1 10 2 3 4 4 6 4 3-1 4-3 5-5 0-3 1-5 1-8 1-1 1-3 3-3-2 8 1 13 6 19 4 4 6 8 9 11z m-51 120c-3-1-4-2-3-4 0-8 3-15 8-21 4-5 8-9 12-14 1-1 2-1 3 0 4 4 9 8 13 13 5 7 8 14 8 22 0 2 0 3-3 4-6 1-12 2-19 2-7 0-13-1-19-2z m5 108c-2-3-4-7-5-11-2-5-1-9 2-13 8-9 18-10 28-5 1 0 2 1 4 2 6 4 8 10 5 17-1 3-3 5-4 7-5 6-6 12-5 19 0 2 0 4-1 6-2-4-4-8-5-12-1-5-1-10-1-14 0-3 0-6-1-8-1-1-2-2-4-2-1 0-1 1-2 3-2 5-2 11-2 16 0 4 0 8-1 12-1 2-2 4-4 5 1-4 1-8 0-12-1-4-3-7-4-10z m20-56c-1-1-1-3-1-4-1-5 1-10 2-14 2-4 3-8 3-12 0-1 0-2-2-3-4-2-9-3-14-2-4 2-5 3-4 7 1 5 3 9 4 14 1 4 2 8 0 13-2-7-7-14-10-20-3-6-4-13-4-20 0-2 0-3 2-4 12-5 25-5 36 0 2 1 3 2 3 4 0 6-1 12-3 18-4 8-10 15-12 23z m-192-55c0 3-1 5-5 4-4-1-5-3-6-6-2-7-1-13 2-19 0 5 2 9 5 13 2 3 3 5 4 8z m383-1c-1 3-3 5-7 6-2 0-3 0-4-3 0-4 1-6 3-9 2-4 6-8 6-13 3 6 4 12 2 19z"/>
|
149 |
<glyph glyph-name="livejournal" unicode="" d="M176 462c0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0z m95 20c-34 0-66-7-95-20 2-1 3-2 5-4 5-5 10-10 15-15 1-1 1-1 1-1l172-172c-53-31-94-73-124-128l-173 173c-1 1-1 1-2 2-5 6-11 11-16 16-1 1-2 2-3 4 26 57 67 99 126 124-1 1-1 1-1 1 0 0 0 0 0 0-15 15-30 29-44 44-6 5-11 7-18 3-9-4-17-9-25-14-28-19-51-42-70-69-6-9-12-18-17-29-3-6-3-10 3-15 15-15 30-30 45-45-13-29-19-62-19-95 0-133 108-241 240-241 133 0 241 108 241 241 0 132-108 240-241 240z m25-359c20 46 52 77 96 98 8-41 16-80 24-123-42 9-80 17-120 25z"/>
|
153 |
<glyph glyph-name="zapier" unicode="" d="M508 298l-149 0 106 106c-8 12-18 23-28 33-10 10-21 20-33 28l-106-106 0 149c-13 3-27 4-42 4-14 0-29-1-42-4l0-149-106 106c-12-8-23-18-33-28-10-10-20-21-28-33l106-105-149 0c0 0-4-28-4-42 0-15 1-29 4-43l149 0-106-106c16-24 37-44 61-61l105 106 0-150c14-2 28-4 42-4l1 0c14 0 29 2 42 4l0 150 106-106c12 8 23 18 33 28 10 10 20 21 28 33l-106 106 149 0c3 13 4 28 4 42 0 15-1 29-4 42m-188-42c0-19-4-37-10-54-17-6-35-10-54-10-19 0-37 4-54 10-6 17-10 35-10 54 0 19 4 37 10 54 17 6 35 10 54 10 19 0 37-4 54-10 6-17 10-35 10-54z"/>
|
154 |
<glyph glyph-name="google-scholar" unicode="" d="M458 455c5 0 8-2 8-4 1-3 1-6 1-10l0-172c0-4-2-7-4-10-3-3-6-4-10-4l-6 0c-4 0-7 2-10 4-3 3-4 6-4 10l0 172c0 4 0 7 0 10 1 2 3 4 8 4l0 23-75-62c1-1 1-2 2-2 0-1 1-1 1-2 3-6 6-13 8-20 1-7 2-16 2-25 0-7 0-13-1-19-1-6-3-13-5-18-3-5-5-10-8-15-3-4-6-8-9-11-3-4-7-7-10-10-3-3-7-6-10-9-3-3-6-6-9-9-3-3-5-6-8-9-2-3-4-6-5-9-1-4-1-7-1-10 0-4 0-7 2-10 1-3 3-7 7-10 3-3 6-7 10-10 3-3 7-7 12-10 4-3 9-6 13-10 4-3 9-7 13-11 4-4 8-8 12-13 4-6 7-11 10-17 3-6 5-13 6-19 2-7 3-14 3-21 0-10-1-19-4-28-2-9-6-17-11-24-5-8-11-15-17-21-7-7-14-12-21-17-9-4-17-9-25-12-9-3-17-6-27-8-8-2-17-4-27-5-9-1-18-2-27-2-5 0-11 0-17 1-5 0-11 1-17 2-5 1-11 2-17 3-6 2-12 4-17 6-6 2-12 4-17 7-5 3-10 6-14 10-5 3-9 7-12 11-4 4-7 9-10 14-3 5-5 11-7 17-1 5-2 11-2 18 0 8 1 15 3 22 2 7 5 14 10 21 4 6 9 12 15 18 5 5 12 10 19 14 6 4 13 7 21 11 7 3 16 5 26 8 10 2 20 4 31 5 11 2 24 3 37 4-6 8-10 15-13 22-3 7-5 14-5 20 0 4 1 8 2 12 1 4 2 8 4 13-3 0-6-1-10-1-3 0-6 0-9 0-15 0-27 2-39 6-12 5-23 11-32 21-10 9-17 20-22 31-5 11-7 24-7 38 0 1 0 3 0 4 0 2 0 3 0 4l-116 0 173 150 285 0-26-20 0-37z m-143-297c0 1-2 2-4 3-2 2-4 3-7 6-3 2-6 4-8 6-1 1-2 2-3 2-1 0-3 0-5 0-2 0-5 1-8 1-7 0-13-1-19-1-7-1-13-2-19-3-6-1-13-3-19-5-6-2-12-4-18-6-6-3-11-6-17-10-4-4-9-8-12-13-4-5-7-11-9-17-2-6-3-12-3-19 0-7 1-13 3-19 1-5 4-11 8-16 3-5 7-10 11-13 5-4 10-8 15-10 5-3 10-6 16-8 6-2 11-4 17-5 7-2 13-3 18-3 7-1 13-1 18-1 13 0 24 1 34 4 11 2 20 6 29 12 9 6 15 12 19 21 5 9 7 18 7 30 0 2 0 4-1 7 0 2 0 4-1 7-1 3-2 5-2 7-1 2-2 4-2 5-1 2-2 4-3 6-1 2-3 4-5 6-2 3-3 4-5 6-2 2-3 3-4 4-1 1-2 2-4 4-1 2-4 4-6 6-3 3-5 4-7 6-2-1-3 0-4 0z m-4 135c4 5 8 12 11 20 3 8 4 16 4 24 0 8-1 16-2 24-2 8-3 16-6 25-3 8-6 16-11 24-4 7-9 14-15 21-6 7-13 12-20 15-6 4-14 5-22 5-9 0-17-1-24-5-6-3-12-8-17-14-5-7-8-13-11-21-2-8-3-17-3-26 0-8 0-16 2-24 1-7 3-15 5-24 3-8 6-15 11-23 4-7 9-13 15-20 6-6 13-11 20-14 7-3 14-5 22-5 9 0 17 2 24 5 6 2 12 7 17 13z"/>
|
155 |
<glyph glyph-name="researchgate" unicode="" d="M336 0c11 0 22 2 29 5l0 16c-22 0-44 15-60 32-27 29-63 77-93 130 50 12 86 58 86 104 0 69-53 101-123 101-36 0-65-2-92-2-24 0-49 0-64 0l0-17 23-4c16-4 26-11 26-49l0-240c0-38-10-45-26-48l-23-4 0-19c17 1 46 2 74 2 28 0 63-1 79-2l0 18-32 4c-17 3-25 10-25 48l0 102c15-1 27-1 47-1 37-66 72-117 92-140 19-22 47-36 82-36m-177 204c-21 0-30 0-44 2l0 153c14 1 32 1 49 1 52 0 82-27 82-75 0-49-33-81-87-81m186 154c0 3-1 7-1 11-1 4-1 10-1 16 0 6-1 13-1 21 0 8 0 16 1 22 0 6 0 11 1 15 0 4 1 8 1 11 1 3 2 6 3 9 5 16 13 28 26 36 12 9 26 13 44 13 9 0 17-1 24-3 8-2 14-5 20-9 5-3 10-8 14-13 4-5 7-10 10-15 1-2 0-4-1-5l-22-9c-2-1-3 0-4 2-5 9-9 15-17 20-7 4-13 6-24 6-12 0-17-2-24-7-7-5-13-12-16-22-1-2-1-4-2-6-1-3-1-6-2-10 0-4 0-9 0-14 0-6-1-12-1-20 0-8 0-14 1-20 0-6 0-10 0-14 1-3 1-7 2-9 0-3 1-5 2-7 3-10 8-15 14-20 7-4 15-7 26-7 10 0 20 3 26 7 6 5 11 11 14 19 1 3 2 8 3 13 1 5 1 10 1 18 0 1-1 2-2 2l-36 0c-2 0-3 1-3 3l0 21c0 2 1 3 3 3l66 0c2 0 3-1 3-3l0-19c0-9 0-18-1-25-1-8-2-15-4-20-5-16-12-27-25-36-12-8-27-12-45-12-17 0-32 4-44 12-12 8-20 20-26 36-1 2-2 6-3 9"/>
|
156 |
+
<glyph glyph-name="wechat" unicode="" d="M356 331c-48-2-89-17-123-49-33-33-49-74-45-124-18 2-35 5-52 6-6 1-13 0-18-3-17-9-32-20-51-31 3 15 5 29 9 42 3 10 2 15-7 22-57 40-81 100-63 162 17 58 57 93 113 111 76 25 162-1 208-61 16-21 26-46 29-75z m-219 20c1 11-9 21-21 22-12 0-22-9-22-21 0-12 9-21 21-22 11 0 22 9 22 21z m114 22c-11 0-21-11-21-22 0-12 10-21 22-21 12 0 21 10 21 22 0 12-10 21-22 21z m212-338c-15 6-29 17-44 18-15 2-30-7-45-8-47-5-89 8-123 39-66 61-56 154 19 204 68 44 167 29 214-32 42-53 37-124-13-169-15-13-20-24-11-41 1-3 2-7 3-11z m-172 166c10 0 18 7 18 17 1 10-7 18-18 18-9 0-18-9-18-18 1-10 9-17 18-17z m111 35c-9 0-17-8-17-17-1-10 7-18 17-18 10 0 17 7 17 17 0 10-7 18-17 18z"/>
|
157 |
+
<glyph glyph-name="strava" unicode="" d="M221 512l149-292-89 0-59 117-60-117-88 0z m106-512l-112 220 67 0 44-88 46 88 66 0z"/>
|
158 |
+
<glyph glyph-name="line" unicode="" d="M507 333c-10 43-35 77-69 105-53 43-114 61-182 62-23 0-46-2-68-7-56-13-105-39-142-82-28-33-44-71-46-114-1-44 13-83 41-118 39-48 90-75 149-88 12-2 23-4 34-7 11-3 14-8 14-19 0-6-1-10-1-15-1-8-4-16-4-24-1-12 4-17 16-13 8 3 16 6 23 11 39 22 77 48 114 76 32 24 63 51 87 84 34 44 47 94 34 149z m-341-101c0-2-2-5-5-5l-71 0c-2 0-3 1-4 2-1 1-2 2-2 3l0 112c0 3 3 5 6 5l18 0c2 0 5-2 5-5l0-89 48 0c3 0 5-2 5-5z m44 0c0-2-2-5-5-5l-18 0c-3 0-5 2-5 5l0 112c0 3 2 5 5 5l18 0c2 0 5-2 5-5z m123 0c0-2-2-5-5-5l-18 0c-1 0-1 0-1 0 0 0 0 0-1 0 0 0 0 0 0 0-1 1-1 1-1 1l-52 69 0-66c0-2-2-5-5-5l-18 0c-2 0-5 2-5 5l0 113c0 3 2 5 5 5l18 0c0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0-1 0-1l52-68 0 64c0 3 2 5 5 5l18 0c2 0 5-2 5-5l0-112z m99 94c0-2-2-5-5-5l-49 0 0-19 49 0c3 0 5-2 5-5l0-18c0-3-2-5-5-5l-49 0 0-19 49 0c3 0 5-2 5-5l0-18c0-3-2-5-5-5l-72 0c-1 0-2 0-3 1-1 1-2 2-2 4l0 112c0 1 1 2 2 3 1 1 2 2 3 2l72 0c3 0 5-2 5-5z"/>
|
159 |
+
<glyph glyph-name="lyft" unicode="" d="M64 152c-11 0-26 2-40 14-15 13-24 34-24 57l0 207 72 0 0-207c0-36 16-55 25-62-6-4-19-9-33-9z m226 6c-2 0-5 0-7 0l0 178c0 56 45 101 100 101 47 0 89-34 98-79l1-2 26 0 0-72-24 0 0-25c0-15 12-28 27-29l0-71c-53 2-97 46-97 100l0 78c0 16-13 30-30 30-15 0-28-12-29-27l0-30 40 0 0-71-40 0 0-10c0-24-8-45-23-57-13-10-26-14-42-14z m-129-81c-15 0-31 2-47 7l0 64c10-3 24-7 37-7 2 0 4 0 6 0 22 2 37 13 39 29l1 10-7-7c0 0-14-13-36-13-7 0-13 1-20 2-35 10-43 39-43 62l0 132 72 0 0-112c0-9 6-15 15-15 8 0 15 7 15 15l0 111 71 0 0-176c0-51-30-89-75-98-9-4-18-4-28-4z"/>
|
160 |
+
<glyph glyph-name="uber" unicode="" d="M80 307l0-59c0-20-8-28-29-28-20 0-29 8-29 28l0 61-19 0c-2 0-3-1-3-2l0-60c0-33 21-45 51-45 30 0 51 12 51 45l0 62-19 0c-2 0-3 0-3-2z m286-15c1 0 2 1 3 2l5 14c1 1 0 2-1 2l-79 0c-7 0-10-2-10-7l0-92c0-4 2-6 8-6l74 0c1 0 2 0 3 1l5 15c1 1 0 1-1 1l-67 0 0 19c0 6 3 9 13 9l29 0c2 0 3 0 3 1l6 14c0 1 0 1-1 1l-50 0 0 26z m-140-32c9 4 13 12 13 23 0 23-19 26-39 26l-44 0c-8 0-11-2-11-7l0-92c0-4 2-6 8-6l55 0c21 0 36 8 36 29 0 13-6 24-18 27z m-59 32l35 0c12 0 15-4 15-13 0-9-3-13-15-13l-35 0z m39-71l-39 0 0 20c0 6 3 9 13 9l26 0c12 0 16-5 16-14 0-10-4-15-16-15z m306-15l-24 41c12 3 21 11 21 30 0 26-15 32-42 32l-45 0c-7 0-10-2-10-7l0-95c0-2 1-3 3-3l19 0 0 31c0 7 4 9 13 9l20 0 21-38c1-1 2-2 4-2l19 0c1 0 1 2 1 2z m-41 55l-37 0 0 31 37 0c13 0 16-5 16-16 0-10-3-15-16-15z"/>
|
161 |
+
<glyph glyph-name="songkick" unicode="" d="M444 456c-35 25-73 43-122 51l0-232 70 97 76 0-88-122c0 0 20-32 32-51 12-20 24-25 42-25 5 0 5 0 12 0l0-60-18 0c-38 0-62 7-79 34-11 17-47 73-47 73l0-106-63 0 0 397c-1 0-2 0-3 0-82 0-139-20-188-56-71-54-68-124-68-200 0-76-3-146 68-200 49-37 106-56 188-56 82 0 139 20 188 56 71 54 68 124 68 200 0 76 3 146-68 200z m-304-345c-40 0-72 7-99 34l41 41c13-13 37-18 58-18 25 0 37 8 37 23 0 6-2 11-5 15-4 3-9 6-17 7l-32 4c-23 3-40 11-51 23-12 12-18 30-18 52 0 47 35 82 94 82 37 0 65-9 87-31l-40-40c-16 16-38 15-49 15-22 0-31-12-31-24 0-3 1-8 5-11 3-3 9-7 18-8l31-5c23-3 40-10 51-21 13-13 19-33 19-57 1-52-45-81-99-81z"/>
|
162 |
+
<glyph glyph-name="viewbug" unicode="" d="M454 308c0 0 48 24 32 93-15 77-108 62-108 62l-189-33-37-268-125 238-27-4c-1 0 0-112 0-112l126-236 90 16 16 122 19-115c0 0 151 26 199 35 46 16 62 38 62 38 0 0 0 88 0 134-16 24-58 30-58 30z m-175 74c0 1 73 14 73 14 0 0 58 14 62-33 10-47-50-51-50-51l-71-14z m124-221l-83-15-17 98c-1 0 83 15 83 15 0 0 59 16 68-38 13-55-51-60-51-60z"/>
|
163 |
+
<glyph glyph-name="googlegroups" unicode="" d="M494 512l-476 0c-3 0-5-3-5-5l0-348c0-3 2-5 5-5l277 0 199-154c3 0 5 3 5 5l0 502c0 2-2 5-5 5z m-295-79c25 0 45-20 45-45 0-26-20-45-45-45-25 0-45 19-45 45 0 25 21 45 45 45z m97-199l-195 0 0 25c0 43 43 57 98 57 3 0 6 0 8 0 1 0 2 0 3 0 2 0 4 0 6-1 1 0 2 0 3 0 2 0 5 0 7 0 1 0 2-1 3-1 2 0 3 0 5 0 2 0 3-1 4-1 1 0 2 0 3 0 5-1 10-3 15-4 1 0 1-1 2-1 7-2 13-5 18-9 4-3 8-6 11-10 6-8 9-18 9-29l0-26z m41 149c19 0 34-15 34-33 0-19-15-34-34-34-18 0-33 15-33 34 0 18 14 33 33 33z m74-149l-94 0 0 25c0 13-3 25-9 35 9 2 19 2 29 2 40 0 74-10 74-43z"/>
|
164 |
+
<glyph glyph-name="quora" unicode="" d="M272 113c-18 34-39 70-79 70-8 0-16-2-23-5l-14 28c17 14 44 25 79 25 54 0 82-26 104-59 14 29 20 67 20 115 0 119-37 180-125 180-86 0-122-61-122-180 0-119 36-179 122-179 14 0 26 2 38 5z m21-42c-19-5-39-8-59-8-114 0-226 92-226 224 0 134 112 225 226 225 117 0 227-91 227-225 0-75-35-135-85-174 16-25 33-41 57-41 25 0 35 20 38 35l33 0c2-20-8-106-102-106-57-1-87 32-109 70z"/>
|
165 |
+
<glyph glyph-name="diablo" unicode="" d="M413 314c-14 6-27 18-44 23 16-23 34-48 32-90-2-32-17-55-34-73-17-18-39-31-67-40-14-4-30-8-46-8-51 0-103 4-153-2 0 5-1 9-2 13 20 5 48 11 50 36 1 13 2 160-1 171-4 15-32 20-48 23 0 4 2 8 1 13 34 4 68 5 103 6 93 4 174-15 209-72z m-195 37c-5-1-3-16-3-20 0-38-1-82-1-119 0-12-3-37 4-43 7-6 34-3 46-3 56 4 82 66 63 122-13 36-41 60-86 63-6 1-15 1-20 0-1 0-2 0-3 0z m27-240c4-63 12-111 20-111 8 0 15 49 19 115-13-3-25-3-39-4z m-57-59c5 0 10 28 13 60-9 0-18 0-26 0 3-32 8-60 13-60z m142 77c3-49 7-78 13-78 6 0 11 37 14 93-9-5-18-11-27-15z m-65 383c-8 0-16-46-20-109 14-1 26-2 39-4-4 65-11 113-19 113z m-77-59c-5 0-10-20-13-53 8 0 17 0 26 0-3 33-8 53-13 53z m155 0c-5-1-10-22-13-62 8-2 19-6 27-11-2 45-7 74-14 73z"/>
|
166 |
+
<glyph glyph-name="blizzard" unicode="" d="M4 80c9 1 10 9 12 16 2 9 4 18 4 28 0 8 2 16 1 24-1 11-2 22-3 34 0 12 0 23 0 35 0 9 0 17 0 27 0 1 1 3 2 4 0 1 2 3 2 4 0 7 1 12-2 18-2 3-1 8-1 12 1 6 0 11 3 18 2 4 2 9-1 14-1 1-2 3-2 5 0 23 0 46 0 69 0 2 2 3 2 5 1 3 1 7 1 10 0 1-3 1-5 1-1 0-2 0-2 1-5 5-9 9-14 14-3 2-1 6 0 9 0 3 3 3 6 3 7-1 15 2 22 2 8 1 17 1 25 1 8 0 16 1 24 1 6 0 13 1 19 1 3 0 5-1 6-4 3-3 7-6 12-7 3 0 6-2 8-4 8-8 11-17 11-28 0-6 1-12 2-18 1-5 0-9-2-13-3-4-5-8-8-13-5-11-11-20-20-29-2-3-2-4 1-6 4-1 7-3 11-4 3-1 4-3 3-6 0-2-1-3-2-6-2-3-1-6 3-7 1 0 1 0 2 0 3-4 7-8 6-15-3-8-3-17 0-26 0-2 1-4 2-5 3-2 3-5 3-9 1-12 1-25 2-37 0-6-1-12-4-17-1-3-1-6-1-9 3-14 0-26-7-36-6-9-8-18-9-28-1-3-2-4-3-5-9-4-16-9-24-14-1-1-2-2-3-3-3-4-7-6-11-6-5-1-9-3-14-4-1 0-2 1-3 1-3 3-6 4-9 0-3-4-8-3-12-3-7 0-13 1-20 1-4 0-8 0-11 0-1 0-2 1-3 2 1 1 1 1 1 2z m50 30c6 0 10 2 15 5 5 5 11 7 15 14 1 1 2 2 3 3 1 2 3 4 3 6 1 13 4 25 7 37 2 7 1 14 0 22 0 2-2 4-2 7 0 3 0 6 1 9 2 5 2 9-1 13-1 2-1 4-2 6-1 7 4 13 2 20 0 2 0 5-1 8 0 3-2 6-2 8 1 6-2 8-5 11-6 5-12 10-17 14-2 1-3 3-5 4 0-3 0-5 0-7 0-10 1-20-2-30-1-3 0-8 1-12 1-7-1-14-4-20-1-1-1-4 0-6 0-2 1-4 1-5 0-16 0-32 0-48 0-2-1-3-2-5-1-3-2-5-2-8 0-7 0-14 1-21 0-8 0-16-5-23 1-1 1-1 1-2z m47 278c0 1 0 1 0 1-2 1-3 1-5 1-3 1-7 2-9 5 0 1-2 2-4 2-2 0-4-1-7-1-2-1-3-1-3 2-3 0-4-2-4-4 0-1-1-3-1-4-1-1-2-3-2-5 0-17 0-34 0-52 0-1 0-2 0-3 1 0 3 0 4 0 5-2 7 1 9 5 1 1 1 3 2 5 2 4 6 7 11 7 3 1 4 2 4 5 0 7-1 15 2 21 0 1 0 2 0 3-2 4-4 10 3 12z m93-279c7 0 15 0 23 0 1 0 2 1 3 2 4 4 8 6 14 4 5-1 10-2 15-3 6-1 13 0 19 4 2 2 5 2 8 3 6 0 12 1 17 1 12 0 23 0 34 0 13 0 26 0 40 0 3 0 3-1 3-4 0-10 0-18 0-27 0-5 1-9 3-13 1-1 1-2 2-4-1 0-2 0-3 0-11 0-21 0-30 0-2 0-4 1-6 2 0 0-1 1-1 1-5-1-9 1-14 3-1 0-2 0-3 1-2 3-6 2-9 2-7 0-14 0-21 0-3 0-4 1-6 3-3 2-7 2-11 2-20 0-41 0-61 1-3 0-5 1-7 2-8 3-16 4-23-1-5-4-10-8-14-11-1-1-2-1-3-1-8 0-16 0-24 0-1 0-2 1-3 2 1 4 4 8 8 9 1 1 3 2 4 3 8 4 11 9 10 18 0 2 1 3 1 5 2 2 2 3 0 5-1 2-1 3-1 5 0 5 0 10 0 15 0 2 0 5 2 7 1 1 0 5 1 7 0 2 1 3 2 5 2 2 1 7-2 10-3 2-3 5-3 8 0 10 0 20 0 30 0 2 1 3 1 5 1 1 1 2 1 4-1 8 0 15 1 24 1 4 1 8 2 12 0 5 0 11 1 16 0 2 1 3 1 4 3 4 3 8 0 12-1 1-1 3-1 5 0 13 0 25 0 38 0 2-1 3-2 5 0 1-1 3-1 4 0 4 0 8 0 12 0 5 1 9 5 12 0 1 1 2 1 3 0 6 0 12 0 18 0 1 0 2 0 2-4 3-2 6 0 9 5 9 1 18-3 26-1 1-4 2-6 2-2 1-3 1-5 3-3 5-8 9-12 14 0 0 0 1 1 1 2 4 2 4 6 1 1 0 3-1 4-1 5 0 11 0 17 0 1 0 4-1 5-2 3-3 5-5 8-4 1 0 2 0 3-1 4-4 8-8 11-12 1-1 2-2 2-3 0-8 0-16 0-24 0-1-1-3-1-4-3-3-3-5 0-8 3-3 4-5 4-9-1-3 1-7-3-9 0-1 0-2 0-3 0-20 0-40 0-59 0-1 0-3 1-4 6-3 6-9 6-14 0-18-1-35-2-53 0 0 0-1 0-2-5-8-3-18-1-27 1-5 1-11 1-16 0 0-1-1-2-1-4-3-4-8-2-12 1-2 1-5 0-6-2-3-2-6-2-8 0-4 1-8-2-11-1 0-1-2-1-3 0-3 0-7 0-11 0-3 0-6-2-8-2-2-2-4 0-6 2-2 2-5 3-7-1 0-1 0-1 0z m201 249c-2 1-2 3-2 6 1 2 1 5 0 8-1 3 0 6 2 8 1 2 2 4 2 6 0 14 0 29 0 44 0 7 0 6 6 6 30 0 59 0 89 0 2 0 5 1 7-2 0-1 2-1 3-2-3-7-7-14-10-20-2-3-3-5-3-9 1-5-1-9-5-13-2-2-4-4-3-9 1-3-1-6-4-9-2-2-2-5-3-8-1-10-3-19-7-28-2-5-1-11-1-17 0-6 0-12-1-17 0-5-2-8-4-12-2-6-3-12-7-18-1-2-1-5 0-8 0-3-1-5-3-7-5-4-7-8-6-14 0-1 0-2 0-3 1-17-1-33-8-49-1-2-1-4-1-7 1-11-3-21-7-30-3-5-5-11-7-16 0-2-1-4-2-6 0-1 0-3 1-3 1-1 3 0 4 0 1 0 3 1 4 1 5 0 9 0 14 1 1 0 3 2 3 3 0 7 6 10 12 12 8 4 16 8 24 12 3 1 6 5 9 8 4-4 9-2 13-3 3 0 5-1 7-3 2-3 2-5 0-7-2-4-2-8 0-12 1-3 2-5 2-8 0-7 0-13 0-20 0-4-4-8-8-8-11 0-23 0-34 0-2 0-4 2-6 3-2 0-5 1-8 2-1 0-3 0-5 0-1 0-3 0-5-1-5-5-9-7-15-6-7 0-12 0-18-1-4 0-8-2-12-4-7-3-8 1-8 7 0 4 1 9 1 13 0 1 0 2 1 3 3 2 3 6 2 10 0 1 1 3 2 4 4 3 5 6 4 11 0 2 1 4 1 5 1 2 2 5 2 7 1 3 0 5 1 7 4 11 4 21-1 32-3 7-4 15-3 24 0 8 1 17 3 25 1 7 4 14 7 20 3 8 6 18 10 26 1 2 1 4-1 6-1 1-1 5 0 6 2 3 3 6 3 10 0 2 2 5 3 7 4 8 8 15 7 25 0 1 0 2 0 3 5 12 10 25 19 36 1 1 1 2 1 3 0 4 0 8 3 11 1 1-1 5-4 5-4 0-8 0-11 0-1 0-3 0-3 1-2 3-5 4-9 4-11-2-12-2-16-11-3-8-4-17-6-26 0-2-1-4-2-7-1-3-2-4-5-4-4-1-6-2-8-3z m-30-154c2-4 4-3 6-1 2 2 4 5 5 8 2 6 2 6 9 5 0-5 1-10 1-15 0-1-1-1-1-2-5-5-7-11-7-17 0-11 0-22 1-33 0-3-1-4-3-5-2 0-3-1-4-2-4-3-8-3-12-3-7 0-13 0-20 0-3 0-5 0-7 3-2 2-9 0-11-2-5-5-7-5-12-2-2 1-5 2-8 2-5 1-9 1-14 0-3 0-5 1-6 4 0 0 0 0 0 0 6 6 4 12 4 19 0 2-1 5 2 7 1 1 1 4 1 5 0 2-1 3-2 4-2 4-4 7-2 11 1 1 0 3 0 4-4 8-1 16 0 25 2 7 3 15 5 23 2 6 6 11 10 17 1 3 2 6 4 8 3 6 6 12 9 17 1 3 2 5 3 7 3 10 6 19 8 28 1 4 3 6 6 9 2 1 3 3 5 5 3 4 7 7 9 12 1 1 2 3 2 4 0 4-1 8-1 12 0 3 2 5 3 6 2 4 5 7 8 11 2 2 3 5 5 7 5 4 6 8 6 13-1 5 0 10 0 14-5 1-10 1-14 1-3 0-7 0-11 0-8 1-14-2-20-6-6-4-8-8-9-14 0-2-1-3-3-4-1-1-3-2-5-3-2-2-4-5-3-8 0-5-1-10 0-14 0-7-2-13-7-18 0 0-1 0-1 1-2 8-4 16-6 24 0 3 2 7 2 10 1 6 1 11-4 15-1 1-1 2-1 3 0 8-1 15 0 22 0 3 2 7 3 10 28 0 57 0 86 0 0-5 0-9 0-13 0-2 1-4 1-6 1-2 1-3 1-5 0-17 0-33 0-49 0-1 0-3 0-3-4-5-4-11-3-17 0-2-1-3-1-4-3-7-7-13-10-20-3-5-5-9-6-15-1-3-1-7-1-10 0-3 0-4-3-6-3-1-5-2-7-4-6-4-6-11-6-17 0-1 0-3 0-3-4-6-8-10-11-15-4-10-9-21-13-31 0-2-1-4-1-6 0-6-2-10-4-16-4-11-9-23-13-33-1-3 1-6 4-5 3 0 5 1 7 2 5 3 11 5 17 6 5 0 9 3 11 7 3 5 6 9 9 13 3 4 7 7 11 8 1 0 3 2 3 3 2 3 2 6 3 9 2 2 3 3 3 3z m-159 224c2 4 3 4 6 4 17 0 34 0 51 0 3 0 4-2 5-4 1-2 0-4-2-5-6-3-12-6-13-13-1-2 0-5 1-8 2-2 3-5 0-7-3-3-3-6-3-9 0-8 0-14 0-21 1-15 1-30 1-44 0-3 0-6-1-8 0-5 1-11 3-16 0-2 1-4 1-7 0-1-1-2-1-3-1-3-4-5-3-8 0-11 2-21 2-31 1-5 2-10-3-14-2-1-3-5-2-7 1-7 1-14 4-21 4-8 2-17 1-26 0-1-1-3-2-4-2-2-3-4-2-8 0-2 1-5 2-7 1-3 3-5 5-6 3-3 7-5 11-7 4-2 5-6 5-10-10 0-20 0-29 0-4 0-9 0-13-1-3-1-6-2-9-4-4-3-4-3-8 2 4 3 8 7 12 11 1 1 2 3 2 5 1 11 2 23 3 34 0 2 1 3 1 5 1 3 2 6 1 8-4 6-3 12 1 19 0 1 0 3 0 4 0 16 0 32 0 48 0 24 0 48 0 72 0 1-1 3 0 3 4 3 1 5 0 9-2 5-1 11-2 16 0 10-1 20-1 31 0 4-1 9-1 14 0 3-2 5-5 6-3 2-6 2-9 5-3 1-6 1-9 3z"/>
|
167 |
+
<glyph glyph-name="hearthstone" unicode="" d="M411 196l101 60-101 60c-5 13-11 25-19 36l23 63-63-23c-11 8-23 15-36 19l-60 101-60-101c-13-5-25-11-36-19l-63 23 23-63c-8-11-15-23-19-36l-101-60 101-60c5-13 11-25 19-36l-23-63 63 23c11-8 23-15 36-19l60-101 60 101c13 5 25 11 36 19l63-23-23 63c8 11 15 23 19 36z m-155-78c-76 0-138 62-138 138 0 76 62 138 138 138 76 0 138-62 138-138 0-76-62-138-138-138z m92 142c1 6-5 13-5 20 0 4-2 6-3 10-1 3-1 6-2 10 0 0-1 0-1 0 4 9-8 19-14 25-7 7-11 16-21 20-6 2-11 5-16 7-5 2-10 3-15 5-5 2-9 7-14 5-7-2-9-5-16-3-13 5-22-2-32-9-5-4-10-7-14-11-2-1-4-4-5-6-2-2-4-4-6-6-3-4-6-6-11-10-2-2-4-4-6-6-3-2-5-1-4-5 0-5 3-10 3-16 0-3 0-5 0-8 1-3 2-5 3-8 1-4 0-10 3-15 2-4 6-9 9-13 4-4 7-9 10-14 3-3 10-7 10-11 6-1 7-8 13-7 3 0 5 0 8-1 2-1 5-2 7-2 5-1 9 5 14 6 6 1 11-1 16 2 10 6 15 16 15 27 0 6-1 10-5 16-2 4-1 10-5 13-5 4-12 4-17 5-5 1-13 2-17-1-9-6 11-21 0-26-11-5-18 8-21 18-2 5-1 13 0 18 0 2 0 5 1 7 1 3 5 4 7 5 4 3 7 7 11 10 5 3 10 5 16 6 6 1 13 1 19 1 3 0 5-1 8-1 3 0 5 1 9 1 4 0 3-1 3-5 0-2 1-4 3-6 3-4 6-9 10-13 7-8 6-22 5-33 0-6 0-11 2-17 2-6-3-6-7-10-4-3-5-8-8-12-4-4-7-7-12-11-4-3-7-6-11-9-5-2-10-5-15-7-6-3-12-4-18-6-3 0-6-1-9-3-2-1-3-4-6-5-7-5-15-3-22-7-5-2-19-3-19-8l-1 0c3-4 6-8 11-9 5 0 10-2 15-4 4-1 9-3 14-3 5-1 9-3 14-4 7-1 10 4 16 5 5 1 11 0 17 1 5 1 10 2 16 4 5 1 10 2 15 4 4 1 10 4 14 6 4 3 4 9 9 11 4 3 8 6 11 9 3 3 4 10 5 14 2 5 5 8 8 12 3 5 4 10 5 15 1 4 3 11 2 15 0 3-3 4-2 8 1 6 3 7 3 10z"/>
|
168 |
+
<glyph glyph-name="heroes" unicode="" d="M256 512l-227-128 0-256 227-128 227 128 0 256z m-194-225c13 130 120 153 120 153-142-152 24-258 24-258l-114-25c-37 53-30 130-30 130z m144-31c0 28 22 51 50 51 28 0 50-23 50-51 0-28-22-51-50-51-28 0-50 23-50 51z m124-177c-119-52-191 31-191 31 200-52 210 148 210 148l78-89c-28-59-97-90-97-90z m116 152c-61 200-234 105-234 105l34 114c65 7 126-37 126-37 106-76 74-182 74-182z"/>
|
169 |
+
<glyph glyph-name="overwatch" unicode="" d="M100 461c45 34 98 51 153 51l6 0c55 0 108-17 153-51l-40-47c-33 24-72 38-113 38l-5 0c-41 0-80-14-113-38z m156-461l-3 0c-3 0-6 0-9 0l-3 0c-2 0-10 1-10 1l-5 0c-2 0-4 1-6 1-1 0-3 0-5 0-2 1-7 1-7 1 0 0-6 2-8 3l-2 0c-10 2-19 5-28 8-1 0-3 1-5 2l-2 1c-3 1-5 2-7 2-31 13-58 31-81 53l-3 3c-48 48-75 113-75 181 0 70 30 137 80 185l41-49c-36-36-57-85-57-136 0-34 9-67 26-96l3-6 108 107 34 84 0-137-103-102 7-4c5-4 11-8 17-11l4-2 0-1c29-17 62-27 96-27l5 0c34 0 67 10 96 27l0 1 3 2c6 3 11 7 17 11l2 4-109 103 0 136 40-84 113-107 4 6c17 29 27 62 27 96 0 51-21 100-57 137l40 49c51-48 81-116 81-186 0-68-27-133-75-181l-5-4c-22-22-49-39-78-51-3-2-6-2-8-3l-2-2c-2 0-4-1-5-2-9-3-18-5-28-7 0 0-6-1-7-2l-3 0c-2-1-4-1-6-1-2-1-4-1-5-1-2 0-4 0-7-1l-5 0c0 0-8-1-10-1l-3 0c-3 0-6 0-9 0z"/>
|
170 |
+
<glyph glyph-name="warcraft" unicode="" d="M256 467c117 0 211-94 211-211 0-117-94-211-211-211-117 0-211 94-211 211 0 117 94 211 211 211m0 45c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m211-142l0 93c0 1-1 2-1 3-1 0-2 1-3 1l-94 0c6-33 68-90 98-97z m-421-228l0-94c0-1 0-2 1-2 0-1 1-1 2-1l94 0c-5 33-67 89-97 97z m323-96l94 0c1 0 2 0 3 1 0 0 1 1 1 2l0 94c-34-5-90-67-98-97z m-226 421l-94 0c-1 0-2 0-2-1-1-1-1-1-1-2l0-94c33 5 89 67 97 97z m-24-100l79 0c0 0-4-18-3-27 4-34 26-130 26-130l37 150 38-147c0 0 22 129 22 138 0 8-8 17-8 17l82 0c0 0-17-16-23-38-8-28-33-171-33-180 0-15 10-26 10-26l-77 0c0 0 2 8 2 21 0 13-12 76-12 76 0 0-15-65-15-77 0-11 5-20 5-20l-80 0c0 0 15 11 15 21-2 30-43 182-46 194-5 20-19 28-19 28z"/>
|
171 |
+
<glyph glyph-name="starcraft" unicode="" d="M153 124c-1-26-1 3-1-4l0-1c10-28 45-71 88-95 1 0 1-1 2-1 0 0 1 0 1 1 1 0 2 1 2 2 0 18 0 25 0 97-5-3-92 1-92 1z m114 11c0-94 0-87 0-109 0-1 0-2 1-2 1 0 1-1 2-1 0 0 1 0 1 1 44 24 77 62 87 90 0 0-33-2-76 38-8-14-9-13-15-17z m-24 320l-85 33-2 0-88-16c-1 0-2-1-2-2 0-2 0-3 1-3 0 0 14-6 30-14 16-9 34-21 40-32 3-5 1 0 3-8l104 1c0 32 0 39 0 39 0 1 0 2-1 2z m202 17l-88 16-2 0-87-33c-1 0-1-1-1-2 0 0 0-40 0-44l11-13c3 3 11 19 29 19 17 0 38 0 66 0 19 27 73 51 73 51 1 1 1 2 1 3 0 2-1 3-2 3z m-406-124l142 0 19-18c0 0 1 0 2 0 0 0 1 0 2 1l49 55c1 1 1 2 1 3-1 1-2 1-3 1 0 0-177 0-183 0-8 0-15-1-21-6-7-5-10-13-10-27 0-6 0-6 0-6 0-1 1-3 2-3z m470 40l-202 0-2 0-36-35c-1-1-1-2-1-3 1-1 2-2 3-2l162 0 8-11c1-1 2-1 2-1 1 0 1 0 2 0l66 47c1 1 2 3 1 4-1 1-2 1-3 1z m-67-215c-5-1-11-1-17-1-44 0-86 35-90 86-1 10-1 9-1 17 0 22 2 39 3 48 0 1 0 2 0 2-1 1-1 1-2 1l-72 0c-1 0-2 0-2-2-4-10-10-30-10-57 0-16 2-23 8-42 14-43 66-84 107-84 63 0 78 22 78 29 0 1 0 2-1 2 0 1 0 2-1 1z m-303 152l-2 1-82 0c-1 0-2-1-3-2 0-1 0-2 1-3 0 0 110-127 113-131 0-1 0-1 0-1 0 0-1-1-1-1-2 0-45 0-65 0-12 0-21 5-26 9-5 4-7 8-7 8-1 1-1 1-2 2-2 0-2 0-3-1l-60-56c-2-2-2-3-2-4 1-1 2-1 3-1 0 0 211 0 227 0 13 0 22 14 22 28 0 5-2 10-5 14-8 11-108 137-108 138z m54-24c2-1 3-1 5-1l1 0c8 1 15 4 21 10l6 7c-4-15-6-32-6-49 0-1 0-2 0-3-9 11-18 24-27 36z"/>
|
172 |
+
<glyph glyph-name="beam" unicode="" d="M256 512c-141 0-255-115-255-256 0-141 114-256 255-256 141 0 255 115 255 256 0 141-114 256-255 256z m123-219c4-37-6-76-45-115-39-40-79-50-116-45 35-66 69-121 37-121-133 0-242 110-242 244 0 50 93-108 206-123-40 73-82 160-41 202 41 40 128-3 201-42-14 113-173 206-123 206 134 0 243-108 243-244 0-31-55 2-120 38z"/>
|
173 |
+
<glyph glyph-name="curse" unicode="" d="M424 172c-16 48-42 61-42 61 13-18 16-45 7-66-8-16-35-38-49-16-5 7-5 15-4 24 2 7 3 15 7 23 4 7 9 15 14 21 6 9 10 19 12 30 2 9 1 28-8 34 3-11-5-22-14-27-2-1-3-1-4-2-3 0-6 0-8 0-7 1-15 7-18 14-5 11-2 24 7 33 7 7 16 9 26 5-5 28-24 46-38 67-19 27-28 59-16 89 0 0 0 1 0 2 12 26 43 44 72 49-2 0-3 0-5 0-48 0-88-26-88-26-69-47-23-115-17-125 6-10 2-30-18-31-29-2-35 44-35 44-21-23-16-63 17-91 21-18 21-44 14-68-4-13-11-25-21-33-24-17-53-5-67 17-23 37 1 72 1 72-35-14-54-34-61-57 0 0 0-1-1-1 0-3-1-7-2-9-1-2-1-4-1-6 0-1-1-2-1-4-2-23 0-63 35-96 51-48 90-45 111-50 21-6 41-18 55-50 0 0 9 18 22 27 20 14 52 14 81 33 29 19 53 68 37 113z"/>
|
174 |
+
<glyph glyph-name="player" unicode="" d="M256 512c-105 0-191-86-191-191 0-1 0-2 0-3 0-1 0-1 0-1 0-1 0-1 0-2 0-1 0-1 0-2l0 0c5-139 150-313 150-313l0 230c-50 23-72 82-50 131 23 51 82 73 131 50 50-22 73-81 50-131-11-26-33-44-59-54l0-94c104 17 174 115 157 220-14 92-94 160-188 160z"/>
|
175 |
+
<glyph glyph-name="streamjar" unicode="" d="M416 453c-37-8-96-13-163-13-67 0-127 5-163 13-23-5-34-6-31-18 4-16 83-31 194-31 111 0 196 15 200 31 3 12-14 13-37 18z m1 6c-71-10-128-12-167-12-26 0-52 0-87 4-28 3-71 9-71 9 1 14 2 32 20 43 10 6 24 8 29 8 29 1 201 1 231 0 4 0 19-2 28-8 19-11 19-29 21-43 0 0-43-6-72-9-35-4-61-4-86-4-39 0-97 2-167 12m335-81c-2 0-5 0-9 1 0 0-27 3-55-10-2-1-5-2-7-4 0 0-4-4-7-9-2-4-28-111-37-126-9-15-29-50-52-70-34-27-85-49-109-52-12-2-24-4-37-5-4 0-14 0-26-3-3 0-9-9-10-13-1-4-2-17 1-34 2-12 5-26 16-38 12-10 25-13 33-13 3-1 6-2 11-1l236 0c29 0 52 23 52 51z"/>
|
176 |
+
<glyph glyph-name="nintendo" unicode="" d="M216 377c-42 0-81-13-114-34-4-3-7-5-11-5l-50 0c-11 0-20-9-20-19l-1 0 0-300c0-10 9-18 20-18l64 0c11 0 20 8 20 18l0 171c0 49 41 88 92 88 50 0 91-39 91-88l0-171c0-10 9-19 20-19l64 0c10 0 20 9 20 19l0 171c-1 103-87 187-195 187z m272-1c-59 82-159 136-272 136-50 0-97-10-140-29-7-3-10-11-7-19 4-7 12-10 19-7 39 18 82 27 128 27 103 0 195-49 250-125 4-6 13-7 19-3 7 5 8 14 3 20z m-272 73c-39 0-77-8-112-23-7-4-10-11-7-18 4-8 12-11 19-8 31 14 65 21 101 21 78 0 153-36 198-97 2-4 7-6 11-6 3 0 6 1 8 3 6 5 7 13 3 19-51 68-134 109-221 109z"/>
|
177 |
+
<glyph glyph-name="hellocoton" unicode="" d="M102 180c-7 1-13 3-19 4-17 5-33 13-47 24-17 15-28 34-33 56-10 40 8 84 45 106 12 7 25 12 39 15 17 2 34 0 51-7 3-1 6-3 9-4 1-1 2-1 3-2 0 4-1 8-1 13-2 21 0 43 9 62 13 27 32 47 61 55 40 12 75 2 105-28 14-16 23-35 25-56 1-9 1-19-1-28 0 0-1-1-1-2 0 0 0-1 0-2 1 1 2 1 3 2 12 6 25 10 39 13 40 8 80-8 103-39 7-9 13-20 16-32 2-9 5-20 4-30-2-32-15-58-41-78-9-6-18-12-28-15-6-1-12-2-18-3-1 0-2-1-3-1 2-1 3-2 4-3 10-12 20-23 26-37 13-28 14-57 3-85-15-33-40-53-76-60-39-6-71 8-96 39-3 4-6 9-9 14-1 1-2 3-3 6-1-2-2-4-2-5-8-14-17-27-29-38-15-14-33-23-53-26-46-9-87 18-105 51-6 12-10 24-11 38-1 14 0 28 5 42 4 14 12 26 22 36 1 1 2 3 4 5z m145 51c0 0 0 0 0 0-1-1-1-2-2-3-17-16-37-28-59-38-23-10-48-14-73-11-2 0-3 0-5 0 1-1 1-2 2-3 4-6 9-11 14-16 7-5 15-10 23-14 19-7 39-9 60-5 10 1 19 5 27 11 14 11 24 25 29 42 3 10 4 21 3 32 0 1 0 1 1 2 0-1 1-2 1-2 6-12 11-25 14-39 3-11 4-23 5-35 1-10 1-19-1-29-2-14-6-27-12-40 0-1 0-2-1-3 0 0 1-1 1-1 5 3 11 5 16 8 14 6 25 17 34 30 8 13 13 26 16 41 2 11 2 22-1 32-4 12-10 22-18 31-11 11-25 20-41 24-1 0-1 1-2 1 5 1 11 2 17 3 17 1 33-1 50-4 10-3 21-5 30-9 15-7 28-16 41-27 1-1 2-1 3-2 0 0 1 0 1 0-1 6-1 12-2 18-2 13-7 24-14 35-11 16-25 28-43 36-10 5-22 8-34 7-13-2-25-6-37-13-10-7-20-16-27-27 0-1-1-1-1-2 0 0-1 1-1 1 2 7 3 14 5 22 5 17 13 32 22 47 5 9 12 18 19 26 10 10 21 18 33 25 1 0 2 1 3 2 0 0 0 1 0 1-4 1-9 2-13 3-13 3-25 2-38-1-17-5-32-13-46-25-14-12-22-27-24-46-1-12 1-25 5-37 3-9 9-17 15-25 1-1 2-2 2-3 0 0 0 0-1 0-1 0-1 0-2 1-16 8-30 18-42 30-11 10-21 22-29 35-9 14-15 30-18 47 0 1-1 2-1 4-7-11-13-20-16-31-3-12-4-24-2-36 1-12 5-24 10-35 10-23 29-35 52-40 6-2 12-1 19-2 10 0 20 2 30 7 1 0 2 0 3 0z"/>
|
178 |
</font></defs></svg>
|
assets/fonts/socicon.ttf
CHANGED
Binary file
|
assets/fonts/socicon.woff
CHANGED
Binary file
|
includes/admin/meta-boxes/class-si-meta-box-group-data.php
CHANGED
@@ -92,6 +92,21 @@ class SI_Meta_Box_Group_Data {
|
|
92 |
),
|
93 |
) );
|
94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
echo '</div>';
|
96 |
|
97 |
echo '<div class="options_group">';
|
@@ -129,16 +144,7 @@ class SI_Meta_Box_Group_Data {
|
|
129 |
if ( metadata_exists( 'post', $post->ID, '_sortable_icons' ) ) {
|
130 |
$sortable_icons = get_post_meta( $post->ID, '_sortable_icons', true );
|
131 |
} else {
|
132 |
-
$sortable_icons =
|
133 |
-
'twitter' => array(
|
134 |
-
'url' => 'https://twitter.com/',
|
135 |
-
'label' => __( 'Follow Me', 'social-icons' ),
|
136 |
-
),
|
137 |
-
'facebook' => array(
|
138 |
-
'url' => 'https://facebook.com/',
|
139 |
-
'label' => __( 'Friend me on Facebook', 'social-icons' ),
|
140 |
-
),
|
141 |
-
);
|
142 |
}
|
143 |
|
144 |
if ( $sortable_icons ) {
|
92 |
),
|
93 |
) );
|
94 |
|
95 |
+
// Choose Icon Padding
|
96 |
+
social_icons_wp_text_input( array(
|
97 |
+
'id' => 'icon_padding',
|
98 |
+
'label' => __( 'Choose Icon Padding', 'social-icons' ),
|
99 |
+
'placeholder' => __( 'Default', 'social-icons' ),
|
100 |
+
'desc_tip' => true,
|
101 |
+
'description' => __( 'Leave blank for default icon font size.', 'social-icons' ),
|
102 |
+
'type' => 'number',
|
103 |
+
'custom_attributes' => array(
|
104 |
+
'step' => '1',
|
105 |
+
'min' => '10',
|
106 |
+
'max' => '80',
|
107 |
+
),
|
108 |
+
) );
|
109 |
+
|
110 |
echo '</div>';
|
111 |
|
112 |
echo '<div class="options_group">';
|
144 |
if ( metadata_exists( 'post', $post->ID, '_sortable_icons' ) ) {
|
145 |
$sortable_icons = get_post_meta( $post->ID, '_sortable_icons', true );
|
146 |
} else {
|
147 |
+
$sortable_icons = si_get_default_sortable_socicons();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
}
|
149 |
|
150 |
if ( $sortable_icons ) {
|
includes/class-si-autoloader.php
CHANGED
@@ -74,7 +74,7 @@ class SI_Autoloader {
|
|
74 |
$path = $this->include_path . 'admin/';
|
75 |
}
|
76 |
|
77 |
-
if ( empty( $path ) || ( ! $this->load_file( $path . $file ) && strpos( $class, '
|
78 |
$this->load_file( $this->include_path . $file );
|
79 |
}
|
80 |
}
|
74 |
$path = $this->include_path . 'admin/';
|
75 |
}
|
76 |
|
77 |
+
if ( empty( $path ) || ( ! $this->load_file( $path . $file ) && strpos( $class, 'si_' ) === 0 ) ) {
|
78 |
$this->load_file( $this->include_path . $file );
|
79 |
}
|
80 |
}
|
includes/class-si-post-types.php
CHANGED
@@ -33,6 +33,11 @@ class SI_Post_Types {
|
|
33 |
* Register core post types.
|
34 |
*/
|
35 |
public static function register_post_types() {
|
|
|
|
|
|
|
|
|
|
|
36 |
if ( post_type_exists( 'social_icon' ) ) {
|
37 |
return;
|
38 |
}
|
33 |
* Register core post types.
|
34 |
*/
|
35 |
public static function register_post_types() {
|
36 |
+
|
37 |
+
if ( ! is_blog_installed() ) {
|
38 |
+
return;
|
39 |
+
}
|
40 |
+
|
41 |
if ( post_type_exists( 'social_icon' ) ) {
|
42 |
return;
|
43 |
}
|
includes/class-si-shortcodes.php
CHANGED
@@ -53,6 +53,7 @@ class SI_Shortcodes {
|
|
53 |
if ( $group_id && 'social_icon' == get_post_type( $group_id ) ) {
|
54 |
$group_data['background_style'] = get_post_meta( $group_id, 'background_style', true );
|
55 |
$group_data['icon_font_size'] = get_post_meta( $group_id, 'icon_font_size', true );
|
|
|
56 |
$group_data['manage_label'] = get_post_meta( $group_id, '_manage_label', true );
|
57 |
$group_data['greyscale_icons'] = get_post_meta( $group_id, '_greyscale_icons', true );
|
58 |
$group_data['open_new_tab'] = get_post_meta( $group_id, '_open_new_tab', true );
|
@@ -90,7 +91,8 @@ class SI_Shortcodes {
|
|
90 |
$class_list[] = 'icons-background-' . $group_data['background_style'];
|
91 |
}
|
92 |
|
93 |
-
// Custom
|
|
|
94 |
$icon_font_size = empty( $group_data['icon_font_size'] ) ? 16 : $group_data['icon_font_size'];
|
95 |
|
96 |
ob_start();
|
@@ -101,7 +103,7 @@ class SI_Shortcodes {
|
|
101 |
|
102 |
<li class="social-icons-list-item">
|
103 |
<a href="<?php echo esc_url( $field['url'] ); ?>" <?php echo ( 'yes' == $group_data['open_new_tab'] ? 'target="_blank"' : '' ); ?> class="social-icon">
|
104 |
-
<span class="socicon socicon-<?php echo esc_attr( $title ); ?>" style="font-size: <?php echo esc_attr( $icon_font_size ); ?>px"></span>
|
105 |
|
106 |
<?php if ( 'yes' == $group_data['manage_label'] ) : ?>
|
107 |
<span class="social-icons-list-label"><?php echo esc_html( $field['label'] ); ?></span>
|
53 |
if ( $group_id && 'social_icon' == get_post_type( $group_id ) ) {
|
54 |
$group_data['background_style'] = get_post_meta( $group_id, 'background_style', true );
|
55 |
$group_data['icon_font_size'] = get_post_meta( $group_id, 'icon_font_size', true );
|
56 |
+
$group_data['icon_padding'] = get_post_meta( $group_id, 'icon_padding', true );
|
57 |
$group_data['manage_label'] = get_post_meta( $group_id, '_manage_label', true );
|
58 |
$group_data['greyscale_icons'] = get_post_meta( $group_id, '_greyscale_icons', true );
|
59 |
$group_data['open_new_tab'] = get_post_meta( $group_id, '_open_new_tab', true );
|
91 |
$class_list[] = 'icons-background-' . $group_data['background_style'];
|
92 |
}
|
93 |
|
94 |
+
// Custom icon padding and font size.
|
95 |
+
$icon_padding = empty( $group_data['icon_padding'] ) ? 10 : $group_data['icon_padding'];
|
96 |
$icon_font_size = empty( $group_data['icon_font_size'] ) ? 16 : $group_data['icon_font_size'];
|
97 |
|
98 |
ob_start();
|
103 |
|
104 |
<li class="social-icons-list-item">
|
105 |
<a href="<?php echo esc_url( $field['url'] ); ?>" <?php echo ( 'yes' == $group_data['open_new_tab'] ? 'target="_blank"' : '' ); ?> class="social-icon">
|
106 |
+
<span class="socicon socicon-<?php echo esc_attr( $title ); ?>" style="padding: <?php echo esc_attr( $icon_padding ); ?>px; font-size: <?php echo esc_attr( $icon_font_size ); ?>px"></span>
|
107 |
|
108 |
<?php if ( 'yes' == $group_data['manage_label'] ) : ?>
|
109 |
<span class="social-icons-list-label"><?php echo esc_html( $field['label'] ); ?></span>
|
includes/functions-si-core.php
CHANGED
@@ -87,7 +87,7 @@ function si_print_js() {
|
|
87 |
* @return array
|
88 |
*/
|
89 |
function si_get_allowed_socicons() {
|
90 |
-
return apply_filters( 'social_icons_allowed_socicon', array( 'modelmayhem', 'mixcloud', 'drupal', 'swarm', 'istock', 'yammer', 'ello', 'stackoverflow', 'persona', 'triplej', 'houzz', 'rss', 'paypal', 'odnoklassniki', 'airbnb', 'periscope', 'outlook', 'coderwall', 'tripadvisor', 'appnet', 'goodreads', 'tripit', 'lanyrd', 'slideshare', 'buffer', 'disqus', 'vkontakte', 'whatsapp', 'patreon', 'storehouse', 'pocket', 'mail', 'blogger', 'technorati', 'reddit', 'dribbble', 'stumbleupon', 'digg', 'envato', 'behance', 'delicious', 'deviantart', 'forrst', 'play', 'zerply', 'wikipedia', 'apple', 'flattr', 'github', 'renren', 'friendfeed', 'newsvine', 'identica', 'bebo', 'zynga', 'steam', 'xbox', 'windows', 'qq', 'douban', 'meetup', 'playstation', 'android', 'snapchat', 'twitter', 'facebook', 'googleplus', 'pinterest', 'foursquare', 'yahoo', 'skype', 'yelp', 'feedburner', 'linkedin', 'viadeo', 'xing', 'myspace', 'soundcloud', 'spotify', 'grooveshark', 'lastfm', 'youtube', 'vimeo', 'dailymotion', 'vine', 'flickr', '500px', 'instagram', 'wordpress', 'tumblr', 'twitch', '8tracks', 'amazon', 'icq', 'smugmug', 'ravelry', 'weibo', 'baidu', 'angellist', 'ebay', 'imdb', 'stayfriends', 'residentadvisor', 'google', 'yandex', 'sharethis', 'bandcamp', 'itunes', 'deezer', 'medium', 'telegram', 'openid', 'amplement', 'viber', 'zomato', 'quora', 'draugiem', 'endomodo', 'filmweb', 'stackexchange', 'wykop', 'teamspeak', 'teamviewer', 'ventrilo', 'younow', 'raidcall', 'mumble', 'bebee', 'hitbox', 'reverbnation', 'formulr', 'battlenet', 'chrome', 'diablo', 'discord', 'issuu', 'macos', 'firefox', 'heroes', 'hearthstone', 'overwatch', 'opera', 'warcraft', 'starcraft', 'keybase', 'alliance', 'livejournal', 'googlephotos', 'horde', 'etsy', 'zapier', 'google-scholar', 'researchgate' ) );
|
91 |
}
|
92 |
|
93 |
/**
|
@@ -106,12 +106,30 @@ function si_get_supported_url_icon() {
|
|
106 |
'play.google.com' => 'play',
|
107 |
'plus.google.com' => 'googleplus',
|
108 |
'photos.google.com' => 'googlephotos',
|
|
|
109 |
'chrome.google.com' => 'chrome',
|
110 |
'scholar.google.com' => 'google-scholar',
|
111 |
'feedburner.google.com' => 'mail',
|
112 |
) );
|
113 |
}
|
114 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
/**
|
116 |
* Checks whether the content passed contains a specific short code.
|
117 |
*
|
87 |
* @return array
|
88 |
*/
|
89 |
function si_get_allowed_socicons() {
|
90 |
+
return apply_filters( 'social_icons_allowed_socicon', array( 'modelmayhem', 'mixcloud', 'drupal', 'swarm', 'istock', 'yammer', 'ello', 'stackoverflow', 'persona', 'triplej', 'houzz', 'rss', 'paypal', 'odnoklassniki', 'airbnb', 'periscope', 'outlook', 'coderwall', 'tripadvisor', 'appnet', 'goodreads', 'tripit', 'lanyrd', 'slideshare', 'buffer', 'disqus', 'vkontakte', 'whatsapp', 'patreon', 'storehouse', 'pocket', 'mail', 'blogger', 'technorati', 'reddit', 'dribbble', 'stumbleupon', 'digg', 'envato', 'behance', 'delicious', 'deviantart', 'forrst', 'play', 'zerply', 'wikipedia', 'apple', 'flattr', 'github', 'renren', 'friendfeed', 'newsvine', 'identica', 'bebo', 'zynga', 'steam', 'xbox', 'windows', 'qq', 'douban', 'meetup', 'playstation', 'android', 'snapchat', 'twitter', 'facebook', 'googleplus', 'pinterest', 'foursquare', 'yahoo', 'skype', 'yelp', 'feedburner', 'linkedin', 'viadeo', 'xing', 'myspace', 'soundcloud', 'spotify', 'grooveshark', 'lastfm', 'youtube', 'vimeo', 'dailymotion', 'vine', 'flickr', '500px', 'instagram', 'wordpress', 'tumblr', 'twitch', '8tracks', 'amazon', 'icq', 'smugmug', 'ravelry', 'weibo', 'baidu', 'angellist', 'ebay', 'imdb', 'stayfriends', 'residentadvisor', 'google', 'yandex', 'sharethis', 'bandcamp', 'itunes', 'deezer', 'medium', 'telegram', 'openid', 'amplement', 'viber', 'zomato', 'quora', 'draugiem', 'endomodo', 'filmweb', 'stackexchange', 'wykop', 'teamspeak', 'teamviewer', 'ventrilo', 'younow', 'raidcall', 'mumble', 'bebee', 'hitbox', 'reverbnation', 'formulr', 'battlenet', 'chrome', 'diablo', 'discord', 'issuu', 'macos', 'firefox', 'heroes', 'hearthstone', 'overwatch', 'opera', 'warcraft', 'starcraft', 'keybase', 'alliance', 'livejournal', 'googlephotos', 'horde', 'etsy', 'zapier', 'google-scholar', 'researchgate', 'wechat', 'strava', 'line', 'lyft', 'uber', 'songkick', 'viewbug', 'googlegroups', 'blizzard', 'beam', 'curse', 'player', 'streamjar', 'nintendo', 'hellocton' ) );
|
91 |
}
|
92 |
|
93 |
/**
|
106 |
'play.google.com' => 'play',
|
107 |
'plus.google.com' => 'googleplus',
|
108 |
'photos.google.com' => 'googlephotos',
|
109 |
+
'groups.google.com' => 'googlegroups',
|
110 |
'chrome.google.com' => 'chrome',
|
111 |
'scholar.google.com' => 'google-scholar',
|
112 |
'feedburner.google.com' => 'mail',
|
113 |
) );
|
114 |
}
|
115 |
|
116 |
+
/**
|
117 |
+
* Get the default sortable socicon lists.
|
118 |
+
* @return array
|
119 |
+
*/
|
120 |
+
function si_get_default_sortable_socicons() {
|
121 |
+
return apply_filters( 'social_icons_get_default_sortable_socicons', array(
|
122 |
+
'twitter' => array(
|
123 |
+
'url' => 'https://twitter.com/themegrill',
|
124 |
+
'label' => __( 'Follow Me', 'social-icons' ),
|
125 |
+
),
|
126 |
+
'facebook' => array(
|
127 |
+
'url' => 'https://facebook.com/themegrill',
|
128 |
+
'label' => __( 'Friend me on Facebook', 'social-icons' ),
|
129 |
+
),
|
130 |
+
) );
|
131 |
+
}
|
132 |
+
|
133 |
/**
|
134 |
* Checks whether the content passed contains a specific short code.
|
135 |
*
|
includes/widgets/class-si-widget-social-icons.php
CHANGED
@@ -76,22 +76,21 @@ class SI_Widget_Social_Icons extends SI_Widget {
|
|
76 |
'std' => 16,
|
77 |
'label' => __( 'Choose Icon Size', 'social-icons' ),
|
78 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
'socicon_sortable' => array(
|
80 |
'type' => 'social_icons',
|
81 |
'class' => 'socicon-sortable',
|
82 |
'label' => __( 'Sortable Socicon', 'social-icons' ),
|
83 |
'desc' => sprintf( __( 'Note that icons above are for reference and not how they will look on front-end. %1$sList of icons supported%2$s', 'social-icons' ), '<br><a target="_blank" href="' . esc_url( 'http://www.socicon.com/chart.php' ) . '">', '</a>' ),
|
84 |
'btn' => __( 'Add Icon', 'social-icons' ),
|
85 |
-
'std' =>
|
86 |
-
'twitter' => array(
|
87 |
-
'url' => 'https://twitter.com/',
|
88 |
-
'label' => __( 'Follow Me', 'social-icons' ),
|
89 |
-
),
|
90 |
-
'facebook' => array(
|
91 |
-
'url' => 'https://facebook.com/',
|
92 |
-
'label' => __( 'Friend me on Facebook', 'social-icons' ),
|
93 |
-
),
|
94 |
-
),
|
95 |
),
|
96 |
);
|
97 |
|
@@ -192,7 +191,7 @@ class SI_Widget_Social_Icons extends SI_Widget {
|
|
192 |
continue;
|
193 |
}
|
194 |
|
195 |
-
$instance[ $icon_name ] = array(
|
196 |
'url' => $icon_url,
|
197 |
'label' => $icon_label,
|
198 |
);
|
@@ -266,6 +265,10 @@ class SI_Widget_Social_Icons extends SI_Widget {
|
|
266 |
$class_list[] = 'icons-background-' . $instance['background_style'];
|
267 |
}
|
268 |
|
|
|
|
|
|
|
|
|
269 |
?>
|
270 |
<?php if ( ! empty( $instance['description'] ) ) : ?>
|
271 |
<p><?php echo $instance['description']; ?></p>
|
@@ -273,11 +276,15 @@ class SI_Widget_Social_Icons extends SI_Widget {
|
|
273 |
|
274 |
<ul class="social-icons-lists <?php echo esc_attr( implode( ' ', $class_list ) ); ?>">
|
275 |
|
276 |
-
<?php
|
|
|
|
|
|
|
|
|
277 |
|
278 |
<li class="social-icons-list-item">
|
279 |
<a href="<?php echo esc_url( $field['url'] ); ?>" <?php echo ( $instance['open_tab'] ? 'target="_blank"' : '' ); ?> class="social-icon">
|
280 |
-
<span class="socicon socicon-<?php echo esc_attr( $
|
281 |
|
282 |
<?php if ( $instance['show_label'] ) : ?>
|
283 |
<span class="social-icons-list-label"><?php echo esc_html( $field['label'] ); ?></span>
|
@@ -285,7 +292,9 @@ class SI_Widget_Social_Icons extends SI_Widget {
|
|
285 |
</a>
|
286 |
</li>
|
287 |
|
288 |
-
<?php
|
|
|
|
|
289 |
|
290 |
</ul>
|
291 |
|
76 |
'std' => 16,
|
77 |
'label' => __( 'Choose Icon Size', 'social-icons' ),
|
78 |
),
|
79 |
+
'icon_padding' => array(
|
80 |
+
'type' => 'number',
|
81 |
+
'step' => 1,
|
82 |
+
'min' => 10,
|
83 |
+
'max' => 80,
|
84 |
+
'std' => 10,
|
85 |
+
'label' => __( 'Choose Icon Padding', 'social-icons' ),
|
86 |
+
),
|
87 |
'socicon_sortable' => array(
|
88 |
'type' => 'social_icons',
|
89 |
'class' => 'socicon-sortable',
|
90 |
'label' => __( 'Sortable Socicon', 'social-icons' ),
|
91 |
'desc' => sprintf( __( 'Note that icons above are for reference and not how they will look on front-end. %1$sList of icons supported%2$s', 'social-icons' ), '<br><a target="_blank" href="' . esc_url( 'http://www.socicon.com/chart.php' ) . '">', '</a>' ),
|
92 |
'btn' => __( 'Add Icon', 'social-icons' ),
|
93 |
+
'std' => si_get_default_sortable_socicons(),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
),
|
95 |
);
|
96 |
|
191 |
continue;
|
192 |
}
|
193 |
|
194 |
+
$instance[ $icon_name . '_' . $i ] = array(
|
195 |
'url' => $icon_url,
|
196 |
'label' => $icon_label,
|
197 |
);
|
265 |
$class_list[] = 'icons-background-' . $instance['background_style'];
|
266 |
}
|
267 |
|
268 |
+
// Custom icon padding and font size.
|
269 |
+
$icon_padding = empty( $instance['icon_padding'] ) ? 10 : $instance['icon_padding'];
|
270 |
+
$icon_font_size = empty( $instance['socicon_size'] ) ? 16 : $instance['socicon_size'];
|
271 |
+
|
272 |
?>
|
273 |
<?php if ( ! empty( $instance['description'] ) ) : ?>
|
274 |
<p><?php echo $instance['description']; ?></p>
|
276 |
|
277 |
<ul class="social-icons-lists <?php echo esc_attr( implode( ' ', $class_list ) ); ?>">
|
278 |
|
279 |
+
<?php
|
280 |
+
$count=0;
|
281 |
+
foreach ( $instance['socicon_sortable'] as $title => $field ) :
|
282 |
+
|
283 |
+
$class = str_replace( '_' . $count, '', $title ); ?>
|
284 |
|
285 |
<li class="social-icons-list-item">
|
286 |
<a href="<?php echo esc_url( $field['url'] ); ?>" <?php echo ( $instance['open_tab'] ? 'target="_blank"' : '' ); ?> class="social-icon">
|
287 |
+
<span class="socicon socicon-<?php echo esc_attr( $class ); ?>" style="padding: <?php echo esc_attr( $icon_padding ); ?>px; font-size: <?php echo esc_attr( $icon_font_size ); ?>px"></span>
|
288 |
|
289 |
<?php if ( $instance['show_label'] ) : ?>
|
290 |
<span class="social-icons-list-label"><?php echo esc_html( $field['label'] ); ?></span>
|
292 |
</a>
|
293 |
</li>
|
294 |
|
295 |
+
<?php
|
296 |
+
$count++;
|
297 |
+
endforeach; ?>
|
298 |
|
299 |
</ul>
|
300 |
|
license.txt
ADDED
@@ -0,0 +1,708 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Social Icons - Social profile for WordPress
|
2 |
+
|
3 |
+
Copyright 2015-2016 by the contributors
|
4 |
+
|
5 |
+
This program is free software: you can redistribute it and/or modify
|
6 |
+
it under the terms of the GNU General Public License as published by
|
7 |
+
the Free Software Foundation, either version 3 of the License, or
|
8 |
+
(at your option) any later version.
|
9 |
+
|
10 |
+
This program is distributed in the hope that it will be useful,
|
11 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13 |
+
GNU General Public License for more details.
|
14 |
+
|
15 |
+
You should have received a copy of the GNU General Public License
|
16 |
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
17 |
+
|
18 |
+
This program incorporates work covered by the following copyright and
|
19 |
+
permission notices:
|
20 |
+
|
21 |
+
Socicon is Copyright (c) 2016 - http://socicon.com
|
22 |
+
|
23 |
+
Socicon is released under the SIL Open Font License, http://scripts.sil.org/OFL
|
24 |
+
|
25 |
+
and
|
26 |
+
|
27 |
+
Social Icons - Social profile for WordPress
|
28 |
+
|
29 |
+
Social Icons is Copyright (c) 2016 ThemeGrill
|
30 |
+
|
31 |
+
Social Icons is released under the GPL
|
32 |
+
|
33 |
+
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
34 |
+
|
35 |
+
GNU GENERAL PUBLIC LICENSE
|
36 |
+
Version 3, 29 June 2007
|
37 |
+
|
38 |
+
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
39 |
+
Everyone is permitted to copy and distribute verbatim copies
|
40 |
+
of this license document, but changing it is not allowed.
|
41 |
+
|
42 |
+
Preamble
|
43 |
+
|
44 |
+
The GNU General Public License is a free, copyleft license for
|
45 |
+
software and other kinds of works.
|
46 |
+
|
47 |
+
The licenses for most software and other practical works are designed
|
48 |
+
to take away your freedom to share and change the works. By contrast,
|
49 |
+
the GNU General Public License is intended to guarantee your freedom to
|
50 |
+
share and change all versions of a program--to make sure it remains free
|
51 |
+
software for all its users. We, the Free Software Foundation, use the
|
52 |
+
GNU General Public License for most of our software; it applies also to
|
53 |
+
any other work released this way by its authors. You can apply it to
|
54 |
+
your programs, too.
|
55 |
+
|
56 |
+
When we speak of free software, we are referring to freedom, not
|
57 |
+
price. Our General Public Licenses are designed to make sure that you
|
58 |
+
have the freedom to distribute copies of free software (and charge for
|
59 |
+
them if you wish), that you receive source code or can get it if you
|
60 |
+
want it, that you can change the software or use pieces of it in new
|
61 |
+
free programs, and that you know you can do these things.
|
62 |
+
|
63 |
+
To protect your rights, we need to prevent others from denying you
|
64 |
+
these rights or asking you to surrender the rights. Therefore, you have
|
65 |
+
certain responsibilities if you distribute copies of the software, or if
|
66 |
+
you modify it: responsibilities to respect the freedom of others.
|
67 |
+
|
68 |
+
For example, if you distribute copies of such a program, whether
|
69 |
+
gratis or for a fee, you must pass on to the recipients the same
|
70 |
+
freedoms that you received. You must make sure that they, too, receive
|
71 |
+
or can get the source code. And you must show them these terms so they
|
72 |
+
know their rights.
|
73 |
+
|
74 |
+
Developers that use the GNU GPL protect your rights with two steps:
|
75 |
+
(1) assert copyright on the software, and (2) offer you this License
|
76 |
+
giving you legal permission to copy, distribute and/or modify it.
|
77 |
+
|
78 |
+
For the developers' and authors' protection, the GPL clearly explains
|
79 |
+
that there is no warranty for this free software. For both users' and
|
80 |
+
authors' sake, the GPL requires that modified versions be marked as
|
81 |
+
changed, so that their problems will not be attributed erroneously to
|
82 |
+
authors of previous versions.
|
83 |
+
|
84 |
+
Some devices are designed to deny users access to install or run
|
85 |
+
modified versions of the software inside them, although the manufacturer
|
86 |
+
can do so. This is fundamentally incompatible with the aim of
|
87 |
+
protecting users' freedom to change the software. The systematic
|
88 |
+
pattern of such abuse occurs in the area of products for individuals to
|
89 |
+
use, which is precisely where it is most unacceptable. Therefore, we
|
90 |
+
have designed this version of the GPL to prohibit the practice for those
|
91 |
+
products. If such problems arise substantially in other domains, we
|
92 |
+
stand ready to extend this provision to those domains in future versions
|
93 |
+
of the GPL, as needed to protect the freedom of users.
|
94 |
+
|
95 |
+
Finally, every program is threatened constantly by software patents.
|
96 |
+
States should not allow patents to restrict development and use of
|
97 |
+
software on general-purpose computers, but in those that do, we wish to
|
98 |
+
avoid the special danger that patents applied to a free program could
|
99 |
+
make it effectively proprietary. To prevent this, the GPL assures that
|
100 |
+
patents cannot be used to render the program non-free.
|
101 |
+
|
102 |
+
The precise terms and conditions for copying, distribution and
|
103 |
+
modification follow.
|
104 |
+
|
105 |
+
TERMS AND CONDITIONS
|
106 |
+
|
107 |
+
0. Definitions.
|
108 |
+
|
109 |
+
"This License" refers to version 3 of the GNU General Public License.
|
110 |
+
|
111 |
+
"Copyright" also means copyright-like laws that apply to other kinds of
|
112 |
+
works, such as semiconductor masks.
|
113 |
+
|
114 |
+
"The Program" refers to any copyrightable work licensed under this
|
115 |
+
License. Each licensee is addressed as "you". "Licensees" and
|
116 |
+
"recipients" may be individuals or organizations.
|
117 |
+
|
118 |
+
To "modify" a work means to copy from or adapt all or part of the work
|
119 |
+
in a fashion requiring copyright permission, other than the making of an
|
120 |
+
exact copy. The resulting work is called a "modified version" of the
|
121 |
+
earlier work or a work "based on" the earlier work.
|
122 |
+
|
123 |
+
A "covered work" means either the unmodified Program or a work based
|
124 |
+
on the Program.
|
125 |
+
|
126 |
+
To "propagate" a work means to do anything with it that, without
|
127 |
+
permission, would make you directly or secondarily liable for
|
128 |
+
infringement under applicable copyright law, except executing it on a
|
129 |
+
computer or modifying a private copy. Propagation includes copying,
|
130 |
+
distribution (with or without modification), making available to the
|
131 |
+
public, and in some countries other activities as well.
|
132 |
+
|
133 |
+
To "convey" a work means any kind of propagation that enables other
|
134 |
+
parties to make or receive copies. Mere interaction with a user through
|
135 |
+
a computer network, with no transfer of a copy, is not conveying.
|
136 |
+
|
137 |
+
An interactive user interface displays "Appropriate Legal Notices"
|
138 |
+
to the extent that it includes a convenient and prominently visible
|
139 |
+
feature that (1) displays an appropriate copyright notice, and (2)
|
140 |
+
tells the user that there is no warranty for the work (except to the
|
141 |
+
extent that warranties are provided), that licensees may convey the
|
142 |
+
work under this License, and how to view a copy of this License. If
|
143 |
+
the interface presents a list of user commands or options, such as a
|
144 |
+
menu, a prominent item in the list meets this criterion.
|
145 |
+
|
146 |
+
1. Source Code.
|
147 |
+
|
148 |
+
The "source code" for a work means the preferred form of the work
|
149 |
+
for making modifications to it. "Object code" means any non-source
|
150 |
+
form of a work.
|
151 |
+
|
152 |
+
A "Standard Interface" means an interface that either is an official
|
153 |
+
standard defined by a recognized standards body, or, in the case of
|
154 |
+
interfaces specified for a particular programming language, one that
|
155 |
+
is widely used among developers working in that language.
|
156 |
+
|
157 |
+
The "System Libraries" of an executable work include anything, other
|
158 |
+
than the work as a whole, that (a) is included in the normal form of
|
159 |
+
packaging a Major Component, but which is not part of that Major
|
160 |
+
Component, and (b) serves only to enable use of the work with that
|
161 |
+
Major Component, or to implement a Standard Interface for which an
|
162 |
+
implementation is available to the public in source code form. A
|
163 |
+
"Major Component", in this context, means a major essential component
|
164 |
+
(kernel, window system, and so on) of the specific operating system
|
165 |
+
(if any) on which the executable work runs, or a compiler used to
|
166 |
+
produce the work, or an object code interpreter used to run it.
|
167 |
+
|
168 |
+
The "Corresponding Source" for a work in object code form means all
|
169 |
+
the source code needed to generate, install, and (for an executable
|
170 |
+
work) run the object code and to modify the work, including scripts to
|
171 |
+
control those activities. However, it does not include the work's
|
172 |
+
System Libraries, or general-purpose tools or generally available free
|
173 |
+
programs which are used unmodified in performing those activities but
|
174 |
+
which are not part of the work. For example, Corresponding Source
|
175 |
+
includes interface definition files associated with source files for
|
176 |
+
the work, and the source code for shared libraries and dynamically
|
177 |
+
linked subprograms that the work is specifically designed to require,
|
178 |
+
such as by intimate data communication or control flow between those
|
179 |
+
subprograms and other parts of the work.
|
180 |
+
|
181 |
+
The Corresponding Source need not include anything that users
|
182 |
+
can regenerate automatically from other parts of the Corresponding
|
183 |
+
Source.
|
184 |
+
|
185 |
+
The Corresponding Source for a work in source code form is that
|
186 |
+
same work.
|
187 |
+
|
188 |
+
2. Basic Permissions.
|
189 |
+
|
190 |
+
All rights granted under this License are granted for the term of
|
191 |
+
copyright on the Program, and are irrevocable provided the stated
|
192 |
+
conditions are met. This License explicitly affirms your unlimited
|
193 |
+
permission to run the unmodified Program. The output from running a
|
194 |
+
covered work is covered by this License only if the output, given its
|
195 |
+
content, constitutes a covered work. This License acknowledges your
|
196 |
+
rights of fair use or other equivalent, as provided by copyright law.
|
197 |
+
|
198 |
+
You may make, run and propagate covered works that you do not
|
199 |
+
convey, without conditions so long as your license otherwise remains
|
200 |
+
in force. You may convey covered works to others for the sole purpose
|
201 |
+
of having them make modifications exclusively for you, or provide you
|
202 |
+
with facilities for running those works, provided that you comply with
|
203 |
+
the terms of this License in conveying all material for which you do
|
204 |
+
not control copyright. Those thus making or running the covered works
|
205 |
+
for you must do so exclusively on your behalf, under your direction
|
206 |
+
and control, on terms that prohibit them from making any copies of
|
207 |
+
your copyrighted material outside their relationship with you.
|
208 |
+
|
209 |
+
Conveying under any other circumstances is permitted solely under
|
210 |
+
the conditions stated below. Sublicensing is not allowed; section 10
|
211 |
+
makes it unnecessary.
|
212 |
+
|
213 |
+
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
214 |
+
|
215 |
+
No covered work shall be deemed part of an effective technological
|
216 |
+
measure under any applicable law fulfilling obligations under article
|
217 |
+
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
218 |
+
similar laws prohibiting or restricting circumvention of such
|
219 |
+
measures.
|
220 |
+
|
221 |
+
When you convey a covered work, you waive any legal power to forbid
|
222 |
+
circumvention of technological measures to the extent such circumvention
|
223 |
+
is effected by exercising rights under this License with respect to
|
224 |
+
the covered work, and you disclaim any intention to limit operation or
|
225 |
+
modification of the work as a means of enforcing, against the work's
|
226 |
+
users, your or third parties' legal rights to forbid circumvention of
|
227 |
+
technological measures.
|
228 |
+
|
229 |
+
4. Conveying Verbatim Copies.
|
230 |
+
|
231 |
+
You may convey verbatim copies of the Program's source code as you
|
232 |
+
receive it, in any medium, provided that you conspicuously and
|
233 |
+
appropriately publish on each copy an appropriate copyright notice;
|
234 |
+
keep intact all notices stating that this License and any
|
235 |
+
non-permissive terms added in accord with section 7 apply to the code;
|
236 |
+
keep intact all notices of the absence of any warranty; and give all
|
237 |
+
recipients a copy of this License along with the Program.
|
238 |
+
|
239 |
+
You may charge any price or no price for each copy that you convey,
|
240 |
+
and you may offer support or warranty protection for a fee.
|
241 |
+
|
242 |
+
5. Conveying Modified Source Versions.
|
243 |
+
|
244 |
+
You may convey a work based on the Program, or the modifications to
|
245 |
+
produce it from the Program, in the form of source code under the
|
246 |
+
terms of section 4, provided that you also meet all of these conditions:
|
247 |
+
|
248 |
+
a) The work must carry prominent notices stating that you modified
|
249 |
+
it, and giving a relevant date.
|
250 |
+
|
251 |
+
b) The work must carry prominent notices stating that it is
|
252 |
+
released under this License and any conditions added under section
|
253 |
+
7. This requirement modifies the requirement in section 4 to
|
254 |
+
"keep intact all notices".
|
255 |
+
|
256 |
+
c) You must license the entire work, as a whole, under this
|
257 |
+
License to anyone who comes into possession of a copy. This
|
258 |
+
License will therefore apply, along with any applicable section 7
|
259 |
+
additional terms, to the whole of the work, and all its parts,
|
260 |
+
regardless of how they are packaged. This License gives no
|
261 |
+
permission to license the work in any other way, but it does not
|
262 |
+
invalidate such permission if you have separately received it.
|
263 |
+
|
264 |
+
d) If the work has interactive user interfaces, each must display
|
265 |
+
Appropriate Legal Notices; however, if the Program has interactive
|
266 |
+
interfaces that do not display Appropriate Legal Notices, your
|
267 |
+
work need not make them do so.
|
268 |
+
|
269 |
+
A compilation of a covered work with other separate and independent
|
270 |
+
works, which are not by their nature extensions of the covered work,
|
271 |
+
and which are not combined with it such as to form a larger program,
|
272 |
+
in or on a volume of a storage or distribution medium, is called an
|
273 |
+
"aggregate" if the compilation and its resulting copyright are not
|
274 |
+
used to limit the access or legal rights of the compilation's users
|
275 |
+
beyond what the individual works permit. Inclusion of a covered work
|
276 |
+
in an aggregate does not cause this License to apply to the other
|
277 |
+
parts of the aggregate.
|
278 |
+
|
279 |
+
6. Conveying Non-Source Forms.
|
280 |
+
|
281 |
+
You may convey a covered work in object code form under the terms
|
282 |
+
of sections 4 and 5, provided that you also convey the
|
283 |
+
machine-readable Corresponding Source under the terms of this License,
|
284 |
+
in one of these ways:
|
285 |
+
|
286 |
+
a) Convey the object code in, or embodied in, a physical product
|
287 |
+
(including a physical distribution medium), accompanied by the
|
288 |
+
Corresponding Source fixed on a durable physical medium
|
289 |
+
customarily used for software interchange.
|
290 |
+
|
291 |
+
b) Convey the object code in, or embodied in, a physical product
|
292 |
+
(including a physical distribution medium), accompanied by a
|
293 |
+
written offer, valid for at least three years and valid for as
|
294 |
+
long as you offer spare parts or customer support for that product
|
295 |
+
model, to give anyone who possesses the object code either (1) a
|
296 |
+
copy of the Corresponding Source for all the software in the
|
297 |
+
product that is covered by this License, on a durable physical
|
298 |
+
medium customarily used for software interchange, for a price no
|
299 |
+
more than your reasonable cost of physically performing this
|
300 |
+
conveying of source, or (2) access to copy the
|
301 |
+
Corresponding Source from a network server at no charge.
|
302 |
+
|
303 |
+
c) Convey individual copies of the object code with a copy of the
|
304 |
+
written offer to provide the Corresponding Source. This
|
305 |
+
alternative is allowed only occasionally and noncommercially, and
|
306 |
+
only if you received the object code with such an offer, in accord
|
307 |
+
with subsection 6b.
|
308 |
+
|
309 |
+
d) Convey the object code by offering access from a designated
|
310 |
+
place (gratis or for a charge), and offer equivalent access to the
|
311 |
+
Corresponding Source in the same way through the same place at no
|
312 |
+
further charge. You need not require recipients to copy the
|
313 |
+
Corresponding Source along with the object code. If the place to
|
314 |
+
copy the object code is a network server, the Corresponding Source
|
315 |
+
may be on a different server (operated by you or a third party)
|
316 |
+
that supports equivalent copying facilities, provided you maintain
|
317 |
+
clear directions next to the object code saying where to find the
|
318 |
+
Corresponding Source. Regardless of what server hosts the
|
319 |
+
Corresponding Source, you remain obligated to ensure that it is
|
320 |
+
available for as long as needed to satisfy these requirements.
|
321 |
+
|
322 |
+
e) Convey the object code using peer-to-peer transmission, provided
|
323 |
+
you inform other peers where the object code and Corresponding
|
324 |
+
Source of the work are being offered to the general public at no
|
325 |
+
charge under subsection 6d.
|
326 |
+
|
327 |
+
A separable portion of the object code, whose source code is excluded
|
328 |
+
from the Corresponding Source as a System Library, need not be
|
329 |
+
included in conveying the object code work.
|
330 |
+
|
331 |
+
A "User Product" is either (1) a "consumer product", which means any
|
332 |
+
tangible personal property which is normally used for personal, family,
|
333 |
+
or household purposes, or (2) anything designed or sold for incorporation
|
334 |
+
into a dwelling. In determining whether a product is a consumer product,
|
335 |
+
doubtful cases shall be resolved in favor of coverage. For a particular
|
336 |
+
product received by a particular user, "normally used" refers to a
|
337 |
+
typical or common use of that class of product, regardless of the status
|
338 |
+
of the particular user or of the way in which the particular user
|
339 |
+
actually uses, or expects or is expected to use, the product. A product
|
340 |
+
is a consumer product regardless of whether the product has substantial
|
341 |
+
commercial, industrial or non-consumer uses, unless such uses represent
|
342 |
+
the only significant mode of use of the product.
|
343 |
+
|
344 |
+
"Installation Information" for a User Product means any methods,
|
345 |
+
procedures, authorization keys, or other information required to install
|
346 |
+
and execute modified versions of a covered work in that User Product from
|
347 |
+
a modified version of its Corresponding Source. The information must
|
348 |
+
suffice to ensure that the continued functioning of the modified object
|
349 |
+
code is in no case prevented or interfered with solely because
|
350 |
+
modification has been made.
|
351 |
+
|
352 |
+
If you convey an object code work under this section in, or with, or
|
353 |
+
specifically for use in, a User Product, and the conveying occurs as
|
354 |
+
part of a transaction in which the right of possession and use of the
|
355 |
+
User Product is transferred to the recipient in perpetuity or for a
|
356 |
+
fixed term (regardless of how the transaction is characterized), the
|
357 |
+
Corresponding Source conveyed under this section must be accompanied
|
358 |
+
by the Installation Information. But this requirement does not apply
|
359 |
+
if neither you nor any third party retains the ability to install
|
360 |
+
modified object code on the User Product (for example, the work has
|
361 |
+
been installed in ROM).
|
362 |
+
|
363 |
+
The requirement to provide Installation Information does not include a
|
364 |
+
requirement to continue to provide support service, warranty, or updates
|
365 |
+
for a work that has been modified or installed by the recipient, or for
|
366 |
+
the User Product in which it has been modified or installed. Access to a
|
367 |
+
network may be denied when the modification itself materially and
|
368 |
+
adversely affects the operation of the network or violates the rules and
|
369 |
+
protocols for communication across the network.
|
370 |
+
|
371 |
+
Corresponding Source conveyed, and Installation Information provided,
|
372 |
+
in accord with this section must be in a format that is publicly
|
373 |
+
documented (and with an implementation available to the public in
|
374 |
+
source code form), and must require no special password or key for
|
375 |
+
unpacking, reading or copying.
|
376 |
+
|
377 |
+
7. Additional Terms.
|
378 |
+
|
379 |
+
"Additional permissions" are terms that supplement the terms of this
|
380 |
+
License by making exceptions from one or more of its conditions.
|
381 |
+
Additional permissions that are applicable to the entire Program shall
|
382 |
+
be treated as though they were included in this License, to the extent
|
383 |
+
that they are valid under applicable law. If additional permissions
|
384 |
+
apply only to part of the Program, that part may be used separately
|
385 |
+
under those permissions, but the entire Program remains governed by
|
386 |
+
this License without regard to the additional permissions.
|
387 |
+
|
388 |
+
When you convey a copy of a covered work, you may at your option
|
389 |
+
remove any additional permissions from that copy, or from any part of
|
390 |
+
it. (Additional permissions may be written to require their own
|
391 |
+
removal in certain cases when you modify the work.) You may place
|
392 |
+
additional permissions on material, added by you to a covered work,
|
393 |
+
for which you have or can give appropriate copyright permission.
|
394 |
+
|
395 |
+
Notwithstanding any other provision of this License, for material you
|
396 |
+
add to a covered work, you may (if authorized by the copyright holders of
|
397 |
+
that material) supplement the terms of this License with terms:
|
398 |
+
|
399 |
+
a) Disclaiming warranty or limiting liability differently from the
|
400 |
+
terms of sections 15 and 16 of this License; or
|
401 |
+
|
402 |
+
b) Requiring preservation of specified reasonable legal notices or
|
403 |
+
author attributions in that material or in the Appropriate Legal
|
404 |
+
Notices displayed by works containing it; or
|
405 |
+
|
406 |
+
c) Prohibiting misrepresentation of the origin of that material, or
|
407 |
+
requiring that modified versions of such material be marked in
|
408 |
+
reasonable ways as different from the original version; or
|
409 |
+
|
410 |
+
d) Limiting the use for publicity purposes of names of licensors or
|
411 |
+
authors of the material; or
|
412 |
+
|
413 |
+
e) Declining to grant rights under trademark law for use of some
|
414 |
+
trade names, trademarks, or service marks; or
|
415 |
+
|
416 |
+
f) Requiring indemnification of licensors and authors of that
|
417 |
+
material by anyone who conveys the material (or modified versions of
|
418 |
+
it) with contractual assumptions of liability to the recipient, for
|
419 |
+
any liability that these contractual assumptions directly impose on
|
420 |
+
those licensors and authors.
|
421 |
+
|
422 |
+
All other non-permissive additional terms are considered "further
|
423 |
+
restrictions" within the meaning of section 10. If the Program as you
|
424 |
+
received it, or any part of it, contains a notice stating that it is
|
425 |
+
governed by this License along with a term that is a further
|
426 |
+
restriction, you may remove that term. If a license document contains
|
427 |
+
a further restriction but permits relicensing or conveying under this
|
428 |
+
License, you may add to a covered work material governed by the terms
|
429 |
+
of that license document, provided that the further restriction does
|
430 |
+
not survive such relicensing or conveying.
|
431 |
+
|
432 |
+
If you add terms to a covered work in accord with this section, you
|
433 |
+
must place, in the relevant source files, a statement of the
|
434 |
+
additional terms that apply to those files, or a notice indicating
|
435 |
+
where to find the applicable terms.
|
436 |
+
|
437 |
+
Additional terms, permissive or non-permissive, may be stated in the
|
438 |
+
form of a separately written license, or stated as exceptions;
|
439 |
+
the above requirements apply either way.
|
440 |
+
|
441 |
+
8. Termination.
|
442 |
+
|
443 |
+
You may not propagate or modify a covered work except as expressly
|
444 |
+
provided under this License. Any attempt otherwise to propagate or
|
445 |
+
modify it is void, and will automatically terminate your rights under
|
446 |
+
this License (including any patent licenses granted under the third
|
447 |
+
paragraph of section 11).
|
448 |
+
|
449 |
+
However, if you cease all violation of this License, then your
|
450 |
+
license from a particular copyright holder is reinstated (a)
|
451 |
+
provisionally, unless and until the copyright holder explicitly and
|
452 |
+
finally terminates your license, and (b) permanently, if the copyright
|
453 |
+
holder fails to notify you of the violation by some reasonable means
|
454 |
+
prior to 60 days after the cessation.
|
455 |
+
|
456 |
+
Moreover, your license from a particular copyright holder is
|
457 |
+
reinstated permanently if the copyright holder notifies you of the
|
458 |
+
violation by some reasonable means, this is the first time you have
|
459 |
+
received notice of violation of this License (for any work) from that
|
460 |
+
copyright holder, and you cure the violation prior to 30 days after
|
461 |
+
your receipt of the notice.
|
462 |
+
|
463 |
+
Termination of your rights under this section does not terminate the
|
464 |
+
licenses of parties who have received copies or rights from you under
|
465 |
+
this License. If your rights have been terminated and not permanently
|
466 |
+
reinstated, you do not qualify to receive new licenses for the same
|
467 |
+
material under section 10.
|
468 |
+
|
469 |
+
9. Acceptance Not Required for Having Copies.
|
470 |
+
|
471 |
+
You are not required to accept this License in order to receive or
|
472 |
+
run a copy of the Program. Ancillary propagation of a covered work
|
473 |
+
occurring solely as a consequence of using peer-to-peer transmission
|
474 |
+
to receive a copy likewise does not require acceptance. However,
|
475 |
+
nothing other than this License grants you permission to propagate or
|
476 |
+
modify any covered work. These actions infringe copyright if you do
|
477 |
+
not accept this License. Therefore, by modifying or propagating a
|
478 |
+
covered work, you indicate your acceptance of this License to do so.
|
479 |
+
|
480 |
+
10. Automatic Licensing of Downstream Recipients.
|
481 |
+
|
482 |
+
Each time you convey a covered work, the recipient automatically
|
483 |
+
receives a license from the original licensors, to run, modify and
|
484 |
+
propagate that work, subject to this License. You are not responsible
|
485 |
+
for enforcing compliance by third parties with this License.
|
486 |
+
|
487 |
+
An "entity transaction" is a transaction transferring control of an
|
488 |
+
organization, or substantially all assets of one, or subdividing an
|
489 |
+
organization, or merging organizations. If propagation of a covered
|
490 |
+
work results from an entity transaction, each party to that
|
491 |
+
transaction who receives a copy of the work also receives whatever
|
492 |
+
licenses to the work the party's predecessor in interest had or could
|
493 |
+
give under the previous paragraph, plus a right to possession of the
|
494 |
+
Corresponding Source of the work from the predecessor in interest, if
|
495 |
+
the predecessor has it or can get it with reasonable efforts.
|
496 |
+
|
497 |
+
You may not impose any further restrictions on the exercise of the
|
498 |
+
rights granted or affirmed under this License. For example, you may
|
499 |
+
not impose a license fee, royalty, or other charge for exercise of
|
500 |
+
rights granted under this License, and you may not initiate litigation
|
501 |
+
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
502 |
+
any patent claim is infringed by making, using, selling, offering for
|
503 |
+
sale, or importing the Program or any portion of it.
|
504 |
+
|
505 |
+
11. Patents.
|
506 |
+
|
507 |
+
A "contributor" is a copyright holder who authorizes use under this
|
508 |
+
License of the Program or a work on which the Program is based. The
|
509 |
+
work thus licensed is called the contributor's "contributor version".
|
510 |
+
|
511 |
+
A contributor's "essential patent claims" are all patent claims
|
512 |
+
owned or controlled by the contributor, whether already acquired or
|
513 |
+
hereafter acquired, that would be infringed by some manner, permitted
|
514 |
+
by this License, of making, using, or selling its contributor version,
|
515 |
+
but do not include claims that would be infringed only as a
|
516 |
+
consequence of further modification of the contributor version. For
|
517 |
+
purposes of this definition, "control" includes the right to grant
|
518 |
+
patent sublicenses in a manner consistent with the requirements of
|
519 |
+
this License.
|
520 |
+
|
521 |
+
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
522 |
+
patent license under the contributor's essential patent claims, to
|
523 |
+
make, use, sell, offer for sale, import and otherwise run, modify and
|
524 |
+
propagate the contents of its contributor version.
|
525 |
+
|
526 |
+
In the following three paragraphs, a "patent license" is any express
|
527 |
+
agreement or commitment, however denominated, not to enforce a patent
|
528 |
+
(such as an express permission to practice a patent or covenant not to
|
529 |
+
sue for patent infringement). To "grant" such a patent license to a
|
530 |
+
party means to make such an agreement or commitment not to enforce a
|
531 |
+
patent against the party.
|
532 |
+
|
533 |
+
If you convey a covered work, knowingly relying on a patent license,
|
534 |
+
and the Corresponding Source of the work is not available for anyone
|
535 |
+
to copy, free of charge and under the terms of this License, through a
|
536 |
+
publicly available network server or other readily accessible means,
|
537 |
+
then you must either (1) cause the Corresponding Source to be so
|
538 |
+
available, or (2) arrange to deprive yourself of the benefit of the
|
539 |
+
patent license for this particular work, or (3) arrange, in a manner
|
540 |
+
consistent with the requirements of this License, to extend the patent
|
541 |
+
license to downstream recipients. "Knowingly relying" means you have
|
542 |
+
actual knowledge that, but for the patent license, your conveying the
|
543 |
+
covered work in a country, or your recipient's use of the covered work
|
544 |
+
in a country, would infringe one or more identifiable patents in that
|
545 |
+
country that you have reason to believe are valid.
|
546 |
+
|
547 |
+
If, pursuant to or in connection with a single transaction or
|
548 |
+
arrangement, you convey, or propagate by procuring conveyance of, a
|
549 |
+
covered work, and grant a patent license to some of the parties
|
550 |
+
receiving the covered work authorizing them to use, propagate, modify
|
551 |
+
or convey a specific copy of the covered work, then the patent license
|
552 |
+
you grant is automatically extended to all recipients of the covered
|
553 |
+
work and works based on it.
|
554 |
+
|
555 |
+
A patent license is "discriminatory" if it does not include within
|
556 |
+
the scope of its coverage, prohibits the exercise of, or is
|
557 |
+
conditioned on the non-exercise of one or more of the rights that are
|
558 |
+
specifically granted under this License. You may not convey a covered
|
559 |
+
work if you are a party to an arrangement with a third party that is
|
560 |
+
in the business of distributing software, under which you make payment
|
561 |
+
to the third party based on the extent of your activity of conveying
|
562 |
+
the work, and under which the third party grants, to any of the
|
563 |
+
parties who would receive the covered work from you, a discriminatory
|
564 |
+
patent license (a) in connection with copies of the covered work
|
565 |
+
conveyed by you (or copies made from those copies), or (b) primarily
|
566 |
+
for and in connection with specific products or compilations that
|
567 |
+
contain the covered work, unless you entered into that arrangement,
|
568 |
+
or that patent license was granted, prior to 28 March 2007.
|
569 |
+
|
570 |
+
Nothing in this License shall be construed as excluding or limiting
|
571 |
+
any implied license or other defenses to infringement that may
|
572 |
+
otherwise be available to you under applicable patent law.
|
573 |
+
|
574 |
+
12. No Surrender of Others' Freedom.
|
575 |
+
|
576 |
+
If conditions are imposed on you (whether by court order, agreement or
|
577 |
+
otherwise) that contradict the conditions of this License, they do not
|
578 |
+
excuse you from the conditions of this License. If you cannot convey a
|
579 |
+
covered work so as to satisfy simultaneously your obligations under this
|
580 |
+
License and any other pertinent obligations, then as a consequence you may
|
581 |
+
not convey it at all. For example, if you agree to terms that obligate you
|
582 |
+
to collect a royalty for further conveying from those to whom you convey
|
583 |
+
the Program, the only way you could satisfy both those terms and this
|
584 |
+
License would be to refrain entirely from conveying the Program.
|
585 |
+
|
586 |
+
13. Use with the GNU Affero General Public License.
|
587 |
+
|
588 |
+
Notwithstanding any other provision of this License, you have
|
589 |
+
permission to link or combine any covered work with a work licensed
|
590 |
+
under version 3 of the GNU Affero General Public License into a single
|
591 |
+
combined work, and to convey the resulting work. The terms of this
|
592 |
+
License will continue to apply to the part which is the covered work,
|
593 |
+
but the special requirements of the GNU Affero General Public License,
|
594 |
+
section 13, concerning interaction through a network will apply to the
|
595 |
+
combination as such.
|
596 |
+
|
597 |
+
14. Revised Versions of this License.
|
598 |
+
|
599 |
+
The Free Software Foundation may publish revised and/or new versions of
|
600 |
+
the GNU General Public License from time to time. Such new versions will
|
601 |
+
be similar in spirit to the present version, but may differ in detail to
|
602 |
+
address new problems or concerns.
|
603 |
+
|
604 |
+
Each version is given a distinguishing version number. If the
|
605 |
+
Program specifies that a certain numbered version of the GNU General
|
606 |
+
Public License "or any later version" applies to it, you have the
|
607 |
+
option of following the terms and conditions either of that numbered
|
608 |
+
version or of any later version published by the Free Software
|
609 |
+
Foundation. If the Program does not specify a version number of the
|
610 |
+
GNU General Public License, you may choose any version ever published
|
611 |
+
by the Free Software Foundation.
|
612 |
+
|
613 |
+
If the Program specifies that a proxy can decide which future
|
614 |
+
versions of the GNU General Public License can be used, that proxy's
|
615 |
+
public statement of acceptance of a version permanently authorizes you
|
616 |
+
to choose that version for the Program.
|
617 |
+
|
618 |
+
Later license versions may give you additional or different
|
619 |
+
permissions. However, no additional obligations are imposed on any
|
620 |
+
author or copyright holder as a result of your choosing to follow a
|
621 |
+
later version.
|
622 |
+
|
623 |
+
15. Disclaimer of Warranty.
|
624 |
+
|
625 |
+
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
626 |
+
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
627 |
+
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
628 |
+
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
629 |
+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
630 |
+
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
631 |
+
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
632 |
+
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
633 |
+
|
634 |
+
16. Limitation of Liability.
|
635 |
+
|
636 |
+
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
637 |
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
638 |
+
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
639 |
+
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
640 |
+
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
641 |
+
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
642 |
+
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
643 |
+
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
644 |
+
SUCH DAMAGES.
|
645 |
+
|
646 |
+
17. Interpretation of Sections 15 and 16.
|
647 |
+
|
648 |
+
If the disclaimer of warranty and limitation of liability provided
|
649 |
+
above cannot be given local legal effect according to their terms,
|
650 |
+
reviewing courts shall apply local law that most closely approximates
|
651 |
+
an absolute waiver of all civil liability in connection with the
|
652 |
+
Program, unless a warranty or assumption of liability accompanies a
|
653 |
+
copy of the Program in return for a fee.
|
654 |
+
|
655 |
+
END OF TERMS AND CONDITIONS
|
656 |
+
|
657 |
+
How to Apply These Terms to Your New Programs
|
658 |
+
|
659 |
+
If you develop a new program, and you want it to be of the greatest
|
660 |
+
possible use to the public, the best way to achieve this is to make it
|
661 |
+
free software which everyone can redistribute and change under these terms.
|
662 |
+
|
663 |
+
To do so, attach the following notices to the program. It is safest
|
664 |
+
to attach them to the start of each source file to most effectively
|
665 |
+
state the exclusion of warranty; and each file should have at least
|
666 |
+
the "copyright" line and a pointer to where the full notice is found.
|
667 |
+
|
668 |
+
{one line to give the program's name and a brief idea of what it does.}
|
669 |
+
Copyright (C) {year} {name of author}
|
670 |
+
|
671 |
+
This program is free software: you can redistribute it and/or modify
|
672 |
+
it under the terms of the GNU General Public License as published by
|
673 |
+
the Free Software Foundation, either version 3 of the License, or
|
674 |
+
(at your option) any later version.
|
675 |
+
|
676 |
+
This program is distributed in the hope that it will be useful,
|
677 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
678 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
679 |
+
GNU General Public License for more details.
|
680 |
+
|
681 |
+
You should have received a copy of the GNU General Public License
|
682 |
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
683 |
+
|
684 |
+
Also add information on how to contact you by electronic and paper mail.
|
685 |
+
|
686 |
+
If the program does terminal interaction, make it output a short
|
687 |
+
notice like this when it starts in an interactive mode:
|
688 |
+
|
689 |
+
{project} Copyright (C) {year} {fullname}
|
690 |
+
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
691 |
+
This is free software, and you are welcome to redistribute it
|
692 |
+
under certain conditions; type `show c' for details.
|
693 |
+
|
694 |
+
The hypothetical commands `show w' and `show c' should show the appropriate
|
695 |
+
parts of the General Public License. Of course, your program's commands
|
696 |
+
might be different; for a GUI interface, you would use an "about box".
|
697 |
+
|
698 |
+
You should also get your employer (if you work as a programmer) or school,
|
699 |
+
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
700 |
+
For more information on this, and how to apply and follow the GNU GPL, see
|
701 |
+
<http://www.gnu.org/licenses/>.
|
702 |
+
|
703 |
+
The GNU General Public License does not permit incorporating your program
|
704 |
+
into proprietary programs. If your program is a subroutine library, you
|
705 |
+
may consider it more useful to permit linking proprietary applications with
|
706 |
+
the library. If this is what you want to do, use the GNU Lesser General
|
707 |
+
Public License instead of this License. But first, please read
|
708 |
+
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: ThemeGrill, shivapoudel
|
|
3 |
Tags: social, media, icons, brands, widget, social networking, social media, social icon, social icons, social profile, social icon widget, shortcode
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 4.7
|
6 |
-
Stable tag: 1.
|
7 |
License: GPLv3
|
8 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -12,13 +12,13 @@ Social Icons provides you with an easy way to display various popular social ico
|
|
12 |
== Description ==
|
13 |
Social Icons provides you with an easy way to display various popular social icons via widgets and shortcodes. You can drag the widget in your sidebars and change the settings from the widget form itself. Also you can use the shortcode and paste it on your page, post or wherever you like
|
14 |
|
15 |
-
Get free support at
|
16 |
|
17 |
-
View features
|
18 |
|
19 |
-
Check the demo at
|
20 |
|
21 |
-
Check the docs at
|
22 |
|
23 |
### Features And Options:
|
24 |
* Supports more than 100+ popular social icons.
|
@@ -54,6 +54,11 @@ Yes you can! Join in on our [GitHub repository](https://github.com/themegrill/so
|
|
54 |
|
55 |
== Changelog ==
|
56 |
|
|
|
|
|
|
|
|
|
|
|
57 |
= 1.5.0 - 08/12/2016 =
|
58 |
* Fix - Blogspot icon to blog on Blogger.com
|
59 |
* Fix - Breakage of first social icon name found within a loop.
|
3 |
Tags: social, media, icons, brands, widget, social networking, social media, social icon, social icons, social profile, social icon widget, shortcode
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 4.7
|
6 |
+
Stable tag: 1.6.0
|
7 |
License: GPLv3
|
8 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
12 |
== Description ==
|
13 |
Social Icons provides you with an easy way to display various popular social icons via widgets and shortcodes. You can drag the widget in your sidebars and change the settings from the widget form itself. Also you can use the shortcode and paste it on your page, post or wherever you like
|
14 |
|
15 |
+
Get free support at https://themegrill.com/support-forum/
|
16 |
|
17 |
+
View features https://themegrill.com/plugins/social-icons/
|
18 |
|
19 |
+
Check the demo at https://demo.themegrill.com/social-icons/
|
20 |
|
21 |
+
Check the docs at https://themegrill.com/docs/social-icons/
|
22 |
|
23 |
### Features And Options:
|
24 |
* Supports more than 100+ popular social icons.
|
54 |
|
55 |
== Changelog ==
|
56 |
|
57 |
+
= 1.6.0 - 25/05/2017 =
|
58 |
+
* Fix - CSS conflict with width used in `.socicon:empty`.
|
59 |
+
* Tweak - Introduced `si_get_default_sortable_socicons()`.
|
60 |
+
* Feature - Support padding options to gain user defined icon.
|
61 |
+
|
62 |
= 1.5.0 - 08/12/2016 =
|
63 |
* Fix - Blogspot icon to blog on Blogger.com
|
64 |
* Fix - Breakage of first social icon name found within a loop.
|
social-icons.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Social Icons
|
4 |
* Plugin URI: http://themegrill.com/plugins/social-icons/
|
5 |
* Description: Social Icons provides you with an easy way to display various popular social icons via widgets and shortcodes. You can drag the widget in your sidebars and change the settings from the widget form itself. Also you can use the shortcode and paste it on your page, post or wherever you like.
|
6 |
-
* Version: 1.
|
7 |
* Author: ThemeGrill
|
8 |
* Author URI: http://themegrill.com
|
9 |
* License: GPLv3 or later
|
@@ -29,7 +29,7 @@ final class Social_Icons {
|
|
29 |
* Plugin version.
|
30 |
* @var string
|
31 |
*/
|
32 |
-
public $version = '1.
|
33 |
|
34 |
/**
|
35 |
* Instance of this class.
|
3 |
* Plugin Name: Social Icons
|
4 |
* Plugin URI: http://themegrill.com/plugins/social-icons/
|
5 |
* Description: Social Icons provides you with an easy way to display various popular social icons via widgets and shortcodes. You can drag the widget in your sidebars and change the settings from the widget form itself. Also you can use the shortcode and paste it on your page, post or wherever you like.
|
6 |
+
* Version: 1.6.0
|
7 |
* Author: ThemeGrill
|
8 |
* Author URI: http://themegrill.com
|
9 |
* License: GPLv3 or later
|
29 |
* Plugin version.
|
30 |
* @var string
|
31 |
*/
|
32 |
+
public $version = '1.6.0';
|
33 |
|
34 |
/**
|
35 |
* Instance of this class.
|