Simple Author Box - Version 1.2

Version Description

  • Added author website option, fully configurable.
  • Added the ability to manually insert the author box on author.php or archive.php.
  • Added two more conditionals to load plugin CSS when need it.
  • Fixed some visual appearance of admin options in Google Chrome.
  • Updated translation with the new strings.
Download this release

Release Info

Developer tiguan
Plugin Icon 128x128 Simple Author Box
Version 1.2
Comparing to
See all releases

Code changes from version 1.1 to 1.2

core/sabox_author_box.php CHANGED
@@ -14,7 +14,7 @@ if( !function_exists( 'wpsabox_author_box' ) ) {
14
 
15
  function wpsabox_author_box( $saboxmeta = null ) {
16
 
17
- if ( is_single() ) {
18
 
19
  global $post;
20
  global $options;
@@ -27,28 +27,66 @@ if( !function_exists( 'wpsabox_author_box' ) ) {
27
  $sabox_color = '';
28
  }
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  if( get_the_author_meta( 'description' ) != '' || !isset( $options['sab_no_description'] ) ) { // hide the author box if no description is provided
31
 
32
  $saboxmeta .= '<div class="saboxplugin-wrap">'; // start saboxplugin-wrap div
33
 
34
  // author box gravatar
35
  $saboxmeta .= '<div class="saboxplugin-gravatar">';
36
- $saboxmeta .= get_avatar( get_the_author_meta( 'email' ), '100' );
37
  $saboxmeta .= '</div>';
38
 
39
  // author box name
40
  $saboxmeta .= '<div class="saboxplugin-authorname">';
41
- // $saboxmeta .= get_the_author_link(); // display the author url(website)
42
- $saboxmeta .= '<a href="' . get_author_posts_url( $author_id ) . '">' . get_the_author_meta('display_name', $author_id ) . '</a>';
43
  $saboxmeta .= '</div>';
44
 
 
45
  // author box description
46
  $saboxmeta .= '<div class="saboxplugin-desc">';
47
  $saboxmeta .= '<div class="vcard author"><span class="fn">';
48
- $saboxmeta .= get_the_author_meta('description' );
49
  $saboxmeta .= '</span></div>';
50
  $saboxmeta .= '</div>';
51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  // author box clearfix
53
  $saboxmeta .= '<div class="clearfix"></div>';
54
 
@@ -67,7 +105,7 @@ if( !function_exists( 'wpsabox_author_box' ) ) {
67
  }
68
 
69
  $saboxmeta .= '</div>';
70
- } // end of // hide social icons
71
  $saboxmeta .= '</div>'; // end of saboxplugin-wrap div
72
 
73
  }
14
 
15
  function wpsabox_author_box( $saboxmeta = null ) {
16
 
17
+ if ( is_single() or is_author() or is_archive() ) {
18
 
19
  global $post;
20
  global $options;
27
  $sabox_color = '';
28
  }
29
 
30
+ if( isset( $options['sab_web_position'] ) ) {
31
+ $sab_web_align = 'sab-web-position';
32
+ } else {
33
+ $sab_web_align = '';
34
+ }
35
+
36
+ if( isset( $options['sab_web_target'] ) ) {
37
+ $sab_web_target = '_blank';
38
+ } else {
39
+ $sab_web_target = '_self';
40
+ }
41
+
42
+ if( isset( $options['sab_web_rel'] ) ) {
43
+ $sab_web_rel = 'rel="nofollow"';
44
+ } else {
45
+ $sab_web_rel = '';
46
+ }
47
+
48
+
49
  if( get_the_author_meta( 'description' ) != '' || !isset( $options['sab_no_description'] ) ) { // hide the author box if no description is provided
50
 
51
  $saboxmeta .= '<div class="saboxplugin-wrap">'; // start saboxplugin-wrap div
52
 
53
  // author box gravatar
54
  $saboxmeta .= '<div class="saboxplugin-gravatar">';
55
+ $saboxmeta .= get_avatar( get_the_author_meta( 'user_email', $author_id ), '100' );
56
  $saboxmeta .= '</div>';
57
 
58
  // author box name
59
  $saboxmeta .= '<div class="saboxplugin-authorname">';
60
+ $saboxmeta .= '<a href="' . get_author_posts_url( $author_id ) . '">' . get_the_author_meta( 'display_name', $author_id ) . '</a>';
 
61
  $saboxmeta .= '</div>';
62
 
63
+
64
  // author box description
65
  $saboxmeta .= '<div class="saboxplugin-desc">';
66
  $saboxmeta .= '<div class="vcard author"><span class="fn">';
67
+ $saboxmeta .= get_the_author_meta( 'description', $author_id );
68
  $saboxmeta .= '</span></div>';
69
  $saboxmeta .= '</div>';
70
 
71
+ if ( is_single() ) {
72
+ if( get_the_author_meta( 'user_url' ) != '' and isset( $options['sab_web'] ) ) { // author website on single
73
+ $saboxmeta .= '<div class="saboxplugin-web '. $sab_web_align .'">';
74
+ $saboxmeta .= '<a href="' . get_the_author_meta( 'user_url', $author_id ) . '" target="' . $sab_web_target . '" ' . $sab_web_rel . '>' . get_the_author_meta( 'user_url', $author_id ) . '</a>';
75
+ $saboxmeta .= '</div>';
76
+ }
77
+ }
78
+
79
+
80
+ if ( is_author() or is_archive() ) {
81
+ if( get_the_author_meta( 'user_url' ) != '' ) { // force show author website on author.php or archive.php
82
+ $saboxmeta .= '<div class="saboxplugin-web '. $sab_web_align .'">';
83
+ $saboxmeta .= '<a href="' . get_the_author_meta( 'user_url', $author_id ) . '" target="' . $sab_web_target . '" ' . $sab_web_rel . '>' . get_the_author_meta( 'user_url', $author_id ) . '</a>';
84
+ $saboxmeta .= '</div>';
85
+ }
86
+ }
87
+
88
+
89
+
90
  // author box clearfix
91
  $saboxmeta .= '<div class="clearfix"></div>';
92
 
105
  }
106
 
107
  $saboxmeta .= '</div>';
108
+ } // end of social icons
109
  $saboxmeta .= '</div>'; // end of saboxplugin-wrap div
110
 
111
  }
css/dev/sabox-admin-style-rtl.css CHANGED
@@ -98,7 +98,9 @@ body {
98
  .wrap .saboxplugin .sabox-inline-slide .sabox-amount,
99
  .wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
100
  .wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
101
- .wrap .saboxplugin .sabox-inline-slide .sabox-amount4 {
 
 
102
  background-color: transparent;
103
  border: medium none;
104
  -webkit-box-shadow:none;
@@ -112,7 +114,9 @@ body {
112
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider,
113
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider2,
114
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider3,
115
- .wrap .saboxplugin .sabox-inline-slide .sabox-slider4 {
 
 
116
  width: 40%;
117
  margin: 20px 0;
118
  }
98
  .wrap .saboxplugin .sabox-inline-slide .sabox-amount,
99
  .wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
100
  .wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
101
+ .wrap .saboxplugin .sabox-inline-slide .sabox-amount4,
102
+ .wrap .saboxplugin .sabox-inline-slide .sabox-amount5,
103
+ .wrap .saboxplugin .sabox-inline-slide .sabox-amount6 {
104
  background-color: transparent;
105
  border: medium none;
106
  -webkit-box-shadow:none;
114
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider,
115
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider2,
116
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider3,
117
+ .wrap .saboxplugin .sabox-inline-slide .sabox-slider4,
118
+ .wrap .saboxplugin .sabox-inline-slide .sabox-slider5,
119
+ .wrap .saboxplugin .sabox-inline-slide .sabox-slider6 {
120
  width: 40%;
121
  margin: 20px 0;
122
  }
css/dev/sabox-admin-style.css CHANGED
@@ -94,7 +94,8 @@
94
  .wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
95
  .wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
96
  .wrap .saboxplugin .sabox-inline-slide .sabox-amount4,
97
- .wrap .saboxplugin .sabox-inline-slide .sabox-amount5 {
 
98
  background-color: transparent;
99
  border: medium none;
100
  -webkit-box-shadow:none;
@@ -102,14 +103,14 @@
102
  box-shadow:none;
103
  font-size: 24px;
104
  color: #666666;
105
- vertical-align: text-bottom;
106
  }
107
 
108
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider,
109
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider2,
110
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider3,
111
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider4,
112
- .wrap .saboxplugin .sabox-inline-slide .sabox-slider5 {
 
113
  width: 40%;
114
  margin: 20px 0;
115
  }
94
  .wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
95
  .wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
96
  .wrap .saboxplugin .sabox-inline-slide .sabox-amount4,
97
+ .wrap .saboxplugin .sabox-inline-slide .sabox-amount5,
98
+ .wrap .saboxplugin .sabox-inline-slide .sabox-amount6 {
99
  background-color: transparent;
100
  border: medium none;
101
  -webkit-box-shadow:none;
103
  box-shadow:none;
104
  font-size: 24px;
105
  color: #666666;
 
106
  }
107
 
108
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider,
109
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider2,
110
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider3,
111
  .wrap .saboxplugin .sabox-inline-slide .sabox-slider4,
112
+ .wrap .saboxplugin .sabox-inline-slide .sabox-slider5,
113
+ .wrap .saboxplugin .sabox-inline-slide .sabox-slider6 {
114
  width: 40%;
115
  margin: 20px 0;
116
  }
css/dev/simple-author-box-rtl.css CHANGED
@@ -27,29 +27,42 @@
27
 
28
  }
29
 
30
- .saboxplugin-wrap .saboxplugin-desc {
31
- display: block;
32
- margin-right: 100px;
33
- margin-left: 20px;
34
- }
35
-
36
  .saboxplugin-wrap .saboxplugin-authorname {
37
- font-size: 18px;
38
- line-height: 1;
39
- margin: 20px 0 7px;
40
- display: block;
41
  }
42
 
43
- .saboxplugin-wrap .saboxplugin-authorname a {
44
  text-decoration: none;
45
  }
46
 
 
 
 
 
 
47
  .saboxplugin-wrap .saboxplugin-desc a {
48
- text-decoration: none;
49
  }
50
 
51
  .saboxplugin-wrap .saboxplugin-desc p {
52
- margin: 5px 0 12px 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  }
54
 
55
  .saboxplugin-wrap .saboxplugin-socials {
27
 
28
  }
29
 
 
 
 
 
 
 
30
  .saboxplugin-wrap .saboxplugin-authorname {
31
+ font-size: 18px;
32
+ line-height: 1;
33
+ margin: 20px 0 0 20px;
34
+ display: block;
35
  }
36
 
37
+ .saboxplugin-authorname a {
38
  text-decoration: none;
39
  }
40
 
41
+ .saboxplugin-wrap .saboxplugin-desc {
42
+ display: block;
43
+ margin: 5px 20px;
44
+ }
45
+
46
  .saboxplugin-wrap .saboxplugin-desc a {
47
+ text-decoration: none;
48
  }
49
 
50
  .saboxplugin-wrap .saboxplugin-desc p {
51
+ margin: 5px 0 12px 0;
52
+ }
53
+
54
+ .saboxplugin-wrap .saboxplugin-web {
55
+ margin: 0 20px 15px;
56
+ text-align: right;
57
+ }
58
+
59
+ .saboxplugin-wrap .sab-web-position {
60
+ text-align: left;
61
+ }
62
+
63
+ .saboxplugin-wrap .saboxplugin-web a {
64
+ color: #ccc;
65
+ text-decoration: none;
66
  }
67
 
68
  .saboxplugin-wrap .saboxplugin-socials {
css/dev/simple-author-box.css CHANGED
@@ -25,16 +25,10 @@
25
 
26
  }
27
 
28
- .saboxplugin-wrap .saboxplugin-desc {
29
- display: block;
30
- margin-left: 100px;
31
- margin-right: 20px;
32
- }
33
-
34
  .saboxplugin-wrap .saboxplugin-authorname {
35
  font-size: 18px;
36
  line-height: 1;
37
- margin: 20px 0 7px;
38
  display: block;
39
  }
40
 
@@ -42,6 +36,11 @@
42
  text-decoration: none;
43
  }
44
 
 
 
 
 
 
45
  .saboxplugin-wrap .saboxplugin-desc a {
46
  text-decoration: none;
47
  }
@@ -50,6 +49,20 @@
50
  margin: 5px 0 12px 0;
51
  }
52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  .saboxplugin-wrap .saboxplugin-socials {
54
  position:relative;
55
  z-index:50;
25
 
26
  }
27
 
 
 
 
 
 
 
28
  .saboxplugin-wrap .saboxplugin-authorname {
29
  font-size: 18px;
30
  line-height: 1;
31
+ margin: 20px 0 0 20px;
32
  display: block;
33
  }
34
 
36
  text-decoration: none;
37
  }
38
 
39
+ .saboxplugin-wrap .saboxplugin-desc {
40
+ display: block;
41
+ margin: 5px 20px;
42
+ }
43
+
44
  .saboxplugin-wrap .saboxplugin-desc a {
45
  text-decoration: none;
46
  }
49
  margin: 5px 0 12px 0;
50
  }
51
 
52
+ .saboxplugin-wrap .saboxplugin-web {
53
+ margin: 0 20px 15px;
54
+ text-align: left;
55
+ }
56
+
57
+ .saboxplugin-wrap .sab-web-position {
58
+ text-align: right;
59
+ }
60
+
61
+ .saboxplugin-wrap .saboxplugin-web a {
62
+ color: #ccc;
63
+ text-decoration: none;
64
+ }
65
+
66
  .saboxplugin-wrap .saboxplugin-socials {
67
  position:relative;
68
  z-index:50;
css/sabox-admin-style-rtl.min.css CHANGED
@@ -1 +1 @@
1
- body{direction:rtl;unicode-bidi:embed}.wp-core-ui .button-primary,.wp-core-ui .button-secondary,.wrap .saboxplugin .wp-core-ui .button{font-size:16px;height:42px;border-style:none;line-height:36px;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.wrap .saboxplugin p{color:#777;line-height:1.6}.wrap .saboxplugin p.description{margin:20px 0 5px}.wrap .saboxplugin ::-moz-selection{background:#80828F;color:#fff}.wrap .saboxplugin ::selection{background:#80828F;color:#fff}.wrap .saboxplugin #saboxplugin-hide{border-top:1px dashed #E1E1E1;margin:1.5em 0;display:none}.wrap .saboxplugin .saboxplugin-border{border-bottom:1px dashed #E1E1E1;margin:2em 0}.wrap .saboxplugin #poststuff h2{font-size:26px;padding:9px 15px 20px 0;font-weight:700}.wrap .saboxplugin h3{font-size:24px;padding:9px 15px 20px 0;font-weight:700;color:#444}.wrap .saboxplugin #poststuff h3{font-size:24px;padding:8px 20px}.wrap .saboxplugin #poststuff .inside{margin:26px 0 0}.wrap .saboxplugin .handlediv{color:#80828F}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{left:20px;font:400 30px/1.2 dashicons;padding:8px 0;content:"\f343"}.wrap .saboxplugin .meta-box-sortables .postbox.closed .handlediv:before{content:"\f347"}.wrap .saboxplugin .postbox .inside{padding:0 40px 12px}.wrap .saboxplugin label{cursor:default}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{background-color:transparent;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;font-size:24px;color:#666;vertical-align:text-bottom}.wrap .saboxplugin .sabox-inline-slide .sabox-slider,.wrap .saboxplugin .sabox-inline-slide .sabox-slider2,.wrap .saboxplugin .sabox-inline-slide .sabox-slider3,.wrap .saboxplugin .sabox-inline-slide .sabox-slider4{width:40%;margin:20px 0}.wrap .saboxplugin .sabox-inline-slide .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default{border:1px solid #73C77B;background-color:#8CE196;font-weight:400;color:#555;outline:0;cursor:pointer}.wrap .saboxplugin .sabox-inline-slide .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default:before{content:"\2630";display:inline-block;-webkit-font-smoothing:antialiased;color:#fff;font-weight:700;text-shadow:0 1px #73C77B;line-height:1.8}.wrap .saboxplugin .sabox-inline-slide .ui-state-default a,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:link,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:visited{color:#fff;text-decoration:none}.wrap .saboxplugin .sabox-inline-slide .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-hover{background:#9BEBA3}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top{border-top-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tr{border-top-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-br,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right{border-bottom-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left{border-bottom-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-slider-horizontal{height:1.3em}.wrap .saboxplugin .sabox-inline-slide .ui-slider .ui-slider-handle{width:1.8em;height:1.8em;cursor:pointer;text-align:center}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);border:1px solid #B2BFCA;background:#F1F2F7;color:#222}.wp-color-result,.wrap .saboxplugin .wp-color-result:after{border-radius:0;-webkit-box-shadow:none!important;-moz-box-shadow:none!important;box-shadow:none!important;outline:0}.wrap .saboxplugin .wp-color-result:after{font-size:12px;border-right:1px solid #D3D6DB;line-height:42px;padding:0 7.5px}.wrap .saboxplugin .wp-color-result{border:1px solid #D3D6DB;height:42px;padding-right:40px;outline:0;background-color:#D3D6DB}.wrap .saboxplugin .wp-color-result:hover:after{border-color:#AFAEAE;border-right:1px solid #D3D6DB}.wrap .saboxplugin .wp-picker-container .button{color:#FFF;background-color:#80828F;border:none;height:44px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:0;padding:0 15px 1px}.wrap .saboxplugin .wp-picker-container input.wp-color-picker[type=text]{height:44px}.wrap .saboxplugin .saboxplugin-icon:before{content:"\f336";display:inline-block;-webkit-font-smoothing:antialiased;font:50px/0.6 dashicons;vertical-align:top;color:#FA5148;padding-right:5px}.wrap .saboxplugin textarea[name=saboxplugin]{resize:none;border:none;background-color:#FFF;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;color:#777;padding:0;font-size:13px;line-height:1.4;overflow:hidden;width:99%}.wrap .saboxplugin .saboxplugin-question{display:inline-block;vertical-align:middle;padding:10px 0;font-size:24px;margin-left:40px;color:#666;width:100%;max-width:700px;min-width:247px;line-height:1.6}.wrap .saboxplugin .saboxplugin-switch{display:inline-block;vertical-align:top;padding:10px 0}.wrap .saboxplugin .sab-toggle{position:absolute;margin-left:-9999px;visibility:hidden}.wrap .saboxplugin .sab-toggle+label{display:block;position:relative;cursor:pointer;outline:0;user-select:none}.wrap .saboxplugin input.sab-toggle-yes-no+label{padding:2px;width:120px;height:40px}.wrap .saboxplugin input.sab-toggle-yes-no+label:after,.wrap .saboxplugin input.sab-toggle-yes-no+label:before{display:block;position:absolute;top:0;left:0;bottom:0;right:0;color:#fff;font-family:"Open Sans",serif;font-size:20px;text-align:center;line-height:42px}.wrap .saboxplugin input.sab-toggle-yes-no+label:before{background-color:#D3D6DB;content:attr(data-off);transition:transform .5s;backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no+label:after{background-color:#8CE196;content:attr(data-on);transition:transform .5s;transform:rotateY(180deg);backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:before{transform:rotateY(180deg)}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:after{transform:rotateY(0)}.wrap .saboxplugin .sab-title-div{height:50px;clear:both}.wrap .saboxplugin .sab-title-div .sab-title{font-size:18px;line-height:26px;padding-top:16px;padding-right:15px;display:block;float:left}.wrap .saboxplugin .sab-box{background:#fff;border:1px solid #E5E5E5;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:15px;margin-top:40px;position:relative;overflow:hidden}.wrap .saboxplugin .sab-box p{margin:5px 0 5px 70px;color:#777}.wrap .saboxplugin .sab-box-legend,.wrap .saboxplugin .sab-box-version{position:absolute;right:0;top:0;height:100%}.wrap .saboxplugin .sab-box-version{background:none repeat scroll 0 0 #80828F;padding:10px 15px}.wrap .saboxplugin .sab-icon-help,.wrap .saboxplugin .sab-icon-version{color:#FFF;font-size:25px}.wrap .saboxplugin .sab-infos{display:block;margin:0 auto;padding-right:70px;font-weight:700;color:#777}.wrap .saboxplugin .sab-infos span{color:#777;font-weight:400}.wrap .saboxplugin .sab-infos-title{font-weight:700;color:#777}.wrap .saboxplugin .sab-icon-version:before{content:"\f348";display:inline-block;-webkit-font-smoothing:antialiased;font:400 30px/1.5 dashicons;vertical-align:top}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}@media (min-width:900px) and (max-width:1199px){.wrap .saboxplugin .saboxplugin-question{max-width:480px;font-size:20px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:20px}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{left:40px}}@media screen and (max-width:899px){.wrap .saboxplugin .saboxplugin-question{font-size:18px;line-height:2}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:18px}.wrap .saboxplugin .saboxplugin-question{max-width:1000px;text-align:right;min-width:100px}.wrap .saboxplugin .saboxplugin-switch{display:block}.wrap .saboxplugin input.sab-toggle-yes-no+label{width:auto}.wrap .saboxplugin textarea[name=saboxplugin]{width:100%;height:60px;text-align:center}.wrap .saboxplugin p.description{text-align:center}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{width:100%}}@media screen and (max-width:783px){.wrap .saboxplugin #poststuff h2{font-size:26px;padding:0 15px 0 0}.wrap .saboxplugin .saboxplugin-icon:before{font:40px/0.8 dashicons}.wp-core-ui .button{padding:0 14px}.wrap .saboxplugin #poststuff .inside{margin:0}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{left:12px;font:400 20px/1.2 dashicons;padding:8px 10px}.wrap .saboxplugin #poststuff h3{font-size:20px}.wrap .saboxplugin .saboxplugin-question{font-size:18px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{vertical-align:baseline}}@media screen and (max-width:700px){.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .saboxplugin-question{font-size:16px}}@media screen and (max-width:600px){.wrap .saboxplugin .saboxplugin-question{text-align:center;line-height:1.2}.wrap .saboxplugin .saboxplugin-switch{text-align:center}.wrap .saboxplugin .saboxplugin-border{margin:0}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{text-align:center}}
1
+ body{direction:rtl;unicode-bidi:embed}.wp-core-ui .button-primary,.wp-core-ui .button-secondary,.wrap .saboxplugin .wp-core-ui .button{font-size:16px;height:42px;border-style:none;line-height:36px;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.wrap .saboxplugin p{color:#777;line-height:1.6}.wrap .saboxplugin p.description{margin:20px 0 5px}.wrap .saboxplugin ::-moz-selection{background:#80828F;color:#fff}.wrap .saboxplugin ::selection{background:#80828F;color:#fff}.wrap .saboxplugin #saboxplugin-hide{border-top:1px dashed #E1E1E1;margin:1.5em 0;display:none}.wrap .saboxplugin .saboxplugin-border{border-bottom:1px dashed #E1E1E1;margin:2em 0}.wrap .saboxplugin #poststuff h2{font-size:26px;padding:9px 15px 20px 0;font-weight:700}.wrap .saboxplugin h3{font-size:24px;padding:9px 15px 20px 0;font-weight:700;color:#444}.wrap .saboxplugin #poststuff h3{font-size:24px;padding:8px 20px}.wrap .saboxplugin #poststuff .inside{margin:26px 0 0}.wrap .saboxplugin .handlediv{color:#80828F}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{left:20px;font:400 30px/1.2 dashicons;padding:8px 0;content:"\f343"}.wrap .saboxplugin .meta-box-sortables .postbox.closed .handlediv:before{content:"\f347"}.wrap .saboxplugin .postbox .inside{padding:0 40px 12px}.wrap .saboxplugin label{cursor:default}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .sabox-inline-slide .sabox-amount5,.wrap .saboxplugin .sabox-inline-slide .sabox-amount6{background-color:transparent;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;font-size:24px;color:#666;vertical-align:text-bottom}.wrap .saboxplugin .sabox-inline-slide .sabox-slider,.wrap .saboxplugin .sabox-inline-slide .sabox-slider2,.wrap .saboxplugin .sabox-inline-slide .sabox-slider3,.wrap .saboxplugin .sabox-inline-slide .sabox-slider4,.wrap .saboxplugin .sabox-inline-slide .sabox-slider5,.wrap .saboxplugin .sabox-inline-slide .sabox-slider6{width:40%;margin:20px 0}.wrap .saboxplugin .sabox-inline-slide .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default{border:1px solid #73C77B;background-color:#8CE196;font-weight:400;color:#555;outline:0;cursor:pointer}.wrap .saboxplugin .sabox-inline-slide .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default:before{content:"\2630";display:inline-block;-webkit-font-smoothing:antialiased;color:#fff;font-weight:700;text-shadow:0 1px #73C77B;line-height:1.8}.wrap .saboxplugin .sabox-inline-slide .ui-state-default a,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:link,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:visited{color:#fff;text-decoration:none}.wrap .saboxplugin .sabox-inline-slide .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-hover{background:#9BEBA3}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top{border-top-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tr{border-top-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-br,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right{border-bottom-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left{border-bottom-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-slider-horizontal{height:1.3em}.wrap .saboxplugin .sabox-inline-slide .ui-slider .ui-slider-handle{width:1.8em;height:1.8em;cursor:pointer;text-align:center}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);border:1px solid #B2BFCA;background:#F1F2F7;color:#222}.wp-color-result,.wrap .saboxplugin .wp-color-result:after{border-radius:0;-webkit-box-shadow:none!important;-moz-box-shadow:none!important;box-shadow:none!important;outline:0}.wrap .saboxplugin .wp-color-result:after{font-size:12px;border-right:1px solid #D3D6DB;line-height:42px;padding:0 7.5px}.wrap .saboxplugin .wp-color-result{border:1px solid #D3D6DB;height:42px;padding-right:40px;outline:0;background-color:#D3D6DB}.wrap .saboxplugin .wp-color-result:hover:after{border-color:#AFAEAE;border-right:1px solid #D3D6DB}.wrap .saboxplugin .wp-picker-container .button{color:#FFF;background-color:#80828F;border:none;height:44px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:0;padding:0 15px 1px}.wrap .saboxplugin .wp-picker-container input.wp-color-picker[type=text]{height:44px}.wrap .saboxplugin .saboxplugin-icon:before{content:"\f336";display:inline-block;-webkit-font-smoothing:antialiased;font:50px/0.6 dashicons;vertical-align:top;color:#FA5148;padding-right:5px}.wrap .saboxplugin textarea[name=saboxplugin]{resize:none;border:none;background-color:#FFF;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;color:#777;padding:0;font-size:13px;line-height:1.4;overflow:hidden;width:99%}.wrap .saboxplugin .saboxplugin-question{display:inline-block;vertical-align:middle;padding:10px 0;font-size:24px;margin-left:40px;color:#666;width:100%;max-width:700px;min-width:247px;line-height:1.6}.wrap .saboxplugin .saboxplugin-switch{display:inline-block;vertical-align:top;padding:10px 0}.wrap .saboxplugin .sab-toggle{position:absolute;margin-left:-9999px;visibility:hidden}.wrap .saboxplugin .sab-toggle+label{display:block;position:relative;cursor:pointer;outline:0;user-select:none}.wrap .saboxplugin input.sab-toggle-yes-no+label{padding:2px;width:120px;height:40px}.wrap .saboxplugin input.sab-toggle-yes-no+label:after,.wrap .saboxplugin input.sab-toggle-yes-no+label:before{display:block;position:absolute;top:0;left:0;bottom:0;right:0;color:#fff;font-family:"Open Sans",serif;font-size:20px;text-align:center;line-height:42px}.wrap .saboxplugin input.sab-toggle-yes-no+label:before{background-color:#D3D6DB;content:attr(data-off);transition:transform .5s;backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no+label:after{background-color:#8CE196;content:attr(data-on);transition:transform .5s;transform:rotateY(180deg);backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:before{transform:rotateY(180deg)}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:after{transform:rotateY(0)}.wrap .saboxplugin .sab-title-div{height:50px;clear:both}.wrap .saboxplugin .sab-title-div .sab-title{font-size:18px;line-height:26px;padding-top:16px;padding-right:15px;display:block;float:left}.wrap .saboxplugin .sab-box{background:#fff;border:1px solid #E5E5E5;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:15px;margin-top:40px;position:relative;overflow:hidden}.wrap .saboxplugin .sab-box p{margin:5px 0 5px 70px;color:#777}.wrap .saboxplugin .sab-box-legend,.wrap .saboxplugin .sab-box-version{position:absolute;right:0;top:0;height:100%}.wrap .saboxplugin .sab-box-version{background:none repeat scroll 0 0 #80828F;padding:10px 15px}.wrap .saboxplugin .sab-icon-help,.wrap .saboxplugin .sab-icon-version{color:#FFF;font-size:25px}.wrap .saboxplugin .sab-infos{display:block;margin:0 auto;padding-right:70px;font-weight:700;color:#777}.wrap .saboxplugin .sab-infos span{color:#777;font-weight:400}.wrap .saboxplugin .sab-infos-title{font-weight:700;color:#777}.wrap .saboxplugin .sab-icon-version:before{content:"\f348";display:inline-block;-webkit-font-smoothing:antialiased;font:400 30px/1.5 dashicons;vertical-align:top}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}@media (min-width:900px) and (max-width:1199px){.wrap .saboxplugin .saboxplugin-question{max-width:480px;font-size:20px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:20px}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{left:40px}}@media screen and (max-width:899px){.wrap .saboxplugin .saboxplugin-question{font-size:18px;line-height:2}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:18px}.wrap .saboxplugin .saboxplugin-question{max-width:1000px;text-align:right;min-width:100px}.wrap .saboxplugin .saboxplugin-switch{display:block}.wrap .saboxplugin input.sab-toggle-yes-no+label{width:auto}.wrap .saboxplugin textarea[name=saboxplugin]{width:100%;height:60px;text-align:center}.wrap .saboxplugin p.description{text-align:center}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{width:100%}}@media screen and (max-width:783px){.wrap .saboxplugin #poststuff h2{font-size:26px;padding:0 15px 0 0}.wrap .saboxplugin .saboxplugin-icon:before{font:40px/0.8 dashicons}.wp-core-ui .button{padding:0 14px}.wrap .saboxplugin #poststuff .inside{margin:0}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{left:12px;font:400 20px/1.2 dashicons;padding:8px 10px}.wrap .saboxplugin #poststuff h3{font-size:20px}.wrap .saboxplugin .saboxplugin-question{font-size:18px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{vertical-align:baseline}}@media screen and (max-width:700px){.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .saboxplugin-question{font-size:16px}}@media screen and (max-width:600px){.wrap .saboxplugin .saboxplugin-question{text-align:center;line-height:1.2}.wrap .saboxplugin .saboxplugin-switch{text-align:center}.wrap .saboxplugin .saboxplugin-border{margin:0}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{text-align:center}}
css/sabox-admin-style.min.css CHANGED
@@ -1 +1 @@
1
- .wp-core-ui .button-primary,.wp-core-ui .button-secondary,.wrap .saboxplugin .wp-core-ui .button{font-size:16px;height:42px;border-style:none;line-height:36px;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.wrap .saboxplugin p{color:#777;line-height:1.6}.wrap .saboxplugin p.description{margin:20px 0 5px}.wrap .saboxplugin ::-moz-selection{background:#80828F;color:#fff}.wrap .saboxplugin ::selection{background:#80828F;color:#fff}.wrap .saboxplugin #saboxplugin-hide{border-top:1px dashed #E1E1E1;margin:1.5em 0;display:none}.wrap .saboxplugin .saboxplugin-border{border-bottom:1px dashed #E1E1E1;margin:2em 0}.wrap .saboxplugin #poststuff h2{font-size:26px;padding:9px 15px 20px 0;font-weight:700}.wrap .saboxplugin h3{font-size:24px;padding:9px 15px 20px 0;font-weight:700;color:#444}.wrap .saboxplugin #poststuff h3{font-size:24px;padding:8px 20px}.wrap .saboxplugin #poststuff .inside{margin:26px 0 0}.wrap .saboxplugin .handlediv{color:#80828F}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{right:20px;font:400 30px/1.2 dashicons;padding:8px 0;content:"\f343"}.wrap .saboxplugin .meta-box-sortables .postbox.closed .handlediv:before{content:"\f347"}.wrap .saboxplugin .postbox .inside{padding:0 40px 12px}.wrap .saboxplugin label{cursor:default}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .sabox-inline-slide .sabox-amount5{background-color:transparent;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;font-size:24px;color:#666;vertical-align:text-bottom}.wrap .saboxplugin .sabox-inline-slide .sabox-slider,.wrap .saboxplugin .sabox-inline-slide .sabox-slider2,.wrap .saboxplugin .sabox-inline-slide .sabox-slider3,.wrap .saboxplugin .sabox-inline-slide .sabox-slider4,.wrap .saboxplugin .sabox-inline-slide .sabox-slider5{width:40%;margin:20px 0}.wrap .saboxplugin .sabox-inline-slide .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default{border:1px solid #73C77B;background-color:#8CE196;font-weight:400;color:#555;outline:0;cursor:pointer}.wrap .saboxplugin .sabox-inline-slide .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default:before{content:"\2630";display:inline-block;-webkit-font-smoothing:antialiased;color:#fff;font-weight:700;text-shadow:0 1px #73C77B;line-height:1.8}.wrap .saboxplugin .sabox-inline-slide .ui-state-default a,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:link,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:visited{color:#fff;text-decoration:none}.wrap .saboxplugin .sabox-inline-slide .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-hover{background:#9BEBA3}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top{border-top-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tr{border-top-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-br,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right{border-bottom-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left{border-bottom-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-slider-horizontal{height:1.3em}.wrap .saboxplugin .sabox-inline-slide .ui-slider .ui-slider-handle{width:1.8em;height:1.8em;cursor:pointer;text-align:center}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);border:1px solid #B2BFCA;background:#F1F2F7;color:#222}.wp-color-result,.wrap .saboxplugin .wp-color-result:after{border-radius:0;-webkit-box-shadow:none!important;-moz-box-shadow:none!important;box-shadow:none!important;outline:0}.wrap .saboxplugin .wp-color-result:after{font-size:12px;border-left:1px solid #D3D6DB;line-height:42px;padding:0 7.5px}.wrap .saboxplugin .wp-color-result{border:1px solid #D3D6DB;height:42px;padding-left:40px;outline:0;background-color:#D3D6DB}.wrap .saboxplugin .wp-color-result:hover:after{border-color:#AFAEAE;border-left:1px solid #D3D6DB}.wrap .saboxplugin .wp-picker-container .button{color:#FFF;background-color:#80828F;border:none;height:44px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:0;padding:0 15px 1px}.wrap .saboxplugin .wp-picker-container input.wp-color-picker[type=text]{height:44px}.wrap .saboxplugin .saboxplugin-icon:before{content:"\f336";display:inline-block;-webkit-font-smoothing:antialiased;font:50px/0.6 dashicons;vertical-align:top;color:#FA5148;padding-right:5px}.wrap .saboxplugin textarea[name=saboxplugin]{resize:none;border:none;background-color:#FFF;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;color:#777;padding:0;font-size:13px;line-height:1.4;overflow:hidden;width:99%}.wrap .saboxplugin .saboxplugin-question{display:inline-block;vertical-align:middle;padding:10px 0;font-size:24px;margin-right:40px;color:#666;width:100%;max-width:700px;min-width:247px;line-height:1.6}.wrap .saboxplugin .saboxplugin-switch{display:inline-block;vertical-align:top;padding:10px 0}.wrap .saboxplugin .sab-toggle{position:absolute;margin-left:-9999px;visibility:hidden}.wrap .saboxplugin .sab-toggle+label{display:block;position:relative;cursor:pointer;outline:0;user-select:none}.wrap .saboxplugin input.sab-toggle-yes-no+label{padding:2px;width:120px;height:40px}.wrap .saboxplugin input.sab-toggle-yes-no+label:after,.wrap .saboxplugin input.sab-toggle-yes-no+label:before{display:block;position:absolute;top:0;left:0;bottom:0;right:0;color:#fff;font-family:"Open Sans",serif;font-size:20px;text-align:center;line-height:42px}.wrap .saboxplugin input.sab-toggle-yes-no+label:before{background-color:#D3D6DB;content:attr(data-off);transition:transform .5s;backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no+label:after{background-color:#8CE196;content:attr(data-on);transition:transform .5s;transform:rotateY(180deg);backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:before{transform:rotateY(180deg)}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:after{transform:rotateY(0)}.wrap .saboxplugin .sab-title-div{height:50px;clear:both}.wrap .saboxplugin .sab-title-div .sab-title{font-size:18px;line-height:26px;padding-top:16px;padding-right:15px;display:block;float:left}.wrap .saboxplugin .sab-box{background:#fff;border:1px solid #E5E5E5;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:15px;margin-top:40px;position:relative;overflow:hidden}.wrap .saboxplugin .sab-box p{margin:5px 0 5px 70px;color:#777}.wrap .saboxplugin .sab-box-legend,.wrap .saboxplugin .sab-box-version{position:absolute;left:0;top:0;height:100%}.wrap .saboxplugin .sab-box-version{background:none repeat scroll 0 0 #80828F;padding:10px 15px}.wrap .saboxplugin .sab-icon-help,.wrap .saboxplugin .sab-icon-version{color:#FFF;font-size:25px}.wrap .saboxplugin .sab-infos{display:block;margin:0 auto;padding-left:70px;font-weight:700;color:#777}.wrap .saboxplugin .sab-infos span{color:#777;font-weight:400}.wrap .saboxplugin .sab-infos-title{font-weight:700;color:#777}.wrap .saboxplugin .sab-icon-version:before{content:"\f348";display:inline-block;-webkit-font-smoothing:antialiased;font:400 30px/1.5 dashicons;vertical-align:top}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}@media (min-width:900px) and (max-width:1199px){.wrap .saboxplugin .saboxplugin-question{max-width:480px;font-size:20px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:20px}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{right:40px}}@media screen and (max-width:899px){.wrap .saboxplugin .saboxplugin-question{font-size:18px;line-height:2}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:18px}.wrap .saboxplugin .saboxplugin-question{max-width:1000px;text-align:left;min-width:100px}.wrap .saboxplugin .saboxplugin-switch{display:block}.wrap .saboxplugin input.sab-toggle-yes-no+label{width:auto}.wrap .saboxplugin textarea[name=saboxplugin]{width:100%;height:60px;text-align:center}.wrap .saboxplugin p.description{text-align:center}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{width:100%}}@media screen and (max-width:783px){.wrap .saboxplugin #poststuff h2{font-size:26px;padding:0 15px 0 0}.wrap .saboxplugin .saboxplugin-icon:before{font:40px/0.8 dashicons}.wp-core-ui .button{padding:0 14px}.wrap .saboxplugin #poststuff .inside{margin:0}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{right:12px;font:400 20px/1.2 dashicons;padding:8px 10px}.wrap .saboxplugin #poststuff h3{font-size:20px}.wrap .saboxplugin .saboxplugin-question{font-size:18px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{vertical-align:baseline}}@media screen and (max-width:700px){.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .saboxplugin-question{font-size:16px}}@media screen and (max-width:600px){.wrap .saboxplugin .saboxplugin-question{text-align:center;line-height:1.2}.wrap .saboxplugin .saboxplugin-switch{text-align:center}.wrap .saboxplugin .saboxplugin-border{margin:0}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{text-align:center}}
1
+ .wp-core-ui .button-primary,.wp-core-ui .button-secondary,.wrap .saboxplugin .wp-core-ui .button{font-size:16px;height:42px;border-style:none;line-height:36px;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.wrap .saboxplugin p{color:#777;line-height:1.6}.wrap .saboxplugin p.description{margin:20px 0 5px}.wrap .saboxplugin ::-moz-selection{background:#80828F;color:#fff}.wrap .saboxplugin ::selection{background:#80828F;color:#fff}.wrap .saboxplugin #saboxplugin-hide{border-top:1px dashed #E1E1E1;margin:1.5em 0;display:none}.wrap .saboxplugin .saboxplugin-border{border-bottom:1px dashed #E1E1E1;margin:2em 0}.wrap .saboxplugin #poststuff h2{font-size:26px;padding:9px 15px 20px 0;font-weight:700}.wrap .saboxplugin h3{font-size:24px;padding:9px 15px 20px 0;font-weight:700;color:#444}.wrap .saboxplugin #poststuff h3{font-size:24px;padding:8px 20px}.wrap .saboxplugin #poststuff .inside{margin:26px 0 0}.wrap .saboxplugin .handlediv{color:#80828F}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{right:20px;font:400 30px/1.2 dashicons;padding:8px 0;content:"\f343"}.wrap .saboxplugin .meta-box-sortables .postbox.closed .handlediv:before{content:"\f347"}.wrap .saboxplugin .postbox .inside{padding:0 40px 12px}.wrap .saboxplugin label{cursor:default}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .sabox-inline-slide .sabox-amount5,.wrap .saboxplugin .sabox-inline-slide .sabox-amount6{background-color:transparent;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;font-size:24px;color:#666}.wrap .saboxplugin .sabox-inline-slide .sabox-slider,.wrap .saboxplugin .sabox-inline-slide .sabox-slider2,.wrap .saboxplugin .sabox-inline-slide .sabox-slider3,.wrap .saboxplugin .sabox-inline-slide .sabox-slider4,.wrap .saboxplugin .sabox-inline-slide .sabox-slider5,.wrap .saboxplugin .sabox-inline-slide .sabox-slider6{width:40%;margin:20px 0}.wrap .saboxplugin .sabox-inline-slide .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default{border:1px solid #73C77B;background-color:#8CE196;font-weight:400;color:#555;outline:0;cursor:pointer}.wrap .saboxplugin .sabox-inline-slide .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default:before{content:"\2630";display:inline-block;-webkit-font-smoothing:antialiased;color:#fff;font-weight:700;text-shadow:0 1px #73C77B;line-height:1.8}.wrap .saboxplugin .sabox-inline-slide .ui-state-default a,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:link,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:visited{color:#fff;text-decoration:none}.wrap .saboxplugin .sabox-inline-slide .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-hover{background:#9BEBA3}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top{border-top-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tr{border-top-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-br,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right{border-bottom-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left{border-bottom-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-slider-horizontal{height:1.3em}.wrap .saboxplugin .sabox-inline-slide .ui-slider .ui-slider-handle{width:1.8em;height:1.8em;cursor:pointer;text-align:center}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);border:1px solid #B2BFCA;background:#F1F2F7;color:#222}.wp-color-result,.wrap .saboxplugin .wp-color-result:after{border-radius:0;-webkit-box-shadow:none!important;-moz-box-shadow:none!important;box-shadow:none!important;outline:0}.wrap .saboxplugin .wp-color-result:after{font-size:12px;border-left:1px solid #D3D6DB;line-height:42px;padding:0 7.5px}.wrap .saboxplugin .wp-color-result{border:1px solid #D3D6DB;height:42px;padding-left:40px;outline:0;background-color:#D3D6DB}.wrap .saboxplugin .wp-color-result:hover:after{border-color:#AFAEAE;border-left:1px solid #D3D6DB}.wrap .saboxplugin .wp-picker-container .button{color:#FFF;background-color:#80828F;border:none;height:44px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:0;padding:0 15px 1px}.wrap .saboxplugin .wp-picker-container input.wp-color-picker[type=text]{height:44px}.wrap .saboxplugin .saboxplugin-icon:before{content:"\f336";display:inline-block;-webkit-font-smoothing:antialiased;font:50px/0.6 dashicons;vertical-align:top;color:#FA5148;padding-right:5px}.wrap .saboxplugin textarea[name=saboxplugin]{resize:none;border:none;background-color:#FFF;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;color:#777;padding:0;font-size:13px;line-height:1.4;overflow:hidden;width:99%}.wrap .saboxplugin .saboxplugin-question{display:inline-block;vertical-align:middle;padding:10px 0;font-size:24px;margin-right:40px;color:#666;width:100%;max-width:700px;min-width:247px;line-height:1.6}.wrap .saboxplugin .saboxplugin-switch{display:inline-block;vertical-align:top;padding:10px 0}.wrap .saboxplugin .sab-toggle{position:absolute;margin-left:-9999px;visibility:hidden}.wrap .saboxplugin .sab-toggle+label{display:block;position:relative;cursor:pointer;outline:0;user-select:none}.wrap .saboxplugin input.sab-toggle-yes-no+label{padding:2px;width:120px;height:40px}.wrap .saboxplugin input.sab-toggle-yes-no+label:after,.wrap .saboxplugin input.sab-toggle-yes-no+label:before{display:block;position:absolute;top:0;left:0;bottom:0;right:0;color:#fff;font-family:"Open Sans",serif;font-size:20px;text-align:center;line-height:42px}.wrap .saboxplugin input.sab-toggle-yes-no+label:before{background-color:#D3D6DB;content:attr(data-off);transition:transform .5s;backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no+label:after{background-color:#8CE196;content:attr(data-on);transition:transform .5s;transform:rotateY(180deg);backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:before{transform:rotateY(180deg)}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:after{transform:rotateY(0)}.wrap .saboxplugin .sab-title-div{height:50px;clear:both}.wrap .saboxplugin .sab-title-div .sab-title{font-size:18px;line-height:26px;padding-top:16px;padding-right:15px;display:block;float:left}.wrap .saboxplugin .sab-box{background:#fff;border:1px solid #E5E5E5;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:15px;margin-top:40px;position:relative;overflow:hidden}.wrap .saboxplugin .sab-box p{margin:5px 0 5px 70px;color:#777}.wrap .saboxplugin .sab-box-legend,.wrap .saboxplugin .sab-box-version{position:absolute;left:0;top:0;height:100%}.wrap .saboxplugin .sab-box-version{background:none repeat scroll 0 0 #80828F;padding:10px 15px}.wrap .saboxplugin .sab-icon-help,.wrap .saboxplugin .sab-icon-version{color:#FFF;font-size:25px}.wrap .saboxplugin .sab-infos{display:block;margin:0 auto;padding-left:70px;font-weight:700;color:#777}.wrap .saboxplugin .sab-infos span{color:#777;font-weight:400}.wrap .saboxplugin .sab-infos-title{font-weight:700;color:#777}.wrap .saboxplugin .sab-icon-version:before{content:"\f348";display:inline-block;-webkit-font-smoothing:antialiased;font:400 30px/1.5 dashicons;vertical-align:top}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}@media (min-width:900px) and (max-width:1199px){.wrap .saboxplugin .saboxplugin-question{max-width:480px;font-size:20px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:20px}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{right:40px}}@media screen and (max-width:899px){.wrap .saboxplugin .saboxplugin-question{font-size:18px;line-height:2}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:18px}.wrap .saboxplugin .saboxplugin-question{max-width:1000px;text-align:left;min-width:100px}.wrap .saboxplugin .saboxplugin-switch{display:block}.wrap .saboxplugin input.sab-toggle-yes-no+label{width:auto}.wrap .saboxplugin textarea[name=saboxplugin]{width:100%;height:60px;text-align:center}.wrap .saboxplugin p.description{text-align:center}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{width:100%}}@media screen and (max-width:783px){.wrap .saboxplugin #poststuff h2{font-size:26px;padding:0 15px 0 0}.wrap .saboxplugin .saboxplugin-icon:before{font:40px/0.8 dashicons}.wp-core-ui .button{padding:0 14px}.wrap .saboxplugin #poststuff .inside{margin:0}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{right:12px;font:400 20px/1.2 dashicons;padding:8px 10px}.wrap .saboxplugin #poststuff h3{font-size:20px}.wrap .saboxplugin .saboxplugin-question{font-size:18px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{vertical-align:baseline}}@media screen and (max-width:700px){.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .saboxplugin-question{font-size:16px}}@media screen and (max-width:600px){.wrap .saboxplugin .saboxplugin-question{text-align:center;line-height:1.2}.wrap .saboxplugin .saboxplugin-switch{text-align:center}.wrap .saboxplugin .saboxplugin-border{margin:0}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{text-align:center}}
css/simple-author-box-rtl.min.css CHANGED
@@ -1 +1 @@
1
- .saboxplugin-wrap{direction:rtl;unicode-bidi:embed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border:1px solid;border-color:#EEE;width:100%;clear:both;display:block;overflow:hidden}.saboxplugin-wrap .saboxplugin-gravatar{float:right;padding:20px}.saboxplugin-wrap .saboxplugin-desc{display:block;margin-right:100px;margin-left:20px}.saboxplugin-wrap .saboxplugin-authorname{font-size:18px;line-height:1;margin:20px 0 7px;display:block}.saboxplugin-wrap .saboxplugin-authorname a,.saboxplugin-wrap .saboxplugin-desc a{text-decoration:none}.saboxplugin-wrap .saboxplugin-desc p{margin:5px 0 12px}.saboxplugin-wrap .saboxplugin-socials{position:relative;z-index:50;display:block;background:#FCFCFC;padding:0 15px;-webkit-box-shadow:0 1px 0 0 #eee inset;-moz-box-shadow:0 1px 0 0 #eee inset;box-shadow:0 1px 0 0 #eee inset}.saboxplugin-wrap .saboxplugin-socials a{text-decoration:none;padding:0;margin:0;border:0;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials a:hover{opacity:.8;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before{display:block;width:30px;height:30px;line-height:33px;text-align:center;speak:none}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;font-size:14px;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;background-clip:content-box;-moz-background-clip:content-box;-webkit-background-clip:content-box;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;overflow:hidden}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey:before{display:block;text-align:center;speak:none;line-height:1}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;font-size:20px;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;color:#444}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}.saboxplugin-wrap .saboxplugin-socials.sabox-colored .saboxplugin-icon-color{color:#fff}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-addthis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-addthis:before{content:'\f067'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-behance:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-behance:before{content:'\f1b4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-delicious:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-delicious:before{content:'\f1a5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-deviantart:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-deviantart:before{content:'\f1bd'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-digg:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-digg:before{content:'\f1a6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-dribbble:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-dribbble:before{content:'\f17d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-facebook:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-facebook:before{content:'\f09a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-flickr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-flickr:before{content:'\f16e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-github:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-github:before{content:'\f09b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-google:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-google:before{content:'\f1a0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-googleplus:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-googleplus:before{content:'\f0d5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-html5:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-html5:before{content:'\f13b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-instagram:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-instagram:before{content:'\f16d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-linkedin:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-linkedin:before{content:'\f0e1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-pinterest:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-pinterest:before{content:'\f0d2'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-reddit:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-reddit:before{content:'\f1a1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-rss:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-rss:before{content:'\f09e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-sharethis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-sharethis:before{content:'\f1e0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-skype:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-skype:before{content:'\f17e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-soundcloud:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-soundcloud:before{content:'\f1be'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-spotify:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-spotify:before{content:'\f1bc'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stackoverflow:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stackoverflow:before{content:'\f16c'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-steam:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-steam:before{content:'\f1b6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stumbleUpon:before{content:'\f1a4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-tumblr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-tumblr:before{content:'\f173'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-twitter:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-twitter:before{content:'\f099'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-vimeo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-vimeo:before{content:'\f194'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-windows:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-windows:before{content:'\f17a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-wordpress:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-wordpress:before{content:'\f19a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-yahoo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-yahoo:before{content:'\f19e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-youtube:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-youtube:before{content:'\f167'}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-addthis{background:#FF8662;border:1px solid #D5644B;text-shadow:#d5644b 1px 1px,#d5644b 2px 2px,#d5644b 3px 3px,#d5644b 4px 4px,#d5644b 5px 5px,#d5644b 6px 6px,#d5644b 7px 7px,#d5644b 8px 8px,#d5644b 9px 9px,#d5644b 10px 10px,#d5644b 11px 11px,#d5644b 12px 12px,#d5644b 13px 13px,#d5644b 14px 14px,#d5644b 15px 15px,#d5644b 16px 16px,#d5644b 17px 17px,#d5644b 18px 18px,#d5644b 19px 19px,#d5644b 20px 20px,#d5644b 21px 21px,#d5644b 22px 22px,#d5644b 23px 23px,#d5644b 24px 24px,#d5644b 25px 25px,#d5644b 26px 26px,#d5644b 27px 27px,#d5644b 28px 28px,#d5644b 29px 29px,#d5644b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-behance{background:#0294FF;border:1px solid #0083D4;text-shadow:#0083d4 1px 1px,#0083d4 2px 2px,#0083d4 3px 3px,#0083d4 4px 4px,#0083d4 5px 5px,#0083d4 6px 6px,#0083d4 7px 7px,#0083d4 8px 8px,#0083d4 9px 9px,#0083d4 10px 10px,#0083d4 11px 11px,#0083d4 12px 12px,#0083d4 13px 13px,#0083d4 14px 14px,#0083d4 15px 15px,#0083d4 16px 16px,#0083d4 17px 17px,#0083d4 18px 18px,#0083d4 19px 19px,#0083d4 20px 20px,#0083d4 21px 21px,#0083d4 22px 22px,#0083d4 23px 23px,#0083d4 24px 24px,#0083d4 25px 25px,#0083d4 26px 26px,#0083d4 27px 27px,#0083d4 28px 28px,#0083d4 29px 29px,#0083d4 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-delicious{background:#0294FF;border:1px solid #007ECD;text-shadow:#007ecd 1px 1px,#007ecd 2px 2px,#007ecd 3px 3px,#007ecd 4px 4px,#007ecd 5px 5px,#007ecd 6px 6px,#007ecd 7px 7px,#007ecd 8px 8px,#007ecd 9px 9px,#007ecd 10px 10px,#007ecd 11px 11px,#007ecd 12px 12px,#007ecd 13px 13px,#007ecd 14px 14px,#007ecd 15px 15px,#007ecd 16px 16px,#007ecd 17px 17px,#007ecd 18px 18px,#007ecd 19px 19px,#007ecd 20px 20px,#007ecd 21px 21px,#007ecd 22px 22px,#007ecd 23px 23px,#007ecd 24px 24px,#007ecd 25px 25px,#007ecd 26px 26px,#007ecd 27px 27px,#007ecd 28px 28px,#007ecd 29px 29px,#007ecd 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-deviantart{background:#DCE22B;border:1px solid #B2B423;text-shadow:#b2b423 1px 1px,#b2b423 2px 2px,#b2b423 3px 3px,#b2b423 4px 4px,#b2b423 5px 5px,#b2b423 6px 6px,#b2b423 7px 7px,#b2b423 8px 8px,#b2b423 9px 9px,#b2b423 10px 10px,#b2b423 11px 11px,#b2b423 12px 12px,#b2b423 13px 13px,#b2b423 14px 14px,#b2b423 15px 15px,#b2b423 16px 16px,#b2b423 17px 17px,#b2b423 18px 18px,#b2b423 19px 19px,#b2b423 20px 20px,#b2b423 21px 21px,#b2b423 22px 22px,#b2b423 23px 23px,#b2b423 24px 24px,#b2b423 25px 25px,#b2b423 26px 26px,#b2b423 27px 27px,#b2b423 28px 28px,#b2b423 29px 29px,#b2b423 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-digg{background:#1B8EC4;border:1px solid #126C92;text-shadow:#126c92 1px 1px,#126c92 2px 2px,#126c92 3px 3px,#126c92 4px 4px,#126c92 5px 5px,#126c92 6px 6px,#126c92 7px 7px,#126c92 8px 8px,#126c92 9px 9px,#126c92 10px 10px,#126c92 11px 11px,#126c92 12px 12px,#126c92 13px 13px,#126c92 14px 14px,#126c92 15px 15px,#126c92 16px 16px,#126c92 17px 17px,#126c92 18px 18px,#126c92 19px 19px,#126c92 20px 20px,#126c92 21px 21px,#126c92 22px 22px,#126c92 23px 23px,#126c92 24px 24px,#126c92 25px 25px,#126c92 26px 26px,#126c92 27px 27px,#126c92 28px 28px,#126c92 29px 29px,#126c92 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-dribbble{background:#EF76A4;border:1px solid #C05C84;text-shadow:#c05c84 1px 1px,#c05c84 2px 2px,#c05c84 3px 3px,#c05c84 4px 4px,#c05c84 5px 5px,#c05c84 6px 6px,#c05c84 7px 7px,#c05c84 8px 8px,#c05c84 9px 9px,#c05c84 10px 10px,#c05c84 11px 11px,#c05c84 12px 12px,#c05c84 13px 13px,#c05c84 14px 14px,#c05c84 15px 15px,#c05c84 16px 16px,#c05c84 17px 17px,#c05c84 18px 18px,#c05c84 19px 19px,#c05c84 20px 20px,#c05c84 21px 21px,#c05c84 22px 22px,#c05c84 23px 23px,#c05c84 24px 24px,#c05c84 25px 25px,#c05c84 26px 26px,#c05c84 27px 27px,#c05c84 28px 28px,#c05c84 29px 29px,#c05c84 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-facebook{background:#3B5998;border:1px solid #1E3D7A;text-shadow:#1e3d7a 1px 1px,#1e3d7a 2px 2px,#1e3d7a 3px 3px,#1e3d7a 4px 4px,#1e3d7a 5px 5px,#1e3d7a 6px 6px,#1e3d7a 7px 7px,#1e3d7a 8px 8px,#1e3d7a 9px 9px,#1e3d7a 10px 10px,#1e3d7a 11px 11px,#1e3d7a 12px 12px,#1e3d7a 13px 13px,#1e3d7a 14px 14px,#1e3d7a 15px 15px,#1e3d7a 16px 16px,#1e3d7a 17px 17px,#1e3d7a 18px 18px,#1e3d7a 19px 19px,#1e3d7a 20px 20px,#1e3d7a 21px 21px,#1e3d7a 22px 22px,#1e3d7a 23px 23px,#1e3d7a 24px 24px,#1e3d7a 25px 25px,#1e3d7a 26px 26px,#1e3d7a 27px 27px,#1e3d7a 28px 28px,#1e3d7a 29px 29px,#1e3d7a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-flickr{background:#FF0586;border:1px solid #D0006F;text-shadow:#d0006f 1px 1px,#d0006f 2px 2px,#d0006f 3px 3px,#d0006f 4px 4px,#d0006f 5px 5px,#d0006f 6px 6px,#d0006f 7px 7px,#d0006f 8px 8px,#d0006f 9px 9px,#d0006f 10px 10px,#d0006f 11px 11px,#d0006f 12px 12px,#d0006f 13px 13px,#d0006f 14px 14px,#d0006f 15px 15px,#d0006f 16px 16px,#d0006f 17px 17px,#d0006f 18px 18px,#d0006f 19px 19px,#d0006f 20px 20px,#d0006f 21px 21px,#d0006f 22px 22px,#d0006f 23px 23px,#d0006f 24px 24px,#d0006f 25px 25px,#d0006f 26px 26px,#d0006f 27px 27px,#d0006f 28px 28px,#d0006f 29px 29px,#d0006f 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-github{background:#829AA8;border:1px solid #4F7385;text-shadow:#4f7385 1px 1px,#4f7385 2px 2px,#4f7385 3px 3px,#4f7385 4px 4px,#4f7385 5px 5px,#4f7385 6px 6px,#4f7385 7px 7px,#4f7385 8px 8px,#4f7385 9px 9px,#4f7385 10px 10px,#4f7385 11px 11px,#4f7385 12px 12px,#4f7385 13px 13px,#4f7385 14px 14px,#4f7385 15px 15px,#4f7385 16px 16px,#4f7385 17px 17px,#4f7385 18px 18px,#4f7385 19px 19px,#4f7385 20px 20px,#4f7385 21px 21px,#4f7385 22px 22px,#4f7385 23px 23px,#4f7385 24px 24px,#4f7385 25px 25px,#4f7385 26px 26px,#4f7385 27px 27px,#4f7385 28px 28px,#4f7385 29px 29px,#4f7385 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-google{background:#E8262F;border:1px solid #C20C18;text-shadow:#c20c18 1px 1px,#c20c18 2px 2px,#c20c18 3px 3px,#c20c18 4px 4px,#c20c18 5px 5px,#c20c18 6px 6px,#c20c18 7px 7px,#c20c18 8px 8px,#c20c18 9px 9px,#c20c18 10px 10px,#c20c18 11px 11px,#c20c18 12px 12px,#c20c18 13px 13px,#c20c18 14px 14px,#c20c18 15px 15px,#c20c18 16px 16px,#c20c18 17px 17px,#c20c18 18px 18px,#c20c18 19px 19px,#c20c18 20px 20px,#c20c18 21px 21px,#c20c18 22px 22px,#c20c18 23px 23px,#c20c18 24px 24px,#c20c18 25px 25px,#c20c18 26px 26px,#c20c18 27px 27px,#c20c18 28px 28px,#c20c18 29px 29px,#c20c18 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-googleplus{background:#DD4B39;border:1px solid #B32414;text-shadow:#b32414 1px 1px,#b32414 2px 2px,#b32414 3px 3px,#b32414 4px 4px,#b32414 5px 5px,#b32414 6px 6px,#b32414 7px 7px,#b32414 8px 8px,#b32414 9px 9px,#b32414 10px 10px,#b32414 11px 11px,#b32414 12px 12px,#b32414 13px 13px,#b32414 14px 14px,#b32414 15px 15px,#b32414 16px 16px,#b32414 17px 17px,#b32414 18px 18px,#b32414 19px 19px,#b32414 20px 20px,#b32414 21px 21px,#b32414 22px 22px,#b32414 23px 23px,#b32414 24px 24px,#b32414 25px 25px,#b32414 26px 26px,#b32414 27px 27px,#b32414 28px 28px,#b32414 29px 29px,#b32414 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-html5{background:#F16528;border:1px solid #C23D08;text-shadow:#c23d08 1px 1px,#c23d08 2px 2px,#c23d08 3px 3px,#c23d08 4px 4px,#c23d08 5px 5px,#c23d08 6px 6px,#c23d08 7px 7px,#c23d08 8px 8px,#c23d08 9px 9px,#c23d08 10px 10px,#c23d08 11px 11px,#c23d08 12px 12px,#c23d08 13px 13px,#c23d08 14px 14px,#c23d08 15px 15px,#c23d08 16px 16px,#c23d08 17px 17px,#c23d08 18px 18px,#c23d08 19px 19px,#c23d08 20px 20px,#c23d08 21px 21px,#c23d08 22px 22px,#c23d08 23px 23px,#c23d08 24px 24px,#c23d08 25px 25px,#c23d08 26px 26px,#c23d08 27px 27px,#c23d08 28px 28px,#c23d08 29px 29px,#c23d08 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-instagram{background:#417096;border:1px solid #244F70;text-shadow:#244f70 1px 1px,#244f70 2px 2px,#244f70 3px 3px,#244f70 4px 4px,#244f70 5px 5px,#244f70 6px 6px,#244f70 7px 7px,#244f70 8px 8px,#244f70 9px 9px,#244f70 10px 10px,#244f70 11px 11px,#244f70 12px 12px,#244f70 13px 13px,#244f70 14px 14px,#244f70 15px 15px,#244f70 16px 16px,#244f70 17px 17px,#244f70 18px 18px,#244f70 19px 19px,#244f70 20px 20px,#244f70 21px 21px,#244f70 22px 22px,#244f70 23px 23px,#244f70 24px 24px,#244f70 25px 25px,#244f70 26px 26px,#244f70 27px 27px,#244f70 28px 28px,#244f70 29px 29px,#244f70 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-linkedin{background:#1583BB;border:1px solid #036390;text-shadow:#036390 1px 1px,#036390 2px 2px,#036390 3px 3px,#036390 4px 4px,#036390 5px 5px,#036390 6px 6px,#036390 7px 7px,#036390 8px 8px,#036390 9px 9px,#036390 10px 10px,#036390 11px 11px,#036390 12px 12px,#036390 13px 13px,#036390 14px 14px,#036390 15px 15px,#036390 16px 16px,#036390 17px 17px,#036390 18px 18px,#036390 19px 19px,#036390 20px 20px,#036390 21px 21px,#036390 22px 22px,#036390 23px 23px,#036390 24px 24px,#036390 25px 25px,#036390 26px 26px,#036390 27px 27px,#036390 28px 28px,#036390 29px 29px,#036390 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-pinterest{background:#CB2027;border:1px solid #9D060E;text-shadow:#9d063e 1px 1px,#9d063e 2px 2px,#9d063e 3px 3px,#9d063e 4px 4px,#9d063e 5px 5px,#9d063e 6px 6px,#9d063e 7px 7px,#9d063e 8px 8px,#9d063e 9px 9px,#9d063e 10px 10px,#9d063e 11px 11px,#9d063e 12px 12px,#9d063e 13px 13px,#9d063e 14px 14px,#9d063e 15px 15px,#9d063e 16px 16px,#9d063e 17px 17px,#9d063e 18px 18px,#9d063e 19px 19px,#9d063e 20px 20px,#9d063e 21px 21px,#9d063e 22px 22px,#9d063e 23px 23px,#9d063e 24px 24px,#9d063e 25px 25px,#9d063e 26px 26px,#9d063e 27px 27px,#9d063e 28px 28px,#9d063e 29px 29px,#9d063e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-reddit{background:#FF4107;border:1px solid #C62D02;text-shadow:#c62d02 1px 1px,#c62d02 2px 2px,#c62d02 3px 3px,#c62d02 4px 4px,#c62d02 5px 5px,#c62d02 6px 6px,#c62d02 7px 7px,#c62d02 8px 8px,#c62d02 9px 9px,#c62d02 10px 10px,#c62d02 11px 11px,#c62d02 12px 12px,#c62d02 13px 13px,#c62d02 14px 14px,#c62d02 15px 15px,#c62d02 16px 16px,#c62d02 17px 17px,#c62d02 18px 18px,#c62d02 19px 19px,#c62d02 20px 20px,#c62d02 21px 21px,#c62d02 22px 22px,#c62d02 23px 23px,#c62d02 24px 24px,#c62d02 25px 25px,#c62d02 26px 26px,#c62d02 27px 27px,#c62d02 28px 28px,#c62d02 29px 29px,#c62d02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-rss{background:#FF7A21;border:1px solid #C24B02;text-shadow:#c24b02 1px 1px,#c24b02 2px 2px,#c24b02 3px 3px,#c24b02 4px 4px,#c24b02 5px 5px,#c24b02 6px 6px,#c24b02 7px 7px,#c24b02 8px 8px,#c24b02 9px 9px,#c24b02 10px 10px,#c24b02 11px 11px,#c24b02 12px 12px,#c24b02 13px 13px,#c24b02 14px 14px,#c24b02 15px 15px,#c24b02 16px 16px,#c24b02 17px 17px,#c24b02 18px 18px,#c24b02 19px 19px,#c24b02 20px 20px,#c24b02 21px 21px,#c24b02 22px 22px,#c24b02 23px 23px,#c24b02 24px 24px,#c24b02 25px 25px,#c24b02 26px 26px,#c24b02 27px 27px,#c24b02 28px 28px,#c24b02 29px 29px,#c24b02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-sharethis{background:#1D9565;border:1px solid #076840;text-shadow:#076840 1px 1px,#076840 2px 2px,#076840 3px 3px,#076840 4px 4px,#076840 5px 5px,#076840 6px 6px,#076840 7px 7px,#076840 8px 8px,#076840 9px 9px,#076840 10px 10px,#076840 11px 11px,#076840 12px 12px,#076840 13px 13px,#076840 14px 14px,#076840 15px 15px,#076840 16px 16px,#076840 17px 17px,#076840 18px 18px,#076840 19px 19px,#076840 20px 20px,#076840 21px 21px,#076840 22px 22px,#076840 23px 23px,#076840 24px 24px,#076840 25px 25px,#076840 26px 26px,#076840 27px 27px,#076840 28px 28px,#076840 29px 29px,#076840 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-skype{background:#3FC1F4;border:1px solid #1B95C2;text-shadow:#1b95c2 1px 1px,#1b95c2 2px 2px,#1b95c2 3px 3px,#1b95c2 4px 4px,#1b95c2 5px 5px,#1b95c2 6px 6px,#1b95c2 7px 7px,#1b95c2 8px 8px,#1b95c2 9px 9px,#1b95c2 10px 10px,#1b95c2 11px 11px,#1b95c2 12px 12px,#1b95c2 13px 13px,#1b95c2 14px 14px,#1b95c2 15px 15px,#1b95c2 16px 16px,#1b95c2 17px 17px,#1b95c2 18px 18px,#1b95c2 19px 19px,#1b95c2 20px 20px,#1b95c2 21px 21px,#1b95c2 22px 22px,#1b95c2 23px 23px,#1b95c2 24px 24px,#1b95c2 25px 25px,#1b95c2 26px 26px,#1b95c2 27px 27px,#1b95c2 28px 28px,#1b95c2 29px 29px,#1b95c2 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-soundcloud{background:#FF5419;border:1px solid #C73002;text-shadow:#c73002 1px 1px,#c73002 2px 2px,#c73002 3px 3px,#c73002 4px 4px,#c73002 5px 5px,#c73002 6px 6px,#c73002 7px 7px,#c73002 8px 8px,#c73002 9px 9px,#c73002 10px 10px,#c73002 11px 11px,#c73002 12px 12px,#c73002 13px 13px,#c73002 14px 14px,#c73002 15px 15px,#c73002 16px 16px,#c73002 17px 17px,#c73002 18px 18px,#c73002 19px 19px,#c73002 20px 20px,#c73002 21px 21px,#c73002 22px 22px,#c73002 23px 23px,#c73002 24px 24px,#c73002 25px 25px,#c73002 26px 26px,#c73002 27px 27px,#c73002 28px 28px,#c73002 29px 29px,#c73002 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-spotify{background:#AECF02;border:1px solid #829900;text-shadow:#829900 1px 1px,#829900 2px 2px,#829900 3px 3px,#829900 4px 4px,#829900 5px 5px,#829900 6px 6px,#829900 7px 7px,#829900 8px 8px,#829900 9px 9px,#829900 10px 10px,#829900 11px 11px,#829900 12px 12px,#829900 13px 13px,#829900 14px 14px,#829900 15px 15px,#829900 16px 16px,#829900 17px 17px,#829900 18px 18px,#829900 19px 19px,#829900 20px 20px,#829900 21px 21px,#829900 22px 22px,#829900 23px 23px,#829900 24px 24px,#829900 25px 25px,#829900 26px 26px,#829900 27px 27px,#829900 28px 28px,#829900 29px 29px,#829900 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stackoverflow{background:#FF661E;border:1px solid #CE3A00;text-shadow:#ce3a00 1px 1px,#ce3a00 2px 2px,#ce3a00 3px 3px,#ce3a00 4px 4px,#ce3a00 5px 5px,#ce3a00 6px 6px,#ce3a00 7px 7px,#ce3a00 8px 8px,#ce3a00 9px 9px,#ce3a00 10px 10px,#ce3a00 11px 11px,#ce3a00 12px 12px,#ce3a00 13px 13px,#ce3a00 14px 14px,#ce3a00 15px 15px,#ce3a00 16px 16px,#ce3a00 17px 17px,#ce3a00 18px 18px,#ce3a00 19px 19px,#ce3a00 20px 20px,#ce3a00 21px 21px,#ce3a00 22px 22px,#ce3a00 23px 23px,#ce3a00 24px 24px,#ce3a00 25px 25px,#ce3a00 26px 26px,#ce3a00 27px 27px,#ce3a00 28px 28px,#ce3a00 29px 29px,#ce3a00 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-steam{background:#484848;border:1px solid #302B2B;text-shadow:#302b2b 1px 1px,#302b2b 2px 2px,#302b2b 3px 3px,#302b2b 4px 4px,#302b2b 5px 5px,#302b2b 6px 6px,#302b2b 7px 7px,#302b2b 8px 8px,#302b2b 9px 9px,#302b2b 10px 10px,#302b2b 11px 11px,#302b2b 12px 12px,#302b2b 13px 13px,#302b2b 14px 14px,#302b2b 15px 15px,#302b2b 16px 16px,#302b2b 17px 17px,#302b2b 18px 18px,#302b2b 19px 19px,#302b2b 20px 20px,#302b2b 21px 21px,#302b2b 22px 22px,#302b2b 23px 23px,#302b2b 24px 24px,#302b2b 25px 25px,#302b2b 26px 26px,#302b2b 27px 27px,#302b2b 28px 28px,#302b2b 29px 29px,#302b2b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon{background:#EB4923;border:1px solid #BE2507;text-shadow:#be2507 1px 1px,#be2507 2px 2px,#be2507 3px 3px,#be2507 4px 4px,#be2507 5px 5px,#be2507 6px 6px,#be2507 7px 7px,#be2507 8px 8px,#be2507 9px 9px,#be2507 10px 10px,#be2507 11px 11px,#be2507 12px 12px,#be2507 13px 13px,#be2507 14px 14px,#be2507 15px 15px,#be2507 16px 16px,#be2507 17px 17px,#be2507 18px 18px,#be2507 19px 19px,#be2507 20px 20px,#be2507 21px 21px,#be2507 22px 22px,#be2507 23px 23px,#be2507 24px 24px,#be2507 25px 25px,#be2507 26px 26px,#be2507 27px 27px,#be2507 28px 28px,#be2507 29px 29px,#be2507 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-tumblr{background:#3C576C;border:1px solid #1E3546;text-shadow:#1e3546 1px 1px,#1e3546 2px 2px,#1e3546 3px 3px,#1e3546 4px 4px,#1e3546 5px 5px,#1e3546 6px 6px,#1e3546 7px 7px,#1e3546 8px 8px,#1e3546 9px 9px,#1e3546 10px 10px,#1e3546 11px 11px,#1e3546 12px 12px,#1e3546 13px 13px,#1e3546 14px 14px,#1e3546 15px 15px,#1e3546 16px 16px,#1e3546 17px 17px,#1e3546 18px 18px,#1e3546 19px 19px,#1e3546 20px 20px,#1e3546 21px 21px,#1e3546 22px 22px,#1e3546 23px 23px,#1e3546 24px 24px,#1e3546 25px 25px,#1e3546 26px 26px,#1e3546 27px 27px,#1e3546 28px 28px,#1e3546 29px 29px,#1e3546 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-twitter{background:#00ACED;border:1px solid #008AB8;text-shadow:#008ab8 1px 1px,#008ab8 2px 2px,#008ab8 3px 3px,#008ab8 4px 4px,#008ab8 5px 5px,#008ab8 6px 6px,#008ab8 7px 7px,#008ab8 8px 8px,#008ab8 9px 9px,#008ab8 10px 10px,#008ab8 11px 11px,#008ab8 12px 12px,#008ab8 13px 13px,#008ab8 14px 14px,#008ab8 15px 15px,#008ab8 16px 16px,#008ab8 17px 17px,#008ab8 18px 18px,#008ab8 19px 19px,#008ab8 20px 20px,#008ab8 21px 21px,#008ab8 22px 22px,#008ab8 23px 23px,#008ab8 24px 24px,#008ab8 25px 25px,#008ab8 26px 26px,#008ab8 27px 27px,#008ab8 28px 28px,#008ab8 29px 29px,#008ab8 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-vimeo{background:#006599;border:1px solid #00496A;text-shadow:#00496a 1px 1px,#00496a 2px 2px,#00496a 3px 3px,#00496a 4px 4px,#00496a 5px 5px,#00496a 6px 6px,#00496a 7px 7px,#00496a 8px 8px,#00496a 9px 9px,#00496a 10px 10px,#00496a 11px 11px,#00496a 12px 12px,#00496a 13px 13px,#00496a 14px 14px,#00496a 15px 15px,#00496a 16px 16px,#00496a 17px 17px,#00496a 18px 18px,#00496a 19px 19px,#00496a 20px 20px,#00496a 21px 21px,#00496a 22px 22px,#00496a 23px 23px,#00496a 24px 24px,#00496a 25px 25px,#00496a 26px 26px,#00496a 27px 27px,#00496a 28px 28px,#00496a 29px 29px,#00496a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-windows{background:#00ADEF;border:1px solid #038BBC;text-shadow:#038bbc 1px 1px,#038bbc 2px 2px,#038bbc 3px 3px,#038bbc 4px 4px,#038bbc 5px 5px,#038bbc 6px 6px,#038bbc 7px 7px,#038bbc 8px 8px,#038bbc 9px 9px,#038bbc 10px 10px,#038bbc 11px 11px,#038bbc 12px 12px,#038bbc 13px 13px,#038bbc 14px 14px,#038bbc 15px 15px,#038bbc 16px 16px,#038bbc 17px 17px,#038bbc 18px 18px,#038bbc 19px 19px,#038bbc 20px 20px,#038bbc 21px 21px,#038bbc 22px 22px,#038bbc 23px 23px,#038bbc 24px 24px,#038bbc 25px 25px,#038bbc 26px 26px,#038bbc 27px 27px,#038bbc 28px 28px,#038bbc 29px 29px,#038bbc 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-wordpress{background:#21759A;border:1px solid #0F607E;text-shadow:#0f607e 1px 1px,#0f607e 2px 2px,#0f607e 3px 3px,#0f607e 4px 4px,#0f607e 5px 5px,#0f607e 6px 6px,#0f607e 7px 7px,#0f607e 8px 8px,#0f607e 9px 9px,#0f607e 10px 10px,#0f607e 11px 11px,#0f607e 12px 12px,#0f607e 13px 13px,#0f607e 14px 14px,#0f607e 15px 15px,#0f607e 16px 16px,#0f607e 17px 17px,#0f607e 18px 18px,#0f607e 19px 19px,#0f607e 20px 20px,#0f607e 21px 21px,#0f607e 22px 22px,#0f607e 23px 23px,#0f607e 24px 24px,#0f607e 25px 25px,#0f607e 26px 26px,#0f607e 27px 27px,#0f607e 28px 28px,#0f607e 29px 29px,#0f607e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-yahoo{background:#4101AF;border:1px solid #290074;text-shadow:#290074 1px 1px,#290074 2px 2px,#290074 3px 3px,#290074 4px 4px,#290074 5px 5px,#290074 6px 6px,#290074 7px 7px,#290074 8px 8px,#290074 9px 9px,#290074 10px 10px,#290074 11px 11px,#290074 12px 12px,#290074 13px 13px,#290074 14px 14px,#290074 15px 15px,#290074 16px 16px,#290074 17px 17px,#290074 18px 18px,#290074 19px 19px,#290074 20px 20px,#290074 21px 21px,#290074 22px 22px,#290074 23px 23px,#290074 24px 24px,#290074 25px 25px,#290074 26px 26px,#290074 27px 27px,#290074 28px 28px,#290074 29px 29px,#290074 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-youtube{background:#E52C27;border:1px solid #BE0707;text-shadow:#be0707 1px 1px,#be0707 2px 2px,#be0707 3px 3px,#be0707 4px 4px,#be0707 5px 5px,#be0707 6px 6px,#be0707 7px 7px,#be0707 8px 8px,#be0707 9px 9px,#be0707 10px 10px,#be0707 11px 11px,#be0707 12px 12px,#be0707 13px 13px,#be0707 14px 14px,#be0707 15px 15px,#be0707 16px 16px,#be0707 17px 17px,#be0707 18px 18px,#be0707 19px 19px,#be0707 20px 20px,#be0707 21px 21px,#be0707 22px 22px,#be0707 23px 23px,#be0707 24px 24px,#be0707 25px 25px,#be0707 26px 26px,#be0707 27px 27px,#be0707 28px 28px,#be0707 29px 29px,#be0707 30px 30px}@media screen and (max-width:480px){.saboxplugin-wrap{text-align:center}.saboxplugin-wrap .saboxplugin-gravatar{float:none;padding:20px 0;text-align:center;margin:0 auto;display:block}.saboxplugin-wrap .saboxplugin-gravatar img{float:none;display:inline-block;display:-moz-inline-stack;vertical-align:middle;zoom:1}.saboxplugin-wrap .saboxplugin-desc{margin:0 10px 20px;text-align:center}.saboxplugin-wrap .saboxplugin-authorname{text-align:center;margin:10px 0 20px}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color,.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey{margin:15px 5px}}
1
+ .saboxplugin-wrap{direction:rtl;unicode-bidi:embed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border:1px solid;border-color:#EEE;width:100%;clear:both;display:block;overflow:hidden}.saboxplugin-wrap .saboxplugin-gravatar{float:right;padding:20px}.saboxplugin-wrap .saboxplugin-authorname{font-size:18px;line-height:1;margin:20px 0 0 20px;display:block}.saboxplugin-authorname a{text-decoration:none}.saboxplugin-wrap .saboxplugin-desc{display:block;margin:5px 20px}.saboxplugin-wrap .saboxplugin-desc a{text-decoration:none}.saboxplugin-wrap .saboxplugin-desc p{margin:5px 0 12px}.saboxplugin-wrap .saboxplugin-web{margin:0 20px 15px;text-align:right}.saboxplugin-wrap .sab-web-position{text-align:left}.saboxplugin-wrap .saboxplugin-web a{color:#ccc;text-decoration:none}.saboxplugin-wrap .saboxplugin-socials{position:relative;z-index:50;display:block;background:#FCFCFC;padding:0 15px;-webkit-box-shadow:0 1px 0 0 #eee inset;-moz-box-shadow:0 1px 0 0 #eee inset;box-shadow:0 1px 0 0 #eee inset}.saboxplugin-wrap .saboxplugin-socials a{text-decoration:none;padding:0;margin:0;border:0;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials a:hover{opacity:.8;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before{display:block;width:30px;height:30px;line-height:33px;text-align:center;speak:none}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;font-size:14px;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;background-clip:content-box;-moz-background-clip:content-box;-webkit-background-clip:content-box;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;overflow:hidden}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey:before{display:block;text-align:center;speak:none;line-height:1}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;font-size:20px;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;color:#444}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}.saboxplugin-wrap .saboxplugin-socials.sabox-colored .saboxplugin-icon-color{color:#fff}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-addthis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-addthis:before{content:'\f067'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-behance:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-behance:before{content:'\f1b4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-delicious:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-delicious:before{content:'\f1a5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-deviantart:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-deviantart:before{content:'\f1bd'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-digg:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-digg:before{content:'\f1a6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-dribbble:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-dribbble:before{content:'\f17d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-facebook:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-facebook:before{content:'\f09a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-flickr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-flickr:before{content:'\f16e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-github:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-github:before{content:'\f09b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-google:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-google:before{content:'\f1a0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-googleplus:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-googleplus:before{content:'\f0d5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-html5:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-html5:before{content:'\f13b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-instagram:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-instagram:before{content:'\f16d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-linkedin:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-linkedin:before{content:'\f0e1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-pinterest:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-pinterest:before{content:'\f0d2'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-reddit:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-reddit:before{content:'\f1a1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-rss:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-rss:before{content:'\f09e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-sharethis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-sharethis:before{content:'\f1e0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-skype:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-skype:before{content:'\f17e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-soundcloud:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-soundcloud:before{content:'\f1be'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-spotify:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-spotify:before{content:'\f1bc'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stackoverflow:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stackoverflow:before{content:'\f16c'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-steam:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-steam:before{content:'\f1b6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stumbleUpon:before{content:'\f1a4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-tumblr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-tumblr:before{content:'\f173'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-twitter:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-twitter:before{content:'\f099'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-vimeo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-vimeo:before{content:'\f194'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-windows:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-windows:before{content:'\f17a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-wordpress:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-wordpress:before{content:'\f19a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-yahoo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-yahoo:before{content:'\f19e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-youtube:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-youtube:before{content:'\f167'}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-addthis{background:#FF8662;border:1px solid #D5644B;text-shadow:#d5644b 1px 1px,#d5644b 2px 2px,#d5644b 3px 3px,#d5644b 4px 4px,#d5644b 5px 5px,#d5644b 6px 6px,#d5644b 7px 7px,#d5644b 8px 8px,#d5644b 9px 9px,#d5644b 10px 10px,#d5644b 11px 11px,#d5644b 12px 12px,#d5644b 13px 13px,#d5644b 14px 14px,#d5644b 15px 15px,#d5644b 16px 16px,#d5644b 17px 17px,#d5644b 18px 18px,#d5644b 19px 19px,#d5644b 20px 20px,#d5644b 21px 21px,#d5644b 22px 22px,#d5644b 23px 23px,#d5644b 24px 24px,#d5644b 25px 25px,#d5644b 26px 26px,#d5644b 27px 27px,#d5644b 28px 28px,#d5644b 29px 29px,#d5644b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-behance{background:#0294FF;border:1px solid #0083D4;text-shadow:#0083d4 1px 1px,#0083d4 2px 2px,#0083d4 3px 3px,#0083d4 4px 4px,#0083d4 5px 5px,#0083d4 6px 6px,#0083d4 7px 7px,#0083d4 8px 8px,#0083d4 9px 9px,#0083d4 10px 10px,#0083d4 11px 11px,#0083d4 12px 12px,#0083d4 13px 13px,#0083d4 14px 14px,#0083d4 15px 15px,#0083d4 16px 16px,#0083d4 17px 17px,#0083d4 18px 18px,#0083d4 19px 19px,#0083d4 20px 20px,#0083d4 21px 21px,#0083d4 22px 22px,#0083d4 23px 23px,#0083d4 24px 24px,#0083d4 25px 25px,#0083d4 26px 26px,#0083d4 27px 27px,#0083d4 28px 28px,#0083d4 29px 29px,#0083d4 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-delicious{background:#0294FF;border:1px solid #007ECD;text-shadow:#007ecd 1px 1px,#007ecd 2px 2px,#007ecd 3px 3px,#007ecd 4px 4px,#007ecd 5px 5px,#007ecd 6px 6px,#007ecd 7px 7px,#007ecd 8px 8px,#007ecd 9px 9px,#007ecd 10px 10px,#007ecd 11px 11px,#007ecd 12px 12px,#007ecd 13px 13px,#007ecd 14px 14px,#007ecd 15px 15px,#007ecd 16px 16px,#007ecd 17px 17px,#007ecd 18px 18px,#007ecd 19px 19px,#007ecd 20px 20px,#007ecd 21px 21px,#007ecd 22px 22px,#007ecd 23px 23px,#007ecd 24px 24px,#007ecd 25px 25px,#007ecd 26px 26px,#007ecd 27px 27px,#007ecd 28px 28px,#007ecd 29px 29px,#007ecd 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-deviantart{background:#DCE22B;border:1px solid #B2B423;text-shadow:#b2b423 1px 1px,#b2b423 2px 2px,#b2b423 3px 3px,#b2b423 4px 4px,#b2b423 5px 5px,#b2b423 6px 6px,#b2b423 7px 7px,#b2b423 8px 8px,#b2b423 9px 9px,#b2b423 10px 10px,#b2b423 11px 11px,#b2b423 12px 12px,#b2b423 13px 13px,#b2b423 14px 14px,#b2b423 15px 15px,#b2b423 16px 16px,#b2b423 17px 17px,#b2b423 18px 18px,#b2b423 19px 19px,#b2b423 20px 20px,#b2b423 21px 21px,#b2b423 22px 22px,#b2b423 23px 23px,#b2b423 24px 24px,#b2b423 25px 25px,#b2b423 26px 26px,#b2b423 27px 27px,#b2b423 28px 28px,#b2b423 29px 29px,#b2b423 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-digg{background:#1B8EC4;border:1px solid #126C92;text-shadow:#126c92 1px 1px,#126c92 2px 2px,#126c92 3px 3px,#126c92 4px 4px,#126c92 5px 5px,#126c92 6px 6px,#126c92 7px 7px,#126c92 8px 8px,#126c92 9px 9px,#126c92 10px 10px,#126c92 11px 11px,#126c92 12px 12px,#126c92 13px 13px,#126c92 14px 14px,#126c92 15px 15px,#126c92 16px 16px,#126c92 17px 17px,#126c92 18px 18px,#126c92 19px 19px,#126c92 20px 20px,#126c92 21px 21px,#126c92 22px 22px,#126c92 23px 23px,#126c92 24px 24px,#126c92 25px 25px,#126c92 26px 26px,#126c92 27px 27px,#126c92 28px 28px,#126c92 29px 29px,#126c92 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-dribbble{background:#EF76A4;border:1px solid #C05C84;text-shadow:#c05c84 1px 1px,#c05c84 2px 2px,#c05c84 3px 3px,#c05c84 4px 4px,#c05c84 5px 5px,#c05c84 6px 6px,#c05c84 7px 7px,#c05c84 8px 8px,#c05c84 9px 9px,#c05c84 10px 10px,#c05c84 11px 11px,#c05c84 12px 12px,#c05c84 13px 13px,#c05c84 14px 14px,#c05c84 15px 15px,#c05c84 16px 16px,#c05c84 17px 17px,#c05c84 18px 18px,#c05c84 19px 19px,#c05c84 20px 20px,#c05c84 21px 21px,#c05c84 22px 22px,#c05c84 23px 23px,#c05c84 24px 24px,#c05c84 25px 25px,#c05c84 26px 26px,#c05c84 27px 27px,#c05c84 28px 28px,#c05c84 29px 29px,#c05c84 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-facebook{background:#3B5998;border:1px solid #1E3D7A;text-shadow:#1e3d7a 1px 1px,#1e3d7a 2px 2px,#1e3d7a 3px 3px,#1e3d7a 4px 4px,#1e3d7a 5px 5px,#1e3d7a 6px 6px,#1e3d7a 7px 7px,#1e3d7a 8px 8px,#1e3d7a 9px 9px,#1e3d7a 10px 10px,#1e3d7a 11px 11px,#1e3d7a 12px 12px,#1e3d7a 13px 13px,#1e3d7a 14px 14px,#1e3d7a 15px 15px,#1e3d7a 16px 16px,#1e3d7a 17px 17px,#1e3d7a 18px 18px,#1e3d7a 19px 19px,#1e3d7a 20px 20px,#1e3d7a 21px 21px,#1e3d7a 22px 22px,#1e3d7a 23px 23px,#1e3d7a 24px 24px,#1e3d7a 25px 25px,#1e3d7a 26px 26px,#1e3d7a 27px 27px,#1e3d7a 28px 28px,#1e3d7a 29px 29px,#1e3d7a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-flickr{background:#FF0586;border:1px solid #D0006F;text-shadow:#d0006f 1px 1px,#d0006f 2px 2px,#d0006f 3px 3px,#d0006f 4px 4px,#d0006f 5px 5px,#d0006f 6px 6px,#d0006f 7px 7px,#d0006f 8px 8px,#d0006f 9px 9px,#d0006f 10px 10px,#d0006f 11px 11px,#d0006f 12px 12px,#d0006f 13px 13px,#d0006f 14px 14px,#d0006f 15px 15px,#d0006f 16px 16px,#d0006f 17px 17px,#d0006f 18px 18px,#d0006f 19px 19px,#d0006f 20px 20px,#d0006f 21px 21px,#d0006f 22px 22px,#d0006f 23px 23px,#d0006f 24px 24px,#d0006f 25px 25px,#d0006f 26px 26px,#d0006f 27px 27px,#d0006f 28px 28px,#d0006f 29px 29px,#d0006f 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-github{background:#829AA8;border:1px solid #4F7385;text-shadow:#4f7385 1px 1px,#4f7385 2px 2px,#4f7385 3px 3px,#4f7385 4px 4px,#4f7385 5px 5px,#4f7385 6px 6px,#4f7385 7px 7px,#4f7385 8px 8px,#4f7385 9px 9px,#4f7385 10px 10px,#4f7385 11px 11px,#4f7385 12px 12px,#4f7385 13px 13px,#4f7385 14px 14px,#4f7385 15px 15px,#4f7385 16px 16px,#4f7385 17px 17px,#4f7385 18px 18px,#4f7385 19px 19px,#4f7385 20px 20px,#4f7385 21px 21px,#4f7385 22px 22px,#4f7385 23px 23px,#4f7385 24px 24px,#4f7385 25px 25px,#4f7385 26px 26px,#4f7385 27px 27px,#4f7385 28px 28px,#4f7385 29px 29px,#4f7385 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-google{background:#E8262F;border:1px solid #C20C18;text-shadow:#c20c18 1px 1px,#c20c18 2px 2px,#c20c18 3px 3px,#c20c18 4px 4px,#c20c18 5px 5px,#c20c18 6px 6px,#c20c18 7px 7px,#c20c18 8px 8px,#c20c18 9px 9px,#c20c18 10px 10px,#c20c18 11px 11px,#c20c18 12px 12px,#c20c18 13px 13px,#c20c18 14px 14px,#c20c18 15px 15px,#c20c18 16px 16px,#c20c18 17px 17px,#c20c18 18px 18px,#c20c18 19px 19px,#c20c18 20px 20px,#c20c18 21px 21px,#c20c18 22px 22px,#c20c18 23px 23px,#c20c18 24px 24px,#c20c18 25px 25px,#c20c18 26px 26px,#c20c18 27px 27px,#c20c18 28px 28px,#c20c18 29px 29px,#c20c18 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-googleplus{background:#DD4B39;border:1px solid #B32414;text-shadow:#b32414 1px 1px,#b32414 2px 2px,#b32414 3px 3px,#b32414 4px 4px,#b32414 5px 5px,#b32414 6px 6px,#b32414 7px 7px,#b32414 8px 8px,#b32414 9px 9px,#b32414 10px 10px,#b32414 11px 11px,#b32414 12px 12px,#b32414 13px 13px,#b32414 14px 14px,#b32414 15px 15px,#b32414 16px 16px,#b32414 17px 17px,#b32414 18px 18px,#b32414 19px 19px,#b32414 20px 20px,#b32414 21px 21px,#b32414 22px 22px,#b32414 23px 23px,#b32414 24px 24px,#b32414 25px 25px,#b32414 26px 26px,#b32414 27px 27px,#b32414 28px 28px,#b32414 29px 29px,#b32414 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-html5{background:#F16528;border:1px solid #C23D08;text-shadow:#c23d08 1px 1px,#c23d08 2px 2px,#c23d08 3px 3px,#c23d08 4px 4px,#c23d08 5px 5px,#c23d08 6px 6px,#c23d08 7px 7px,#c23d08 8px 8px,#c23d08 9px 9px,#c23d08 10px 10px,#c23d08 11px 11px,#c23d08 12px 12px,#c23d08 13px 13px,#c23d08 14px 14px,#c23d08 15px 15px,#c23d08 16px 16px,#c23d08 17px 17px,#c23d08 18px 18px,#c23d08 19px 19px,#c23d08 20px 20px,#c23d08 21px 21px,#c23d08 22px 22px,#c23d08 23px 23px,#c23d08 24px 24px,#c23d08 25px 25px,#c23d08 26px 26px,#c23d08 27px 27px,#c23d08 28px 28px,#c23d08 29px 29px,#c23d08 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-instagram{background:#417096;border:1px solid #244F70;text-shadow:#244f70 1px 1px,#244f70 2px 2px,#244f70 3px 3px,#244f70 4px 4px,#244f70 5px 5px,#244f70 6px 6px,#244f70 7px 7px,#244f70 8px 8px,#244f70 9px 9px,#244f70 10px 10px,#244f70 11px 11px,#244f70 12px 12px,#244f70 13px 13px,#244f70 14px 14px,#244f70 15px 15px,#244f70 16px 16px,#244f70 17px 17px,#244f70 18px 18px,#244f70 19px 19px,#244f70 20px 20px,#244f70 21px 21px,#244f70 22px 22px,#244f70 23px 23px,#244f70 24px 24px,#244f70 25px 25px,#244f70 26px 26px,#244f70 27px 27px,#244f70 28px 28px,#244f70 29px 29px,#244f70 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-linkedin{background:#1583BB;border:1px solid #036390;text-shadow:#036390 1px 1px,#036390 2px 2px,#036390 3px 3px,#036390 4px 4px,#036390 5px 5px,#036390 6px 6px,#036390 7px 7px,#036390 8px 8px,#036390 9px 9px,#036390 10px 10px,#036390 11px 11px,#036390 12px 12px,#036390 13px 13px,#036390 14px 14px,#036390 15px 15px,#036390 16px 16px,#036390 17px 17px,#036390 18px 18px,#036390 19px 19px,#036390 20px 20px,#036390 21px 21px,#036390 22px 22px,#036390 23px 23px,#036390 24px 24px,#036390 25px 25px,#036390 26px 26px,#036390 27px 27px,#036390 28px 28px,#036390 29px 29px,#036390 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-pinterest{background:#CB2027;border:1px solid #9D060E;text-shadow:#9d063e 1px 1px,#9d063e 2px 2px,#9d063e 3px 3px,#9d063e 4px 4px,#9d063e 5px 5px,#9d063e 6px 6px,#9d063e 7px 7px,#9d063e 8px 8px,#9d063e 9px 9px,#9d063e 10px 10px,#9d063e 11px 11px,#9d063e 12px 12px,#9d063e 13px 13px,#9d063e 14px 14px,#9d063e 15px 15px,#9d063e 16px 16px,#9d063e 17px 17px,#9d063e 18px 18px,#9d063e 19px 19px,#9d063e 20px 20px,#9d063e 21px 21px,#9d063e 22px 22px,#9d063e 23px 23px,#9d063e 24px 24px,#9d063e 25px 25px,#9d063e 26px 26px,#9d063e 27px 27px,#9d063e 28px 28px,#9d063e 29px 29px,#9d063e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-reddit{background:#FF4107;border:1px solid #C62D02;text-shadow:#c62d02 1px 1px,#c62d02 2px 2px,#c62d02 3px 3px,#c62d02 4px 4px,#c62d02 5px 5px,#c62d02 6px 6px,#c62d02 7px 7px,#c62d02 8px 8px,#c62d02 9px 9px,#c62d02 10px 10px,#c62d02 11px 11px,#c62d02 12px 12px,#c62d02 13px 13px,#c62d02 14px 14px,#c62d02 15px 15px,#c62d02 16px 16px,#c62d02 17px 17px,#c62d02 18px 18px,#c62d02 19px 19px,#c62d02 20px 20px,#c62d02 21px 21px,#c62d02 22px 22px,#c62d02 23px 23px,#c62d02 24px 24px,#c62d02 25px 25px,#c62d02 26px 26px,#c62d02 27px 27px,#c62d02 28px 28px,#c62d02 29px 29px,#c62d02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-rss{background:#FF7A21;border:1px solid #C24B02;text-shadow:#c24b02 1px 1px,#c24b02 2px 2px,#c24b02 3px 3px,#c24b02 4px 4px,#c24b02 5px 5px,#c24b02 6px 6px,#c24b02 7px 7px,#c24b02 8px 8px,#c24b02 9px 9px,#c24b02 10px 10px,#c24b02 11px 11px,#c24b02 12px 12px,#c24b02 13px 13px,#c24b02 14px 14px,#c24b02 15px 15px,#c24b02 16px 16px,#c24b02 17px 17px,#c24b02 18px 18px,#c24b02 19px 19px,#c24b02 20px 20px,#c24b02 21px 21px,#c24b02 22px 22px,#c24b02 23px 23px,#c24b02 24px 24px,#c24b02 25px 25px,#c24b02 26px 26px,#c24b02 27px 27px,#c24b02 28px 28px,#c24b02 29px 29px,#c24b02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-sharethis{background:#1D9565;border:1px solid #076840;text-shadow:#076840 1px 1px,#076840 2px 2px,#076840 3px 3px,#076840 4px 4px,#076840 5px 5px,#076840 6px 6px,#076840 7px 7px,#076840 8px 8px,#076840 9px 9px,#076840 10px 10px,#076840 11px 11px,#076840 12px 12px,#076840 13px 13px,#076840 14px 14px,#076840 15px 15px,#076840 16px 16px,#076840 17px 17px,#076840 18px 18px,#076840 19px 19px,#076840 20px 20px,#076840 21px 21px,#076840 22px 22px,#076840 23px 23px,#076840 24px 24px,#076840 25px 25px,#076840 26px 26px,#076840 27px 27px,#076840 28px 28px,#076840 29px 29px,#076840 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-skype{background:#3FC1F4;border:1px solid #1B95C2;text-shadow:#1b95c2 1px 1px,#1b95c2 2px 2px,#1b95c2 3px 3px,#1b95c2 4px 4px,#1b95c2 5px 5px,#1b95c2 6px 6px,#1b95c2 7px 7px,#1b95c2 8px 8px,#1b95c2 9px 9px,#1b95c2 10px 10px,#1b95c2 11px 11px,#1b95c2 12px 12px,#1b95c2 13px 13px,#1b95c2 14px 14px,#1b95c2 15px 15px,#1b95c2 16px 16px,#1b95c2 17px 17px,#1b95c2 18px 18px,#1b95c2 19px 19px,#1b95c2 20px 20px,#1b95c2 21px 21px,#1b95c2 22px 22px,#1b95c2 23px 23px,#1b95c2 24px 24px,#1b95c2 25px 25px,#1b95c2 26px 26px,#1b95c2 27px 27px,#1b95c2 28px 28px,#1b95c2 29px 29px,#1b95c2 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-soundcloud{background:#FF5419;border:1px solid #C73002;text-shadow:#c73002 1px 1px,#c73002 2px 2px,#c73002 3px 3px,#c73002 4px 4px,#c73002 5px 5px,#c73002 6px 6px,#c73002 7px 7px,#c73002 8px 8px,#c73002 9px 9px,#c73002 10px 10px,#c73002 11px 11px,#c73002 12px 12px,#c73002 13px 13px,#c73002 14px 14px,#c73002 15px 15px,#c73002 16px 16px,#c73002 17px 17px,#c73002 18px 18px,#c73002 19px 19px,#c73002 20px 20px,#c73002 21px 21px,#c73002 22px 22px,#c73002 23px 23px,#c73002 24px 24px,#c73002 25px 25px,#c73002 26px 26px,#c73002 27px 27px,#c73002 28px 28px,#c73002 29px 29px,#c73002 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-spotify{background:#AECF02;border:1px solid #829900;text-shadow:#829900 1px 1px,#829900 2px 2px,#829900 3px 3px,#829900 4px 4px,#829900 5px 5px,#829900 6px 6px,#829900 7px 7px,#829900 8px 8px,#829900 9px 9px,#829900 10px 10px,#829900 11px 11px,#829900 12px 12px,#829900 13px 13px,#829900 14px 14px,#829900 15px 15px,#829900 16px 16px,#829900 17px 17px,#829900 18px 18px,#829900 19px 19px,#829900 20px 20px,#829900 21px 21px,#829900 22px 22px,#829900 23px 23px,#829900 24px 24px,#829900 25px 25px,#829900 26px 26px,#829900 27px 27px,#829900 28px 28px,#829900 29px 29px,#829900 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stackoverflow{background:#FF661E;border:1px solid #CE3A00;text-shadow:#ce3a00 1px 1px,#ce3a00 2px 2px,#ce3a00 3px 3px,#ce3a00 4px 4px,#ce3a00 5px 5px,#ce3a00 6px 6px,#ce3a00 7px 7px,#ce3a00 8px 8px,#ce3a00 9px 9px,#ce3a00 10px 10px,#ce3a00 11px 11px,#ce3a00 12px 12px,#ce3a00 13px 13px,#ce3a00 14px 14px,#ce3a00 15px 15px,#ce3a00 16px 16px,#ce3a00 17px 17px,#ce3a00 18px 18px,#ce3a00 19px 19px,#ce3a00 20px 20px,#ce3a00 21px 21px,#ce3a00 22px 22px,#ce3a00 23px 23px,#ce3a00 24px 24px,#ce3a00 25px 25px,#ce3a00 26px 26px,#ce3a00 27px 27px,#ce3a00 28px 28px,#ce3a00 29px 29px,#ce3a00 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-steam{background:#484848;border:1px solid #302B2B;text-shadow:#302b2b 1px 1px,#302b2b 2px 2px,#302b2b 3px 3px,#302b2b 4px 4px,#302b2b 5px 5px,#302b2b 6px 6px,#302b2b 7px 7px,#302b2b 8px 8px,#302b2b 9px 9px,#302b2b 10px 10px,#302b2b 11px 11px,#302b2b 12px 12px,#302b2b 13px 13px,#302b2b 14px 14px,#302b2b 15px 15px,#302b2b 16px 16px,#302b2b 17px 17px,#302b2b 18px 18px,#302b2b 19px 19px,#302b2b 20px 20px,#302b2b 21px 21px,#302b2b 22px 22px,#302b2b 23px 23px,#302b2b 24px 24px,#302b2b 25px 25px,#302b2b 26px 26px,#302b2b 27px 27px,#302b2b 28px 28px,#302b2b 29px 29px,#302b2b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon{background:#EB4923;border:1px solid #BE2507;text-shadow:#be2507 1px 1px,#be2507 2px 2px,#be2507 3px 3px,#be2507 4px 4px,#be2507 5px 5px,#be2507 6px 6px,#be2507 7px 7px,#be2507 8px 8px,#be2507 9px 9px,#be2507 10px 10px,#be2507 11px 11px,#be2507 12px 12px,#be2507 13px 13px,#be2507 14px 14px,#be2507 15px 15px,#be2507 16px 16px,#be2507 17px 17px,#be2507 18px 18px,#be2507 19px 19px,#be2507 20px 20px,#be2507 21px 21px,#be2507 22px 22px,#be2507 23px 23px,#be2507 24px 24px,#be2507 25px 25px,#be2507 26px 26px,#be2507 27px 27px,#be2507 28px 28px,#be2507 29px 29px,#be2507 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-tumblr{background:#3C576C;border:1px solid #1E3546;text-shadow:#1e3546 1px 1px,#1e3546 2px 2px,#1e3546 3px 3px,#1e3546 4px 4px,#1e3546 5px 5px,#1e3546 6px 6px,#1e3546 7px 7px,#1e3546 8px 8px,#1e3546 9px 9px,#1e3546 10px 10px,#1e3546 11px 11px,#1e3546 12px 12px,#1e3546 13px 13px,#1e3546 14px 14px,#1e3546 15px 15px,#1e3546 16px 16px,#1e3546 17px 17px,#1e3546 18px 18px,#1e3546 19px 19px,#1e3546 20px 20px,#1e3546 21px 21px,#1e3546 22px 22px,#1e3546 23px 23px,#1e3546 24px 24px,#1e3546 25px 25px,#1e3546 26px 26px,#1e3546 27px 27px,#1e3546 28px 28px,#1e3546 29px 29px,#1e3546 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-twitter{background:#00ACED;border:1px solid #008AB8;text-shadow:#008ab8 1px 1px,#008ab8 2px 2px,#008ab8 3px 3px,#008ab8 4px 4px,#008ab8 5px 5px,#008ab8 6px 6px,#008ab8 7px 7px,#008ab8 8px 8px,#008ab8 9px 9px,#008ab8 10px 10px,#008ab8 11px 11px,#008ab8 12px 12px,#008ab8 13px 13px,#008ab8 14px 14px,#008ab8 15px 15px,#008ab8 16px 16px,#008ab8 17px 17px,#008ab8 18px 18px,#008ab8 19px 19px,#008ab8 20px 20px,#008ab8 21px 21px,#008ab8 22px 22px,#008ab8 23px 23px,#008ab8 24px 24px,#008ab8 25px 25px,#008ab8 26px 26px,#008ab8 27px 27px,#008ab8 28px 28px,#008ab8 29px 29px,#008ab8 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-vimeo{background:#006599;border:1px solid #00496A;text-shadow:#00496a 1px 1px,#00496a 2px 2px,#00496a 3px 3px,#00496a 4px 4px,#00496a 5px 5px,#00496a 6px 6px,#00496a 7px 7px,#00496a 8px 8px,#00496a 9px 9px,#00496a 10px 10px,#00496a 11px 11px,#00496a 12px 12px,#00496a 13px 13px,#00496a 14px 14px,#00496a 15px 15px,#00496a 16px 16px,#00496a 17px 17px,#00496a 18px 18px,#00496a 19px 19px,#00496a 20px 20px,#00496a 21px 21px,#00496a 22px 22px,#00496a 23px 23px,#00496a 24px 24px,#00496a 25px 25px,#00496a 26px 26px,#00496a 27px 27px,#00496a 28px 28px,#00496a 29px 29px,#00496a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-windows{background:#00ADEF;border:1px solid #038BBC;text-shadow:#038bbc 1px 1px,#038bbc 2px 2px,#038bbc 3px 3px,#038bbc 4px 4px,#038bbc 5px 5px,#038bbc 6px 6px,#038bbc 7px 7px,#038bbc 8px 8px,#038bbc 9px 9px,#038bbc 10px 10px,#038bbc 11px 11px,#038bbc 12px 12px,#038bbc 13px 13px,#038bbc 14px 14px,#038bbc 15px 15px,#038bbc 16px 16px,#038bbc 17px 17px,#038bbc 18px 18px,#038bbc 19px 19px,#038bbc 20px 20px,#038bbc 21px 21px,#038bbc 22px 22px,#038bbc 23px 23px,#038bbc 24px 24px,#038bbc 25px 25px,#038bbc 26px 26px,#038bbc 27px 27px,#038bbc 28px 28px,#038bbc 29px 29px,#038bbc 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-wordpress{background:#21759A;border:1px solid #0F607E;text-shadow:#0f607e 1px 1px,#0f607e 2px 2px,#0f607e 3px 3px,#0f607e 4px 4px,#0f607e 5px 5px,#0f607e 6px 6px,#0f607e 7px 7px,#0f607e 8px 8px,#0f607e 9px 9px,#0f607e 10px 10px,#0f607e 11px 11px,#0f607e 12px 12px,#0f607e 13px 13px,#0f607e 14px 14px,#0f607e 15px 15px,#0f607e 16px 16px,#0f607e 17px 17px,#0f607e 18px 18px,#0f607e 19px 19px,#0f607e 20px 20px,#0f607e 21px 21px,#0f607e 22px 22px,#0f607e 23px 23px,#0f607e 24px 24px,#0f607e 25px 25px,#0f607e 26px 26px,#0f607e 27px 27px,#0f607e 28px 28px,#0f607e 29px 29px,#0f607e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-yahoo{background:#4101AF;border:1px solid #290074;text-shadow:#290074 1px 1px,#290074 2px 2px,#290074 3px 3px,#290074 4px 4px,#290074 5px 5px,#290074 6px 6px,#290074 7px 7px,#290074 8px 8px,#290074 9px 9px,#290074 10px 10px,#290074 11px 11px,#290074 12px 12px,#290074 13px 13px,#290074 14px 14px,#290074 15px 15px,#290074 16px 16px,#290074 17px 17px,#290074 18px 18px,#290074 19px 19px,#290074 20px 20px,#290074 21px 21px,#290074 22px 22px,#290074 23px 23px,#290074 24px 24px,#290074 25px 25px,#290074 26px 26px,#290074 27px 27px,#290074 28px 28px,#290074 29px 29px,#290074 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-youtube{background:#E52C27;border:1px solid #BE0707;text-shadow:#be0707 1px 1px,#be0707 2px 2px,#be0707 3px 3px,#be0707 4px 4px,#be0707 5px 5px,#be0707 6px 6px,#be0707 7px 7px,#be0707 8px 8px,#be0707 9px 9px,#be0707 10px 10px,#be0707 11px 11px,#be0707 12px 12px,#be0707 13px 13px,#be0707 14px 14px,#be0707 15px 15px,#be0707 16px 16px,#be0707 17px 17px,#be0707 18px 18px,#be0707 19px 19px,#be0707 20px 20px,#be0707 21px 21px,#be0707 22px 22px,#be0707 23px 23px,#be0707 24px 24px,#be0707 25px 25px,#be0707 26px 26px,#be0707 27px 27px,#be0707 28px 28px,#be0707 29px 29px,#be0707 30px 30px}@media screen and (max-width:480px){.saboxplugin-wrap{text-align:center}.saboxplugin-wrap .saboxplugin-gravatar{float:none;padding:20px 0;text-align:center;margin:0 auto;display:block}.saboxplugin-wrap .saboxplugin-gravatar img{float:none;display:inline-block;display:-moz-inline-stack;vertical-align:middle;zoom:1}.saboxplugin-wrap .saboxplugin-desc{margin:0 10px 20px;text-align:center}.saboxplugin-wrap .saboxplugin-authorname{text-align:center;margin:10px 0 20px}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color,.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey{margin:15px 5px}}
css/simple-author-box.min.css CHANGED
@@ -1 +1 @@
1
- .saboxplugin-wrap{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border:1px solid;border-color:#EEE;width:100%;clear:both;display:block;overflow:hidden;word-wrap:break-word}.saboxplugin-wrap .saboxplugin-gravatar{float:left;padding:20px}.saboxplugin-wrap .saboxplugin-desc{display:block;margin-left:100px;margin-right:20px}.saboxplugin-wrap .saboxplugin-authorname{font-size:18px;line-height:1;margin:20px 0 7px;display:block}.saboxplugin-authorname a,.saboxplugin-wrap .saboxplugin-desc a{text-decoration:none}.saboxplugin-wrap .saboxplugin-desc p{margin:5px 0 12px}.saboxplugin-wrap .saboxplugin-socials{position:relative;z-index:50;display:block;background:#FCFCFC;padding:0 15px;-webkit-box-shadow:0 1px 0 0 #eee inset;-moz-box-shadow:0 1px 0 0 #eee inset;box-shadow:0 1px 0 0 #eee inset}.saboxplugin-wrap .saboxplugin-socials a{text-decoration:none;padding:0;margin:0;border:0;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials a:hover{opacity:.8;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before{display:block;width:30px;height:30px;line-height:33px;text-align:center;speak:none}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;font-size:14px;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;background-clip:content-box;-moz-background-clip:content-box;-webkit-background-clip:content-box;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;overflow:hidden}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey:before{display:block;text-align:center;speak:none;line-height:1}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;font-size:20px;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;color:#444}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}.saboxplugin-wrap .saboxplugin-socials.sabox-colored .saboxplugin-icon-color{color:#fff}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-addthis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-addthis:before{content:'\f067'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-behance:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-behance:before{content:'\f1b4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-delicious:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-delicious:before{content:'\f1a5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-deviantart:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-deviantart:before{content:'\f1bd'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-digg:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-digg:before{content:'\f1a6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-dribbble:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-dribbble:before{content:'\f17d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-facebook:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-facebook:before{content:'\f09a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-flickr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-flickr:before{content:'\f16e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-github:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-github:before{content:'\f09b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-google:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-google:before{content:'\f1a0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-googleplus:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-googleplus:before{content:'\f0d5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-html5:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-html5:before{content:'\f13b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-instagram:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-instagram:before{content:'\f16d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-linkedin:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-linkedin:before{content:'\f0e1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-pinterest:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-pinterest:before{content:'\f0d2'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-reddit:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-reddit:before{content:'\f1a1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-rss:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-rss:before{content:'\f09e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-sharethis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-sharethis:before{content:'\f1e0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-skype:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-skype:before{content:'\f17e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-soundcloud:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-soundcloud:before{content:'\f1be'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-spotify:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-spotify:before{content:'\f1bc'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stackoverflow:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stackoverflow:before{content:'\f16c'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-steam:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-steam:before{content:'\f1b6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stumbleUpon:before{content:'\f1a4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-tumblr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-tumblr:before{content:'\f173'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-twitter:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-twitter:before{content:'\f099'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-vimeo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-vimeo:before{content:'\f194'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-windows:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-windows:before{content:'\f17a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-wordpress:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-wordpress:before{content:'\f19a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-yahoo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-yahoo:before{content:'\f19e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-youtube:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-youtube:before{content:'\f167'}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-addthis{background:#FF8662;border:1px solid #D5644B;text-shadow:#d5644b 1px 1px,#d5644b 2px 2px,#d5644b 3px 3px,#d5644b 4px 4px,#d5644b 5px 5px,#d5644b 6px 6px,#d5644b 7px 7px,#d5644b 8px 8px,#d5644b 9px 9px,#d5644b 10px 10px,#d5644b 11px 11px,#d5644b 12px 12px,#d5644b 13px 13px,#d5644b 14px 14px,#d5644b 15px 15px,#d5644b 16px 16px,#d5644b 17px 17px,#d5644b 18px 18px,#d5644b 19px 19px,#d5644b 20px 20px,#d5644b 21px 21px,#d5644b 22px 22px,#d5644b 23px 23px,#d5644b 24px 24px,#d5644b 25px 25px,#d5644b 26px 26px,#d5644b 27px 27px,#d5644b 28px 28px,#d5644b 29px 29px,#d5644b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-behance{background:#0294FF;border:1px solid #0083D4;text-shadow:#0083d4 1px 1px,#0083d4 2px 2px,#0083d4 3px 3px,#0083d4 4px 4px,#0083d4 5px 5px,#0083d4 6px 6px,#0083d4 7px 7px,#0083d4 8px 8px,#0083d4 9px 9px,#0083d4 10px 10px,#0083d4 11px 11px,#0083d4 12px 12px,#0083d4 13px 13px,#0083d4 14px 14px,#0083d4 15px 15px,#0083d4 16px 16px,#0083d4 17px 17px,#0083d4 18px 18px,#0083d4 19px 19px,#0083d4 20px 20px,#0083d4 21px 21px,#0083d4 22px 22px,#0083d4 23px 23px,#0083d4 24px 24px,#0083d4 25px 25px,#0083d4 26px 26px,#0083d4 27px 27px,#0083d4 28px 28px,#0083d4 29px 29px,#0083d4 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-delicious{background:#0294FF;border:1px solid #007ECD;text-shadow:#007ecd 1px 1px,#007ecd 2px 2px,#007ecd 3px 3px,#007ecd 4px 4px,#007ecd 5px 5px,#007ecd 6px 6px,#007ecd 7px 7px,#007ecd 8px 8px,#007ecd 9px 9px,#007ecd 10px 10px,#007ecd 11px 11px,#007ecd 12px 12px,#007ecd 13px 13px,#007ecd 14px 14px,#007ecd 15px 15px,#007ecd 16px 16px,#007ecd 17px 17px,#007ecd 18px 18px,#007ecd 19px 19px,#007ecd 20px 20px,#007ecd 21px 21px,#007ecd 22px 22px,#007ecd 23px 23px,#007ecd 24px 24px,#007ecd 25px 25px,#007ecd 26px 26px,#007ecd 27px 27px,#007ecd 28px 28px,#007ecd 29px 29px,#007ecd 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-deviantart{background:#DCE22B;border:1px solid #B2B423;text-shadow:#b2b423 1px 1px,#b2b423 2px 2px,#b2b423 3px 3px,#b2b423 4px 4px,#b2b423 5px 5px,#b2b423 6px 6px,#b2b423 7px 7px,#b2b423 8px 8px,#b2b423 9px 9px,#b2b423 10px 10px,#b2b423 11px 11px,#b2b423 12px 12px,#b2b423 13px 13px,#b2b423 14px 14px,#b2b423 15px 15px,#b2b423 16px 16px,#b2b423 17px 17px,#b2b423 18px 18px,#b2b423 19px 19px,#b2b423 20px 20px,#b2b423 21px 21px,#b2b423 22px 22px,#b2b423 23px 23px,#b2b423 24px 24px,#b2b423 25px 25px,#b2b423 26px 26px,#b2b423 27px 27px,#b2b423 28px 28px,#b2b423 29px 29px,#b2b423 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-digg{background:#1B8EC4;border:1px solid #126C92;text-shadow:#126c92 1px 1px,#126c92 2px 2px,#126c92 3px 3px,#126c92 4px 4px,#126c92 5px 5px,#126c92 6px 6px,#126c92 7px 7px,#126c92 8px 8px,#126c92 9px 9px,#126c92 10px 10px,#126c92 11px 11px,#126c92 12px 12px,#126c92 13px 13px,#126c92 14px 14px,#126c92 15px 15px,#126c92 16px 16px,#126c92 17px 17px,#126c92 18px 18px,#126c92 19px 19px,#126c92 20px 20px,#126c92 21px 21px,#126c92 22px 22px,#126c92 23px 23px,#126c92 24px 24px,#126c92 25px 25px,#126c92 26px 26px,#126c92 27px 27px,#126c92 28px 28px,#126c92 29px 29px,#126c92 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-dribbble{background:#EF76A4;border:1px solid #C05C84;text-shadow:#c05c84 1px 1px,#c05c84 2px 2px,#c05c84 3px 3px,#c05c84 4px 4px,#c05c84 5px 5px,#c05c84 6px 6px,#c05c84 7px 7px,#c05c84 8px 8px,#c05c84 9px 9px,#c05c84 10px 10px,#c05c84 11px 11px,#c05c84 12px 12px,#c05c84 13px 13px,#c05c84 14px 14px,#c05c84 15px 15px,#c05c84 16px 16px,#c05c84 17px 17px,#c05c84 18px 18px,#c05c84 19px 19px,#c05c84 20px 20px,#c05c84 21px 21px,#c05c84 22px 22px,#c05c84 23px 23px,#c05c84 24px 24px,#c05c84 25px 25px,#c05c84 26px 26px,#c05c84 27px 27px,#c05c84 28px 28px,#c05c84 29px 29px,#c05c84 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-facebook{background:#3B5998;border:1px solid #1E3D7A;text-shadow:#1e3d7a 1px 1px,#1e3d7a 2px 2px,#1e3d7a 3px 3px,#1e3d7a 4px 4px,#1e3d7a 5px 5px,#1e3d7a 6px 6px,#1e3d7a 7px 7px,#1e3d7a 8px 8px,#1e3d7a 9px 9px,#1e3d7a 10px 10px,#1e3d7a 11px 11px,#1e3d7a 12px 12px,#1e3d7a 13px 13px,#1e3d7a 14px 14px,#1e3d7a 15px 15px,#1e3d7a 16px 16px,#1e3d7a 17px 17px,#1e3d7a 18px 18px,#1e3d7a 19px 19px,#1e3d7a 20px 20px,#1e3d7a 21px 21px,#1e3d7a 22px 22px,#1e3d7a 23px 23px,#1e3d7a 24px 24px,#1e3d7a 25px 25px,#1e3d7a 26px 26px,#1e3d7a 27px 27px,#1e3d7a 28px 28px,#1e3d7a 29px 29px,#1e3d7a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-flickr{background:#FF0586;border:1px solid #D0006F;text-shadow:#d0006f 1px 1px,#d0006f 2px 2px,#d0006f 3px 3px,#d0006f 4px 4px,#d0006f 5px 5px,#d0006f 6px 6px,#d0006f 7px 7px,#d0006f 8px 8px,#d0006f 9px 9px,#d0006f 10px 10px,#d0006f 11px 11px,#d0006f 12px 12px,#d0006f 13px 13px,#d0006f 14px 14px,#d0006f 15px 15px,#d0006f 16px 16px,#d0006f 17px 17px,#d0006f 18px 18px,#d0006f 19px 19px,#d0006f 20px 20px,#d0006f 21px 21px,#d0006f 22px 22px,#d0006f 23px 23px,#d0006f 24px 24px,#d0006f 25px 25px,#d0006f 26px 26px,#d0006f 27px 27px,#d0006f 28px 28px,#d0006f 29px 29px,#d0006f 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-github{background:#829AA8;border:1px solid #4F7385;text-shadow:#4f7385 1px 1px,#4f7385 2px 2px,#4f7385 3px 3px,#4f7385 4px 4px,#4f7385 5px 5px,#4f7385 6px 6px,#4f7385 7px 7px,#4f7385 8px 8px,#4f7385 9px 9px,#4f7385 10px 10px,#4f7385 11px 11px,#4f7385 12px 12px,#4f7385 13px 13px,#4f7385 14px 14px,#4f7385 15px 15px,#4f7385 16px 16px,#4f7385 17px 17px,#4f7385 18px 18px,#4f7385 19px 19px,#4f7385 20px 20px,#4f7385 21px 21px,#4f7385 22px 22px,#4f7385 23px 23px,#4f7385 24px 24px,#4f7385 25px 25px,#4f7385 26px 26px,#4f7385 27px 27px,#4f7385 28px 28px,#4f7385 29px 29px,#4f7385 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-google{background:#E8262F;border:1px solid #C20C18;text-shadow:#c20c18 1px 1px,#c20c18 2px 2px,#c20c18 3px 3px,#c20c18 4px 4px,#c20c18 5px 5px,#c20c18 6px 6px,#c20c18 7px 7px,#c20c18 8px 8px,#c20c18 9px 9px,#c20c18 10px 10px,#c20c18 11px 11px,#c20c18 12px 12px,#c20c18 13px 13px,#c20c18 14px 14px,#c20c18 15px 15px,#c20c18 16px 16px,#c20c18 17px 17px,#c20c18 18px 18px,#c20c18 19px 19px,#c20c18 20px 20px,#c20c18 21px 21px,#c20c18 22px 22px,#c20c18 23px 23px,#c20c18 24px 24px,#c20c18 25px 25px,#c20c18 26px 26px,#c20c18 27px 27px,#c20c18 28px 28px,#c20c18 29px 29px,#c20c18 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-googleplus{background:#DD4B39;border:1px solid #B32414;text-shadow:#b32414 1px 1px,#b32414 2px 2px,#b32414 3px 3px,#b32414 4px 4px,#b32414 5px 5px,#b32414 6px 6px,#b32414 7px 7px,#b32414 8px 8px,#b32414 9px 9px,#b32414 10px 10px,#b32414 11px 11px,#b32414 12px 12px,#b32414 13px 13px,#b32414 14px 14px,#b32414 15px 15px,#b32414 16px 16px,#b32414 17px 17px,#b32414 18px 18px,#b32414 19px 19px,#b32414 20px 20px,#b32414 21px 21px,#b32414 22px 22px,#b32414 23px 23px,#b32414 24px 24px,#b32414 25px 25px,#b32414 26px 26px,#b32414 27px 27px,#b32414 28px 28px,#b32414 29px 29px,#b32414 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-html5{background:#F16528;border:1px solid #C23D08;text-shadow:#c23d08 1px 1px,#c23d08 2px 2px,#c23d08 3px 3px,#c23d08 4px 4px,#c23d08 5px 5px,#c23d08 6px 6px,#c23d08 7px 7px,#c23d08 8px 8px,#c23d08 9px 9px,#c23d08 10px 10px,#c23d08 11px 11px,#c23d08 12px 12px,#c23d08 13px 13px,#c23d08 14px 14px,#c23d08 15px 15px,#c23d08 16px 16px,#c23d08 17px 17px,#c23d08 18px 18px,#c23d08 19px 19px,#c23d08 20px 20px,#c23d08 21px 21px,#c23d08 22px 22px,#c23d08 23px 23px,#c23d08 24px 24px,#c23d08 25px 25px,#c23d08 26px 26px,#c23d08 27px 27px,#c23d08 28px 28px,#c23d08 29px 29px,#c23d08 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-instagram{background:#417096;border:1px solid #244F70;text-shadow:#244f70 1px 1px,#244f70 2px 2px,#244f70 3px 3px,#244f70 4px 4px,#244f70 5px 5px,#244f70 6px 6px,#244f70 7px 7px,#244f70 8px 8px,#244f70 9px 9px,#244f70 10px 10px,#244f70 11px 11px,#244f70 12px 12px,#244f70 13px 13px,#244f70 14px 14px,#244f70 15px 15px,#244f70 16px 16px,#244f70 17px 17px,#244f70 18px 18px,#244f70 19px 19px,#244f70 20px 20px,#244f70 21px 21px,#244f70 22px 22px,#244f70 23px 23px,#244f70 24px 24px,#244f70 25px 25px,#244f70 26px 26px,#244f70 27px 27px,#244f70 28px 28px,#244f70 29px 29px,#244f70 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-linkedin{background:#1583BB;border:1px solid #036390;text-shadow:#036390 1px 1px,#036390 2px 2px,#036390 3px 3px,#036390 4px 4px,#036390 5px 5px,#036390 6px 6px,#036390 7px 7px,#036390 8px 8px,#036390 9px 9px,#036390 10px 10px,#036390 11px 11px,#036390 12px 12px,#036390 13px 13px,#036390 14px 14px,#036390 15px 15px,#036390 16px 16px,#036390 17px 17px,#036390 18px 18px,#036390 19px 19px,#036390 20px 20px,#036390 21px 21px,#036390 22px 22px,#036390 23px 23px,#036390 24px 24px,#036390 25px 25px,#036390 26px 26px,#036390 27px 27px,#036390 28px 28px,#036390 29px 29px,#036390 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-pinterest{background:#CB2027;border:1px solid #9D060E;text-shadow:#9d063e 1px 1px,#9d063e 2px 2px,#9d063e 3px 3px,#9d063e 4px 4px,#9d063e 5px 5px,#9d063e 6px 6px,#9d063e 7px 7px,#9d063e 8px 8px,#9d063e 9px 9px,#9d063e 10px 10px,#9d063e 11px 11px,#9d063e 12px 12px,#9d063e 13px 13px,#9d063e 14px 14px,#9d063e 15px 15px,#9d063e 16px 16px,#9d063e 17px 17px,#9d063e 18px 18px,#9d063e 19px 19px,#9d063e 20px 20px,#9d063e 21px 21px,#9d063e 22px 22px,#9d063e 23px 23px,#9d063e 24px 24px,#9d063e 25px 25px,#9d063e 26px 26px,#9d063e 27px 27px,#9d063e 28px 28px,#9d063e 29px 29px,#9d063e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-reddit{background:#FF4107;border:1px solid #C62D02;text-shadow:#c62d02 1px 1px,#c62d02 2px 2px,#c62d02 3px 3px,#c62d02 4px 4px,#c62d02 5px 5px,#c62d02 6px 6px,#c62d02 7px 7px,#c62d02 8px 8px,#c62d02 9px 9px,#c62d02 10px 10px,#c62d02 11px 11px,#c62d02 12px 12px,#c62d02 13px 13px,#c62d02 14px 14px,#c62d02 15px 15px,#c62d02 16px 16px,#c62d02 17px 17px,#c62d02 18px 18px,#c62d02 19px 19px,#c62d02 20px 20px,#c62d02 21px 21px,#c62d02 22px 22px,#c62d02 23px 23px,#c62d02 24px 24px,#c62d02 25px 25px,#c62d02 26px 26px,#c62d02 27px 27px,#c62d02 28px 28px,#c62d02 29px 29px,#c62d02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-rss{background:#FF7A21;border:1px solid #C24B02;text-shadow:#c24b02 1px 1px,#c24b02 2px 2px,#c24b02 3px 3px,#c24b02 4px 4px,#c24b02 5px 5px,#c24b02 6px 6px,#c24b02 7px 7px,#c24b02 8px 8px,#c24b02 9px 9px,#c24b02 10px 10px,#c24b02 11px 11px,#c24b02 12px 12px,#c24b02 13px 13px,#c24b02 14px 14px,#c24b02 15px 15px,#c24b02 16px 16px,#c24b02 17px 17px,#c24b02 18px 18px,#c24b02 19px 19px,#c24b02 20px 20px,#c24b02 21px 21px,#c24b02 22px 22px,#c24b02 23px 23px,#c24b02 24px 24px,#c24b02 25px 25px,#c24b02 26px 26px,#c24b02 27px 27px,#c24b02 28px 28px,#c24b02 29px 29px,#c24b02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-sharethis{background:#1D9565;border:1px solid #076840;text-shadow:#076840 1px 1px,#076840 2px 2px,#076840 3px 3px,#076840 4px 4px,#076840 5px 5px,#076840 6px 6px,#076840 7px 7px,#076840 8px 8px,#076840 9px 9px,#076840 10px 10px,#076840 11px 11px,#076840 12px 12px,#076840 13px 13px,#076840 14px 14px,#076840 15px 15px,#076840 16px 16px,#076840 17px 17px,#076840 18px 18px,#076840 19px 19px,#076840 20px 20px,#076840 21px 21px,#076840 22px 22px,#076840 23px 23px,#076840 24px 24px,#076840 25px 25px,#076840 26px 26px,#076840 27px 27px,#076840 28px 28px,#076840 29px 29px,#076840 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-skype{background:#3FC1F4;border:1px solid #1B95C2;text-shadow:#1b95c2 1px 1px,#1b95c2 2px 2px,#1b95c2 3px 3px,#1b95c2 4px 4px,#1b95c2 5px 5px,#1b95c2 6px 6px,#1b95c2 7px 7px,#1b95c2 8px 8px,#1b95c2 9px 9px,#1b95c2 10px 10px,#1b95c2 11px 11px,#1b95c2 12px 12px,#1b95c2 13px 13px,#1b95c2 14px 14px,#1b95c2 15px 15px,#1b95c2 16px 16px,#1b95c2 17px 17px,#1b95c2 18px 18px,#1b95c2 19px 19px,#1b95c2 20px 20px,#1b95c2 21px 21px,#1b95c2 22px 22px,#1b95c2 23px 23px,#1b95c2 24px 24px,#1b95c2 25px 25px,#1b95c2 26px 26px,#1b95c2 27px 27px,#1b95c2 28px 28px,#1b95c2 29px 29px,#1b95c2 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-soundcloud{background:#FF5419;border:1px solid #C73002;text-shadow:#c73002 1px 1px,#c73002 2px 2px,#c73002 3px 3px,#c73002 4px 4px,#c73002 5px 5px,#c73002 6px 6px,#c73002 7px 7px,#c73002 8px 8px,#c73002 9px 9px,#c73002 10px 10px,#c73002 11px 11px,#c73002 12px 12px,#c73002 13px 13px,#c73002 14px 14px,#c73002 15px 15px,#c73002 16px 16px,#c73002 17px 17px,#c73002 18px 18px,#c73002 19px 19px,#c73002 20px 20px,#c73002 21px 21px,#c73002 22px 22px,#c73002 23px 23px,#c73002 24px 24px,#c73002 25px 25px,#c73002 26px 26px,#c73002 27px 27px,#c73002 28px 28px,#c73002 29px 29px,#c73002 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-spotify{background:#AECF02;border:1px solid #829900;text-shadow:#829900 1px 1px,#829900 2px 2px,#829900 3px 3px,#829900 4px 4px,#829900 5px 5px,#829900 6px 6px,#829900 7px 7px,#829900 8px 8px,#829900 9px 9px,#829900 10px 10px,#829900 11px 11px,#829900 12px 12px,#829900 13px 13px,#829900 14px 14px,#829900 15px 15px,#829900 16px 16px,#829900 17px 17px,#829900 18px 18px,#829900 19px 19px,#829900 20px 20px,#829900 21px 21px,#829900 22px 22px,#829900 23px 23px,#829900 24px 24px,#829900 25px 25px,#829900 26px 26px,#829900 27px 27px,#829900 28px 28px,#829900 29px 29px,#829900 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stackoverflow{background:#FF661E;border:1px solid #CE3A00;text-shadow:#ce3a00 1px 1px,#ce3a00 2px 2px,#ce3a00 3px 3px,#ce3a00 4px 4px,#ce3a00 5px 5px,#ce3a00 6px 6px,#ce3a00 7px 7px,#ce3a00 8px 8px,#ce3a00 9px 9px,#ce3a00 10px 10px,#ce3a00 11px 11px,#ce3a00 12px 12px,#ce3a00 13px 13px,#ce3a00 14px 14px,#ce3a00 15px 15px,#ce3a00 16px 16px,#ce3a00 17px 17px,#ce3a00 18px 18px,#ce3a00 19px 19px,#ce3a00 20px 20px,#ce3a00 21px 21px,#ce3a00 22px 22px,#ce3a00 23px 23px,#ce3a00 24px 24px,#ce3a00 25px 25px,#ce3a00 26px 26px,#ce3a00 27px 27px,#ce3a00 28px 28px,#ce3a00 29px 29px,#ce3a00 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-steam{background:#484848;border:1px solid #302B2B;text-shadow:#302b2b 1px 1px,#302b2b 2px 2px,#302b2b 3px 3px,#302b2b 4px 4px,#302b2b 5px 5px,#302b2b 6px 6px,#302b2b 7px 7px,#302b2b 8px 8px,#302b2b 9px 9px,#302b2b 10px 10px,#302b2b 11px 11px,#302b2b 12px 12px,#302b2b 13px 13px,#302b2b 14px 14px,#302b2b 15px 15px,#302b2b 16px 16px,#302b2b 17px 17px,#302b2b 18px 18px,#302b2b 19px 19px,#302b2b 20px 20px,#302b2b 21px 21px,#302b2b 22px 22px,#302b2b 23px 23px,#302b2b 24px 24px,#302b2b 25px 25px,#302b2b 26px 26px,#302b2b 27px 27px,#302b2b 28px 28px,#302b2b 29px 29px,#302b2b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon{background:#EB4923;border:1px solid #BE2507;text-shadow:#be2507 1px 1px,#be2507 2px 2px,#be2507 3px 3px,#be2507 4px 4px,#be2507 5px 5px,#be2507 6px 6px,#be2507 7px 7px,#be2507 8px 8px,#be2507 9px 9px,#be2507 10px 10px,#be2507 11px 11px,#be2507 12px 12px,#be2507 13px 13px,#be2507 14px 14px,#be2507 15px 15px,#be2507 16px 16px,#be2507 17px 17px,#be2507 18px 18px,#be2507 19px 19px,#be2507 20px 20px,#be2507 21px 21px,#be2507 22px 22px,#be2507 23px 23px,#be2507 24px 24px,#be2507 25px 25px,#be2507 26px 26px,#be2507 27px 27px,#be2507 28px 28px,#be2507 29px 29px,#be2507 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-tumblr{background:#3C576C;border:1px solid #1E3546;text-shadow:#1e3546 1px 1px,#1e3546 2px 2px,#1e3546 3px 3px,#1e3546 4px 4px,#1e3546 5px 5px,#1e3546 6px 6px,#1e3546 7px 7px,#1e3546 8px 8px,#1e3546 9px 9px,#1e3546 10px 10px,#1e3546 11px 11px,#1e3546 12px 12px,#1e3546 13px 13px,#1e3546 14px 14px,#1e3546 15px 15px,#1e3546 16px 16px,#1e3546 17px 17px,#1e3546 18px 18px,#1e3546 19px 19px,#1e3546 20px 20px,#1e3546 21px 21px,#1e3546 22px 22px,#1e3546 23px 23px,#1e3546 24px 24px,#1e3546 25px 25px,#1e3546 26px 26px,#1e3546 27px 27px,#1e3546 28px 28px,#1e3546 29px 29px,#1e3546 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-twitter{background:#00ACED;border:1px solid #008AB8;text-shadow:#008ab8 1px 1px,#008ab8 2px 2px,#008ab8 3px 3px,#008ab8 4px 4px,#008ab8 5px 5px,#008ab8 6px 6px,#008ab8 7px 7px,#008ab8 8px 8px,#008ab8 9px 9px,#008ab8 10px 10px,#008ab8 11px 11px,#008ab8 12px 12px,#008ab8 13px 13px,#008ab8 14px 14px,#008ab8 15px 15px,#008ab8 16px 16px,#008ab8 17px 17px,#008ab8 18px 18px,#008ab8 19px 19px,#008ab8 20px 20px,#008ab8 21px 21px,#008ab8 22px 22px,#008ab8 23px 23px,#008ab8 24px 24px,#008ab8 25px 25px,#008ab8 26px 26px,#008ab8 27px 27px,#008ab8 28px 28px,#008ab8 29px 29px,#008ab8 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-vimeo{background:#006599;border:1px solid #00496A;text-shadow:#00496a 1px 1px,#00496a 2px 2px,#00496a 3px 3px,#00496a 4px 4px,#00496a 5px 5px,#00496a 6px 6px,#00496a 7px 7px,#00496a 8px 8px,#00496a 9px 9px,#00496a 10px 10px,#00496a 11px 11px,#00496a 12px 12px,#00496a 13px 13px,#00496a 14px 14px,#00496a 15px 15px,#00496a 16px 16px,#00496a 17px 17px,#00496a 18px 18px,#00496a 19px 19px,#00496a 20px 20px,#00496a 21px 21px,#00496a 22px 22px,#00496a 23px 23px,#00496a 24px 24px,#00496a 25px 25px,#00496a 26px 26px,#00496a 27px 27px,#00496a 28px 28px,#00496a 29px 29px,#00496a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-windows{background:#00ADEF;border:1px solid #038BBC;text-shadow:#038bbc 1px 1px,#038bbc 2px 2px,#038bbc 3px 3px,#038bbc 4px 4px,#038bbc 5px 5px,#038bbc 6px 6px,#038bbc 7px 7px,#038bbc 8px 8px,#038bbc 9px 9px,#038bbc 10px 10px,#038bbc 11px 11px,#038bbc 12px 12px,#038bbc 13px 13px,#038bbc 14px 14px,#038bbc 15px 15px,#038bbc 16px 16px,#038bbc 17px 17px,#038bbc 18px 18px,#038bbc 19px 19px,#038bbc 20px 20px,#038bbc 21px 21px,#038bbc 22px 22px,#038bbc 23px 23px,#038bbc 24px 24px,#038bbc 25px 25px,#038bbc 26px 26px,#038bbc 27px 27px,#038bbc 28px 28px,#038bbc 29px 29px,#038bbc 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-wordpress{background:#21759A;border:1px solid #0F607E;text-shadow:#0f607e 1px 1px,#0f607e 2px 2px,#0f607e 3px 3px,#0f607e 4px 4px,#0f607e 5px 5px,#0f607e 6px 6px,#0f607e 7px 7px,#0f607e 8px 8px,#0f607e 9px 9px,#0f607e 10px 10px,#0f607e 11px 11px,#0f607e 12px 12px,#0f607e 13px 13px,#0f607e 14px 14px,#0f607e 15px 15px,#0f607e 16px 16px,#0f607e 17px 17px,#0f607e 18px 18px,#0f607e 19px 19px,#0f607e 20px 20px,#0f607e 21px 21px,#0f607e 22px 22px,#0f607e 23px 23px,#0f607e 24px 24px,#0f607e 25px 25px,#0f607e 26px 26px,#0f607e 27px 27px,#0f607e 28px 28px,#0f607e 29px 29px,#0f607e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-yahoo{background:#4101AF;border:1px solid #290074;text-shadow:#290074 1px 1px,#290074 2px 2px,#290074 3px 3px,#290074 4px 4px,#290074 5px 5px,#290074 6px 6px,#290074 7px 7px,#290074 8px 8px,#290074 9px 9px,#290074 10px 10px,#290074 11px 11px,#290074 12px 12px,#290074 13px 13px,#290074 14px 14px,#290074 15px 15px,#290074 16px 16px,#290074 17px 17px,#290074 18px 18px,#290074 19px 19px,#290074 20px 20px,#290074 21px 21px,#290074 22px 22px,#290074 23px 23px,#290074 24px 24px,#290074 25px 25px,#290074 26px 26px,#290074 27px 27px,#290074 28px 28px,#290074 29px 29px,#290074 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-youtube{background:#E52C27;border:1px solid #BE0707;text-shadow:#be0707 1px 1px,#be0707 2px 2px,#be0707 3px 3px,#be0707 4px 4px,#be0707 5px 5px,#be0707 6px 6px,#be0707 7px 7px,#be0707 8px 8px,#be0707 9px 9px,#be0707 10px 10px,#be0707 11px 11px,#be0707 12px 12px,#be0707 13px 13px,#be0707 14px 14px,#be0707 15px 15px,#be0707 16px 16px,#be0707 17px 17px,#be0707 18px 18px,#be0707 19px 19px,#be0707 20px 20px,#be0707 21px 21px,#be0707 22px 22px,#be0707 23px 23px,#be0707 24px 24px,#be0707 25px 25px,#be0707 26px 26px,#be0707 27px 27px,#be0707 28px 28px,#be0707 29px 29px,#be0707 30px 30px}@media screen and (max-width:480px){.saboxplugin-wrap{text-align:center}.saboxplugin-wrap .saboxplugin-gravatar{float:none;padding:20px 0;text-align:center;margin:0 auto;display:block}.saboxplugin-wrap .saboxplugin-gravatar img{float:none;display:inline-block;display:-moz-inline-stack;vertical-align:middle;zoom:1}.saboxplugin-wrap .saboxplugin-desc{margin:0 10px 20px;text-align:center}.saboxplugin-wrap .saboxplugin-authorname{text-align:center;margin:10px 0 20px}}
1
+ .saboxplugin-wrap{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border:1px solid;border-color:#EEE;width:100%;clear:both;display:block;overflow:hidden;word-wrap:break-word}.saboxplugin-wrap .saboxplugin-gravatar{float:left;padding:20px}.saboxplugin-wrap .saboxplugin-authorname{font-size:18px;line-height:1;margin:20px 0 0 20px;display:block}.saboxplugin-authorname a{text-decoration:none}.saboxplugin-wrap .saboxplugin-desc{display:block;margin:5px 20px}.saboxplugin-wrap .saboxplugin-desc a{text-decoration:none}.saboxplugin-wrap .saboxplugin-desc p{margin:5px 0 12px}.saboxplugin-wrap .saboxplugin-web{margin:0 20px 15px;text-align:left}.saboxplugin-wrap .sab-web-position{text-align:right}.saboxplugin-wrap .saboxplugin-web a{color:#ccc;text-decoration:none}.saboxplugin-wrap .saboxplugin-socials{position:relative;z-index:50;display:block;background:#FCFCFC;padding:0 15px;-webkit-box-shadow:0 1px 0 0 #eee inset;-moz-box-shadow:0 1px 0 0 #eee inset;box-shadow:0 1px 0 0 #eee inset}.saboxplugin-wrap .saboxplugin-socials a{text-decoration:none;padding:0;margin:0;border:0;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials a:hover{opacity:.8;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before{display:block;width:30px;height:30px;line-height:33px;text-align:center;speak:none}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;font-size:14px;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;background-clip:content-box;-moz-background-clip:content-box;-webkit-background-clip:content-box;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;overflow:hidden}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey:before{display:block;text-align:center;speak:none;line-height:1}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;font-size:20px;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;color:#444}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}.saboxplugin-wrap .saboxplugin-socials.sabox-colored .saboxplugin-icon-color{color:#fff}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-addthis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-addthis:before{content:'\f067'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-behance:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-behance:before{content:'\f1b4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-delicious:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-delicious:before{content:'\f1a5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-deviantart:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-deviantart:before{content:'\f1bd'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-digg:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-digg:before{content:'\f1a6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-dribbble:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-dribbble:before{content:'\f17d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-facebook:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-facebook:before{content:'\f09a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-flickr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-flickr:before{content:'\f16e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-github:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-github:before{content:'\f09b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-google:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-google:before{content:'\f1a0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-googleplus:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-googleplus:before{content:'\f0d5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-html5:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-html5:before{content:'\f13b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-instagram:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-instagram:before{content:'\f16d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-linkedin:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-linkedin:before{content:'\f0e1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-pinterest:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-pinterest:before{content:'\f0d2'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-reddit:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-reddit:before{content:'\f1a1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-rss:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-rss:before{content:'\f09e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-sharethis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-sharethis:before{content:'\f1e0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-skype:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-skype:before{content:'\f17e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-soundcloud:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-soundcloud:before{content:'\f1be'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-spotify:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-spotify:before{content:'\f1bc'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stackoverflow:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stackoverflow:before{content:'\f16c'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-steam:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-steam:before{content:'\f1b6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stumbleUpon:before{content:'\f1a4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-tumblr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-tumblr:before{content:'\f173'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-twitter:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-twitter:before{content:'\f099'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-vimeo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-vimeo:before{content:'\f194'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-windows:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-windows:before{content:'\f17a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-wordpress:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-wordpress:before{content:'\f19a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-yahoo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-yahoo:before{content:'\f19e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-youtube:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-youtube:before{content:'\f167'}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-addthis{background:#FF8662;border:1px solid #D5644B;text-shadow:#d5644b 1px 1px,#d5644b 2px 2px,#d5644b 3px 3px,#d5644b 4px 4px,#d5644b 5px 5px,#d5644b 6px 6px,#d5644b 7px 7px,#d5644b 8px 8px,#d5644b 9px 9px,#d5644b 10px 10px,#d5644b 11px 11px,#d5644b 12px 12px,#d5644b 13px 13px,#d5644b 14px 14px,#d5644b 15px 15px,#d5644b 16px 16px,#d5644b 17px 17px,#d5644b 18px 18px,#d5644b 19px 19px,#d5644b 20px 20px,#d5644b 21px 21px,#d5644b 22px 22px,#d5644b 23px 23px,#d5644b 24px 24px,#d5644b 25px 25px,#d5644b 26px 26px,#d5644b 27px 27px,#d5644b 28px 28px,#d5644b 29px 29px,#d5644b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-behance{background:#0294FF;border:1px solid #0083D4;text-shadow:#0083d4 1px 1px,#0083d4 2px 2px,#0083d4 3px 3px,#0083d4 4px 4px,#0083d4 5px 5px,#0083d4 6px 6px,#0083d4 7px 7px,#0083d4 8px 8px,#0083d4 9px 9px,#0083d4 10px 10px,#0083d4 11px 11px,#0083d4 12px 12px,#0083d4 13px 13px,#0083d4 14px 14px,#0083d4 15px 15px,#0083d4 16px 16px,#0083d4 17px 17px,#0083d4 18px 18px,#0083d4 19px 19px,#0083d4 20px 20px,#0083d4 21px 21px,#0083d4 22px 22px,#0083d4 23px 23px,#0083d4 24px 24px,#0083d4 25px 25px,#0083d4 26px 26px,#0083d4 27px 27px,#0083d4 28px 28px,#0083d4 29px 29px,#0083d4 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-delicious{background:#0294FF;border:1px solid #007ECD;text-shadow:#007ecd 1px 1px,#007ecd 2px 2px,#007ecd 3px 3px,#007ecd 4px 4px,#007ecd 5px 5px,#007ecd 6px 6px,#007ecd 7px 7px,#007ecd 8px 8px,#007ecd 9px 9px,#007ecd 10px 10px,#007ecd 11px 11px,#007ecd 12px 12px,#007ecd 13px 13px,#007ecd 14px 14px,#007ecd 15px 15px,#007ecd 16px 16px,#007ecd 17px 17px,#007ecd 18px 18px,#007ecd 19px 19px,#007ecd 20px 20px,#007ecd 21px 21px,#007ecd 22px 22px,#007ecd 23px 23px,#007ecd 24px 24px,#007ecd 25px 25px,#007ecd 26px 26px,#007ecd 27px 27px,#007ecd 28px 28px,#007ecd 29px 29px,#007ecd 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-deviantart{background:#DCE22B;border:1px solid #B2B423;text-shadow:#b2b423 1px 1px,#b2b423 2px 2px,#b2b423 3px 3px,#b2b423 4px 4px,#b2b423 5px 5px,#b2b423 6px 6px,#b2b423 7px 7px,#b2b423 8px 8px,#b2b423 9px 9px,#b2b423 10px 10px,#b2b423 11px 11px,#b2b423 12px 12px,#b2b423 13px 13px,#b2b423 14px 14px,#b2b423 15px 15px,#b2b423 16px 16px,#b2b423 17px 17px,#b2b423 18px 18px,#b2b423 19px 19px,#b2b423 20px 20px,#b2b423 21px 21px,#b2b423 22px 22px,#b2b423 23px 23px,#b2b423 24px 24px,#b2b423 25px 25px,#b2b423 26px 26px,#b2b423 27px 27px,#b2b423 28px 28px,#b2b423 29px 29px,#b2b423 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-digg{background:#1B8EC4;border:1px solid #126C92;text-shadow:#126c92 1px 1px,#126c92 2px 2px,#126c92 3px 3px,#126c92 4px 4px,#126c92 5px 5px,#126c92 6px 6px,#126c92 7px 7px,#126c92 8px 8px,#126c92 9px 9px,#126c92 10px 10px,#126c92 11px 11px,#126c92 12px 12px,#126c92 13px 13px,#126c92 14px 14px,#126c92 15px 15px,#126c92 16px 16px,#126c92 17px 17px,#126c92 18px 18px,#126c92 19px 19px,#126c92 20px 20px,#126c92 21px 21px,#126c92 22px 22px,#126c92 23px 23px,#126c92 24px 24px,#126c92 25px 25px,#126c92 26px 26px,#126c92 27px 27px,#126c92 28px 28px,#126c92 29px 29px,#126c92 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-dribbble{background:#EF76A4;border:1px solid #C05C84;text-shadow:#c05c84 1px 1px,#c05c84 2px 2px,#c05c84 3px 3px,#c05c84 4px 4px,#c05c84 5px 5px,#c05c84 6px 6px,#c05c84 7px 7px,#c05c84 8px 8px,#c05c84 9px 9px,#c05c84 10px 10px,#c05c84 11px 11px,#c05c84 12px 12px,#c05c84 13px 13px,#c05c84 14px 14px,#c05c84 15px 15px,#c05c84 16px 16px,#c05c84 17px 17px,#c05c84 18px 18px,#c05c84 19px 19px,#c05c84 20px 20px,#c05c84 21px 21px,#c05c84 22px 22px,#c05c84 23px 23px,#c05c84 24px 24px,#c05c84 25px 25px,#c05c84 26px 26px,#c05c84 27px 27px,#c05c84 28px 28px,#c05c84 29px 29px,#c05c84 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-facebook{background:#3B5998;border:1px solid #1E3D7A;text-shadow:#1e3d7a 1px 1px,#1e3d7a 2px 2px,#1e3d7a 3px 3px,#1e3d7a 4px 4px,#1e3d7a 5px 5px,#1e3d7a 6px 6px,#1e3d7a 7px 7px,#1e3d7a 8px 8px,#1e3d7a 9px 9px,#1e3d7a 10px 10px,#1e3d7a 11px 11px,#1e3d7a 12px 12px,#1e3d7a 13px 13px,#1e3d7a 14px 14px,#1e3d7a 15px 15px,#1e3d7a 16px 16px,#1e3d7a 17px 17px,#1e3d7a 18px 18px,#1e3d7a 19px 19px,#1e3d7a 20px 20px,#1e3d7a 21px 21px,#1e3d7a 22px 22px,#1e3d7a 23px 23px,#1e3d7a 24px 24px,#1e3d7a 25px 25px,#1e3d7a 26px 26px,#1e3d7a 27px 27px,#1e3d7a 28px 28px,#1e3d7a 29px 29px,#1e3d7a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-flickr{background:#FF0586;border:1px solid #D0006F;text-shadow:#d0006f 1px 1px,#d0006f 2px 2px,#d0006f 3px 3px,#d0006f 4px 4px,#d0006f 5px 5px,#d0006f 6px 6px,#d0006f 7px 7px,#d0006f 8px 8px,#d0006f 9px 9px,#d0006f 10px 10px,#d0006f 11px 11px,#d0006f 12px 12px,#d0006f 13px 13px,#d0006f 14px 14px,#d0006f 15px 15px,#d0006f 16px 16px,#d0006f 17px 17px,#d0006f 18px 18px,#d0006f 19px 19px,#d0006f 20px 20px,#d0006f 21px 21px,#d0006f 22px 22px,#d0006f 23px 23px,#d0006f 24px 24px,#d0006f 25px 25px,#d0006f 26px 26px,#d0006f 27px 27px,#d0006f 28px 28px,#d0006f 29px 29px,#d0006f 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-github{background:#829AA8;border:1px solid #4F7385;text-shadow:#4f7385 1px 1px,#4f7385 2px 2px,#4f7385 3px 3px,#4f7385 4px 4px,#4f7385 5px 5px,#4f7385 6px 6px,#4f7385 7px 7px,#4f7385 8px 8px,#4f7385 9px 9px,#4f7385 10px 10px,#4f7385 11px 11px,#4f7385 12px 12px,#4f7385 13px 13px,#4f7385 14px 14px,#4f7385 15px 15px,#4f7385 16px 16px,#4f7385 17px 17px,#4f7385 18px 18px,#4f7385 19px 19px,#4f7385 20px 20px,#4f7385 21px 21px,#4f7385 22px 22px,#4f7385 23px 23px,#4f7385 24px 24px,#4f7385 25px 25px,#4f7385 26px 26px,#4f7385 27px 27px,#4f7385 28px 28px,#4f7385 29px 29px,#4f7385 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-google{background:#E8262F;border:1px solid #C20C18;text-shadow:#c20c18 1px 1px,#c20c18 2px 2px,#c20c18 3px 3px,#c20c18 4px 4px,#c20c18 5px 5px,#c20c18 6px 6px,#c20c18 7px 7px,#c20c18 8px 8px,#c20c18 9px 9px,#c20c18 10px 10px,#c20c18 11px 11px,#c20c18 12px 12px,#c20c18 13px 13px,#c20c18 14px 14px,#c20c18 15px 15px,#c20c18 16px 16px,#c20c18 17px 17px,#c20c18 18px 18px,#c20c18 19px 19px,#c20c18 20px 20px,#c20c18 21px 21px,#c20c18 22px 22px,#c20c18 23px 23px,#c20c18 24px 24px,#c20c18 25px 25px,#c20c18 26px 26px,#c20c18 27px 27px,#c20c18 28px 28px,#c20c18 29px 29px,#c20c18 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-googleplus{background:#DD4B39;border:1px solid #B32414;text-shadow:#b32414 1px 1px,#b32414 2px 2px,#b32414 3px 3px,#b32414 4px 4px,#b32414 5px 5px,#b32414 6px 6px,#b32414 7px 7px,#b32414 8px 8px,#b32414 9px 9px,#b32414 10px 10px,#b32414 11px 11px,#b32414 12px 12px,#b32414 13px 13px,#b32414 14px 14px,#b32414 15px 15px,#b32414 16px 16px,#b32414 17px 17px,#b32414 18px 18px,#b32414 19px 19px,#b32414 20px 20px,#b32414 21px 21px,#b32414 22px 22px,#b32414 23px 23px,#b32414 24px 24px,#b32414 25px 25px,#b32414 26px 26px,#b32414 27px 27px,#b32414 28px 28px,#b32414 29px 29px,#b32414 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-html5{background:#F16528;border:1px solid #C23D08;text-shadow:#c23d08 1px 1px,#c23d08 2px 2px,#c23d08 3px 3px,#c23d08 4px 4px,#c23d08 5px 5px,#c23d08 6px 6px,#c23d08 7px 7px,#c23d08 8px 8px,#c23d08 9px 9px,#c23d08 10px 10px,#c23d08 11px 11px,#c23d08 12px 12px,#c23d08 13px 13px,#c23d08 14px 14px,#c23d08 15px 15px,#c23d08 16px 16px,#c23d08 17px 17px,#c23d08 18px 18px,#c23d08 19px 19px,#c23d08 20px 20px,#c23d08 21px 21px,#c23d08 22px 22px,#c23d08 23px 23px,#c23d08 24px 24px,#c23d08 25px 25px,#c23d08 26px 26px,#c23d08 27px 27px,#c23d08 28px 28px,#c23d08 29px 29px,#c23d08 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-instagram{background:#417096;border:1px solid #244F70;text-shadow:#244f70 1px 1px,#244f70 2px 2px,#244f70 3px 3px,#244f70 4px 4px,#244f70 5px 5px,#244f70 6px 6px,#244f70 7px 7px,#244f70 8px 8px,#244f70 9px 9px,#244f70 10px 10px,#244f70 11px 11px,#244f70 12px 12px,#244f70 13px 13px,#244f70 14px 14px,#244f70 15px 15px,#244f70 16px 16px,#244f70 17px 17px,#244f70 18px 18px,#244f70 19px 19px,#244f70 20px 20px,#244f70 21px 21px,#244f70 22px 22px,#244f70 23px 23px,#244f70 24px 24px,#244f70 25px 25px,#244f70 26px 26px,#244f70 27px 27px,#244f70 28px 28px,#244f70 29px 29px,#244f70 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-linkedin{background:#1583BB;border:1px solid #036390;text-shadow:#036390 1px 1px,#036390 2px 2px,#036390 3px 3px,#036390 4px 4px,#036390 5px 5px,#036390 6px 6px,#036390 7px 7px,#036390 8px 8px,#036390 9px 9px,#036390 10px 10px,#036390 11px 11px,#036390 12px 12px,#036390 13px 13px,#036390 14px 14px,#036390 15px 15px,#036390 16px 16px,#036390 17px 17px,#036390 18px 18px,#036390 19px 19px,#036390 20px 20px,#036390 21px 21px,#036390 22px 22px,#036390 23px 23px,#036390 24px 24px,#036390 25px 25px,#036390 26px 26px,#036390 27px 27px,#036390 28px 28px,#036390 29px 29px,#036390 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-pinterest{background:#CB2027;border:1px solid #9D060E;text-shadow:#9d063e 1px 1px,#9d063e 2px 2px,#9d063e 3px 3px,#9d063e 4px 4px,#9d063e 5px 5px,#9d063e 6px 6px,#9d063e 7px 7px,#9d063e 8px 8px,#9d063e 9px 9px,#9d063e 10px 10px,#9d063e 11px 11px,#9d063e 12px 12px,#9d063e 13px 13px,#9d063e 14px 14px,#9d063e 15px 15px,#9d063e 16px 16px,#9d063e 17px 17px,#9d063e 18px 18px,#9d063e 19px 19px,#9d063e 20px 20px,#9d063e 21px 21px,#9d063e 22px 22px,#9d063e 23px 23px,#9d063e 24px 24px,#9d063e 25px 25px,#9d063e 26px 26px,#9d063e 27px 27px,#9d063e 28px 28px,#9d063e 29px 29px,#9d063e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-reddit{background:#FF4107;border:1px solid #C62D02;text-shadow:#c62d02 1px 1px,#c62d02 2px 2px,#c62d02 3px 3px,#c62d02 4px 4px,#c62d02 5px 5px,#c62d02 6px 6px,#c62d02 7px 7px,#c62d02 8px 8px,#c62d02 9px 9px,#c62d02 10px 10px,#c62d02 11px 11px,#c62d02 12px 12px,#c62d02 13px 13px,#c62d02 14px 14px,#c62d02 15px 15px,#c62d02 16px 16px,#c62d02 17px 17px,#c62d02 18px 18px,#c62d02 19px 19px,#c62d02 20px 20px,#c62d02 21px 21px,#c62d02 22px 22px,#c62d02 23px 23px,#c62d02 24px 24px,#c62d02 25px 25px,#c62d02 26px 26px,#c62d02 27px 27px,#c62d02 28px 28px,#c62d02 29px 29px,#c62d02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-rss{background:#FF7A21;border:1px solid #C24B02;text-shadow:#c24b02 1px 1px,#c24b02 2px 2px,#c24b02 3px 3px,#c24b02 4px 4px,#c24b02 5px 5px,#c24b02 6px 6px,#c24b02 7px 7px,#c24b02 8px 8px,#c24b02 9px 9px,#c24b02 10px 10px,#c24b02 11px 11px,#c24b02 12px 12px,#c24b02 13px 13px,#c24b02 14px 14px,#c24b02 15px 15px,#c24b02 16px 16px,#c24b02 17px 17px,#c24b02 18px 18px,#c24b02 19px 19px,#c24b02 20px 20px,#c24b02 21px 21px,#c24b02 22px 22px,#c24b02 23px 23px,#c24b02 24px 24px,#c24b02 25px 25px,#c24b02 26px 26px,#c24b02 27px 27px,#c24b02 28px 28px,#c24b02 29px 29px,#c24b02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-sharethis{background:#1D9565;border:1px solid #076840;text-shadow:#076840 1px 1px,#076840 2px 2px,#076840 3px 3px,#076840 4px 4px,#076840 5px 5px,#076840 6px 6px,#076840 7px 7px,#076840 8px 8px,#076840 9px 9px,#076840 10px 10px,#076840 11px 11px,#076840 12px 12px,#076840 13px 13px,#076840 14px 14px,#076840 15px 15px,#076840 16px 16px,#076840 17px 17px,#076840 18px 18px,#076840 19px 19px,#076840 20px 20px,#076840 21px 21px,#076840 22px 22px,#076840 23px 23px,#076840 24px 24px,#076840 25px 25px,#076840 26px 26px,#076840 27px 27px,#076840 28px 28px,#076840 29px 29px,#076840 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-skype{background:#3FC1F4;border:1px solid #1B95C2;text-shadow:#1b95c2 1px 1px,#1b95c2 2px 2px,#1b95c2 3px 3px,#1b95c2 4px 4px,#1b95c2 5px 5px,#1b95c2 6px 6px,#1b95c2 7px 7px,#1b95c2 8px 8px,#1b95c2 9px 9px,#1b95c2 10px 10px,#1b95c2 11px 11px,#1b95c2 12px 12px,#1b95c2 13px 13px,#1b95c2 14px 14px,#1b95c2 15px 15px,#1b95c2 16px 16px,#1b95c2 17px 17px,#1b95c2 18px 18px,#1b95c2 19px 19px,#1b95c2 20px 20px,#1b95c2 21px 21px,#1b95c2 22px 22px,#1b95c2 23px 23px,#1b95c2 24px 24px,#1b95c2 25px 25px,#1b95c2 26px 26px,#1b95c2 27px 27px,#1b95c2 28px 28px,#1b95c2 29px 29px,#1b95c2 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-soundcloud{background:#FF5419;border:1px solid #C73002;text-shadow:#c73002 1px 1px,#c73002 2px 2px,#c73002 3px 3px,#c73002 4px 4px,#c73002 5px 5px,#c73002 6px 6px,#c73002 7px 7px,#c73002 8px 8px,#c73002 9px 9px,#c73002 10px 10px,#c73002 11px 11px,#c73002 12px 12px,#c73002 13px 13px,#c73002 14px 14px,#c73002 15px 15px,#c73002 16px 16px,#c73002 17px 17px,#c73002 18px 18px,#c73002 19px 19px,#c73002 20px 20px,#c73002 21px 21px,#c73002 22px 22px,#c73002 23px 23px,#c73002 24px 24px,#c73002 25px 25px,#c73002 26px 26px,#c73002 27px 27px,#c73002 28px 28px,#c73002 29px 29px,#c73002 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-spotify{background:#AECF02;border:1px solid #829900;text-shadow:#829900 1px 1px,#829900 2px 2px,#829900 3px 3px,#829900 4px 4px,#829900 5px 5px,#829900 6px 6px,#829900 7px 7px,#829900 8px 8px,#829900 9px 9px,#829900 10px 10px,#829900 11px 11px,#829900 12px 12px,#829900 13px 13px,#829900 14px 14px,#829900 15px 15px,#829900 16px 16px,#829900 17px 17px,#829900 18px 18px,#829900 19px 19px,#829900 20px 20px,#829900 21px 21px,#829900 22px 22px,#829900 23px 23px,#829900 24px 24px,#829900 25px 25px,#829900 26px 26px,#829900 27px 27px,#829900 28px 28px,#829900 29px 29px,#829900 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stackoverflow{background:#FF661E;border:1px solid #CE3A00;text-shadow:#ce3a00 1px 1px,#ce3a00 2px 2px,#ce3a00 3px 3px,#ce3a00 4px 4px,#ce3a00 5px 5px,#ce3a00 6px 6px,#ce3a00 7px 7px,#ce3a00 8px 8px,#ce3a00 9px 9px,#ce3a00 10px 10px,#ce3a00 11px 11px,#ce3a00 12px 12px,#ce3a00 13px 13px,#ce3a00 14px 14px,#ce3a00 15px 15px,#ce3a00 16px 16px,#ce3a00 17px 17px,#ce3a00 18px 18px,#ce3a00 19px 19px,#ce3a00 20px 20px,#ce3a00 21px 21px,#ce3a00 22px 22px,#ce3a00 23px 23px,#ce3a00 24px 24px,#ce3a00 25px 25px,#ce3a00 26px 26px,#ce3a00 27px 27px,#ce3a00 28px 28px,#ce3a00 29px 29px,#ce3a00 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-steam{background:#484848;border:1px solid #302B2B;text-shadow:#302b2b 1px 1px,#302b2b 2px 2px,#302b2b 3px 3px,#302b2b 4px 4px,#302b2b 5px 5px,#302b2b 6px 6px,#302b2b 7px 7px,#302b2b 8px 8px,#302b2b 9px 9px,#302b2b 10px 10px,#302b2b 11px 11px,#302b2b 12px 12px,#302b2b 13px 13px,#302b2b 14px 14px,#302b2b 15px 15px,#302b2b 16px 16px,#302b2b 17px 17px,#302b2b 18px 18px,#302b2b 19px 19px,#302b2b 20px 20px,#302b2b 21px 21px,#302b2b 22px 22px,#302b2b 23px 23px,#302b2b 24px 24px,#302b2b 25px 25px,#302b2b 26px 26px,#302b2b 27px 27px,#302b2b 28px 28px,#302b2b 29px 29px,#302b2b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon{background:#EB4923;border:1px solid #BE2507;text-shadow:#be2507 1px 1px,#be2507 2px 2px,#be2507 3px 3px,#be2507 4px 4px,#be2507 5px 5px,#be2507 6px 6px,#be2507 7px 7px,#be2507 8px 8px,#be2507 9px 9px,#be2507 10px 10px,#be2507 11px 11px,#be2507 12px 12px,#be2507 13px 13px,#be2507 14px 14px,#be2507 15px 15px,#be2507 16px 16px,#be2507 17px 17px,#be2507 18px 18px,#be2507 19px 19px,#be2507 20px 20px,#be2507 21px 21px,#be2507 22px 22px,#be2507 23px 23px,#be2507 24px 24px,#be2507 25px 25px,#be2507 26px 26px,#be2507 27px 27px,#be2507 28px 28px,#be2507 29px 29px,#be2507 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-tumblr{background:#3C576C;border:1px solid #1E3546;text-shadow:#1e3546 1px 1px,#1e3546 2px 2px,#1e3546 3px 3px,#1e3546 4px 4px,#1e3546 5px 5px,#1e3546 6px 6px,#1e3546 7px 7px,#1e3546 8px 8px,#1e3546 9px 9px,#1e3546 10px 10px,#1e3546 11px 11px,#1e3546 12px 12px,#1e3546 13px 13px,#1e3546 14px 14px,#1e3546 15px 15px,#1e3546 16px 16px,#1e3546 17px 17px,#1e3546 18px 18px,#1e3546 19px 19px,#1e3546 20px 20px,#1e3546 21px 21px,#1e3546 22px 22px,#1e3546 23px 23px,#1e3546 24px 24px,#1e3546 25px 25px,#1e3546 26px 26px,#1e3546 27px 27px,#1e3546 28px 28px,#1e3546 29px 29px,#1e3546 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-twitter{background:#00ACED;border:1px solid #008AB8;text-shadow:#008ab8 1px 1px,#008ab8 2px 2px,#008ab8 3px 3px,#008ab8 4px 4px,#008ab8 5px 5px,#008ab8 6px 6px,#008ab8 7px 7px,#008ab8 8px 8px,#008ab8 9px 9px,#008ab8 10px 10px,#008ab8 11px 11px,#008ab8 12px 12px,#008ab8 13px 13px,#008ab8 14px 14px,#008ab8 15px 15px,#008ab8 16px 16px,#008ab8 17px 17px,#008ab8 18px 18px,#008ab8 19px 19px,#008ab8 20px 20px,#008ab8 21px 21px,#008ab8 22px 22px,#008ab8 23px 23px,#008ab8 24px 24px,#008ab8 25px 25px,#008ab8 26px 26px,#008ab8 27px 27px,#008ab8 28px 28px,#008ab8 29px 29px,#008ab8 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-vimeo{background:#006599;border:1px solid #00496A;text-shadow:#00496a 1px 1px,#00496a 2px 2px,#00496a 3px 3px,#00496a 4px 4px,#00496a 5px 5px,#00496a 6px 6px,#00496a 7px 7px,#00496a 8px 8px,#00496a 9px 9px,#00496a 10px 10px,#00496a 11px 11px,#00496a 12px 12px,#00496a 13px 13px,#00496a 14px 14px,#00496a 15px 15px,#00496a 16px 16px,#00496a 17px 17px,#00496a 18px 18px,#00496a 19px 19px,#00496a 20px 20px,#00496a 21px 21px,#00496a 22px 22px,#00496a 23px 23px,#00496a 24px 24px,#00496a 25px 25px,#00496a 26px 26px,#00496a 27px 27px,#00496a 28px 28px,#00496a 29px 29px,#00496a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-windows{background:#00ADEF;border:1px solid #038BBC;text-shadow:#038bbc 1px 1px,#038bbc 2px 2px,#038bbc 3px 3px,#038bbc 4px 4px,#038bbc 5px 5px,#038bbc 6px 6px,#038bbc 7px 7px,#038bbc 8px 8px,#038bbc 9px 9px,#038bbc 10px 10px,#038bbc 11px 11px,#038bbc 12px 12px,#038bbc 13px 13px,#038bbc 14px 14px,#038bbc 15px 15px,#038bbc 16px 16px,#038bbc 17px 17px,#038bbc 18px 18px,#038bbc 19px 19px,#038bbc 20px 20px,#038bbc 21px 21px,#038bbc 22px 22px,#038bbc 23px 23px,#038bbc 24px 24px,#038bbc 25px 25px,#038bbc 26px 26px,#038bbc 27px 27px,#038bbc 28px 28px,#038bbc 29px 29px,#038bbc 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-wordpress{background:#21759A;border:1px solid #0F607E;text-shadow:#0f607e 1px 1px,#0f607e 2px 2px,#0f607e 3px 3px,#0f607e 4px 4px,#0f607e 5px 5px,#0f607e 6px 6px,#0f607e 7px 7px,#0f607e 8px 8px,#0f607e 9px 9px,#0f607e 10px 10px,#0f607e 11px 11px,#0f607e 12px 12px,#0f607e 13px 13px,#0f607e 14px 14px,#0f607e 15px 15px,#0f607e 16px 16px,#0f607e 17px 17px,#0f607e 18px 18px,#0f607e 19px 19px,#0f607e 20px 20px,#0f607e 21px 21px,#0f607e 22px 22px,#0f607e 23px 23px,#0f607e 24px 24px,#0f607e 25px 25px,#0f607e 26px 26px,#0f607e 27px 27px,#0f607e 28px 28px,#0f607e 29px 29px,#0f607e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-yahoo{background:#4101AF;border:1px solid #290074;text-shadow:#290074 1px 1px,#290074 2px 2px,#290074 3px 3px,#290074 4px 4px,#290074 5px 5px,#290074 6px 6px,#290074 7px 7px,#290074 8px 8px,#290074 9px 9px,#290074 10px 10px,#290074 11px 11px,#290074 12px 12px,#290074 13px 13px,#290074 14px 14px,#290074 15px 15px,#290074 16px 16px,#290074 17px 17px,#290074 18px 18px,#290074 19px 19px,#290074 20px 20px,#290074 21px 21px,#290074 22px 22px,#290074 23px 23px,#290074 24px 24px,#290074 25px 25px,#290074 26px 26px,#290074 27px 27px,#290074 28px 28px,#290074 29px 29px,#290074 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-youtube{background:#E52C27;border:1px solid #BE0707;text-shadow:#be0707 1px 1px,#be0707 2px 2px,#be0707 3px 3px,#be0707 4px 4px,#be0707 5px 5px,#be0707 6px 6px,#be0707 7px 7px,#be0707 8px 8px,#be0707 9px 9px,#be0707 10px 10px,#be0707 11px 11px,#be0707 12px 12px,#be0707 13px 13px,#be0707 14px 14px,#be0707 15px 15px,#be0707 16px 16px,#be0707 17px 17px,#be0707 18px 18px,#be0707 19px 19px,#be0707 20px 20px,#be0707 21px 21px,#be0707 22px 22px,#be0707 23px 23px,#be0707 24px 24px,#be0707 25px 25px,#be0707 26px 26px,#be0707 27px 27px,#be0707 28px 28px,#be0707 29px 29px,#be0707 30px 30px}@media screen and (max-width:480px){.saboxplugin-wrap{text-align:center}.saboxplugin-wrap .saboxplugin-gravatar{float:none;padding:20px 0;text-align:center;margin:0 auto;display:block}.saboxplugin-wrap .saboxplugin-gravatar img{float:none;display:inline-block;display:-moz-inline-stack;vertical-align:middle;zoom:1}.saboxplugin-wrap .saboxplugin-desc{margin:0 10px 20px;text-align:center}.saboxplugin-wrap .saboxplugin-authorname{text-align:center;margin:10px 0 20px}}
js/sabox-hide.js CHANGED
@@ -19,6 +19,11 @@ if (typeof (jQuery) != 'undefined') {
19
  jQuery('#saboxplugin-hide-two').hide( 400 );
20
  }
21
 
 
 
 
 
 
22
 
23
  }
24
  }
19
  jQuery('#saboxplugin-hide-two').hide( 400 );
20
  }
21
 
22
+ if (jQuery('input[id=sab-toggle-15]').is(':checked')) {
23
+ jQuery('#saboxplugin-hide-three').show( 400 );
24
+ } else {
25
+ jQuery('#saboxplugin-hide-three').hide( 400 );
26
+ }
27
 
28
  }
29
  }
js/sabox-slide.js CHANGED
@@ -40,7 +40,7 @@
40
  $(".sabox-amount3").val($(".sabox-slider3").slider( "value" ) + " px" );
41
  });
42
 
43
- jQuery(document).ready(function($){
44
  $(".sabox-slider4").slider({
45
  value: saboxNamesize,
46
  min: 10,
@@ -54,7 +54,7 @@
54
  $(".sabox-amount4").val($(".sabox-slider4").slider( "value" ) + " px" );
55
  });
56
 
57
- jQuery(document).ready(function($){
58
  $(".sabox-slider5").slider({
59
  value: saboxDescsize,
60
  min: 10,
@@ -66,4 +66,18 @@
66
  }
67
  });
68
  $(".sabox-amount5").val($(".sabox-slider5").slider( "value" ) + " px" );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  });
40
  $(".sabox-amount3").val($(".sabox-slider3").slider( "value" ) + " px" );
41
  });
42
 
43
+ jQuery(document).ready(function($){
44
  $(".sabox-slider4").slider({
45
  value: saboxNamesize,
46
  min: 10,
54
  $(".sabox-amount4").val($(".sabox-slider4").slider( "value" ) + " px" );
55
  });
56
 
57
+ jQuery(document).ready(function($){
58
  $(".sabox-slider5").slider({
59
  value: saboxDescsize,
60
  min: 10,
66
  }
67
  });
68
  $(".sabox-amount5").val($(".sabox-slider5").slider( "value" ) + " px" );
69
+ });
70
+
71
+ jQuery(document).ready(function($){
72
+ $(".sabox-slider6").slider({
73
+ value: saboxWebsize,
74
+ min: 10,
75
+ max: 50,
76
+ step: 1,
77
+ slide: function (event, ui) {
78
+ $(".sabox-amount6").val( ui.value + " px" );
79
+ $("#sab_box_web_size").val(ui.value);
80
+ }
81
+ });
82
+ $(".sabox-amount6").val($(".sabox-slider6").slider( "value" ) + " px" );
83
  });
lang/saboxplugin.mo CHANGED
Binary file
lang/saboxplugin.po CHANGED
@@ -2,6 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Content-Type: text/plain; charset=UTF-8\n"
4
  "Content-Transfer-Encoding: 8bit\n"
 
5
  "Project-Id-Version: Simple Author Box\n"
6
  "POT-Creation-Date: \n"
7
  "PO-Revision-Date: \n"
@@ -16,8 +17,8 @@ msgstr ""
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
  #. Text in echo
19
- #: simple-author-box/template/options.php:314
20
- msgid "Arial"
21
  msgstr ""
22
 
23
  #. Text in echo
@@ -26,42 +27,62 @@ msgid "Author avatar image style:"
26
  msgstr ""
27
 
28
  #. Text in echo
29
- #: simple-author-box/template/options.php:307
30
  msgid "Author description font family:"
31
  msgstr ""
32
 
33
  #. Text in echo
34
- #: simple-author-box/template/options.php:380
35
  msgid "Author description font size:"
36
  msgstr ""
37
 
38
  #. Text in echo
39
- #: simple-author-box/template/options.php:421
40
  msgid "Author description font style:"
41
  msgstr ""
42
 
43
  #. Text in echo
44
- #: simple-author-box/template/options.php:210
45
  msgid "Author name color:"
46
  msgstr ""
47
 
48
  #. Text in echo
49
- #: simple-author-box/template/options.php:275
50
  msgid "Author name font family:"
51
  msgstr ""
52
 
53
  #. Text in echo
54
- #: simple-author-box/template/options.php:354
55
  msgid "Author name font size:"
56
  msgstr ""
57
 
58
  #. Text in echo
59
- #: simple-author-box/template/options.php:227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  msgid "Background color of social icons bar:"
61
  msgstr ""
62
 
63
  #. Text in echo
64
- #: simple-author-box/template/options.php:219
65
  msgid "Border color of Simple Author Box:"
66
  msgstr ""
67
 
@@ -72,37 +93,42 @@ msgstr ""
72
 
73
  #. Text in echo
74
  #: simple-author-box/template/options.php:117
75
- #: simple-author-box/template/options.php:150
76
  msgid "Circle"
77
  msgstr ""
78
 
79
  #. Text in echo
80
- #: simple-author-box/template/options.php:206
81
  msgid "Color options"
82
  msgstr ""
83
 
84
  #. Text in echo
85
- #: simple-author-box/template/options.php:138
86
  msgid "Colored"
87
  msgstr ""
88
 
89
  #. Text in echo
90
- #: simple-author-box/template/options.php:385
91
  msgid "Default font size of author description is 14px."
92
  msgstr ""
93
 
94
  #. Text in echo
95
- #: simple-author-box/template/options.php:359
96
  msgid "Default font size of author name is 18px."
97
  msgstr ""
98
 
99
  #. Text in echo
100
- #: simple-author-box/template/options.php:413
 
 
 
 
 
101
  msgid "Default font size of social icons is 18px."
102
  msgstr ""
103
 
104
  #. Text in echo
105
- #: simple-author-box/template/options.php:437
106
  msgid "Disable Font Awesome stylesheet:"
107
  msgstr ""
108
 
@@ -112,32 +138,17 @@ msgid "General options"
112
  msgstr ""
113
 
114
  #. Text in echo
115
- #: simple-author-box/template/options.php:320
116
- msgid "Geneva"
117
- msgstr ""
118
-
119
- #. Text in echo
120
- #: simple-author-box/template/options.php:316
121
- msgid "Georgia"
122
- msgstr ""
123
-
124
- #. Text in echo
125
- #: simple-author-box/template/options.php:254
126
  msgid "Google font characters subset:"
127
  msgstr ""
128
 
129
- #. Text in echo
130
- #: simple-author-box/template/options.php:315
131
- msgid "Helvetica"
132
- msgstr ""
133
-
134
  #. Text in echo
135
  #: simple-author-box/template/options.php:103
136
  msgid "Hide the author box if author description is empty:"
137
  msgstr ""
138
 
139
  #. Text in echo
140
- #: simple-author-box/template/options.php:195
141
  msgid "Hide the social icons on author box:"
142
  msgstr ""
143
 
@@ -149,22 +160,27 @@ msgid ""
149
  msgstr ""
150
 
151
  #. Text in echo
152
- #: simple-author-box/template/options.php:485
153
  msgid "Installed Version:"
154
  msgstr ""
155
 
156
  #. Text in echo
157
- #: simple-author-box/template/options.php:426
158
  msgid "Italic"
159
  msgstr ""
160
 
161
  #. Text in echo
162
- #: simple-author-box/template/options.php:492
163
  msgid "Last Update:"
164
  msgstr ""
165
 
166
  #. Text in echo
167
- #: simple-author-box/template/options.php:449
 
 
 
 
 
168
  msgid "Load generated inline style to footer:"
169
  msgstr ""
170
 
@@ -174,7 +190,7 @@ msgid "Manually insert the Simple Author Box:"
174
  msgstr ""
175
 
176
  #. Text in echo
177
- #: simple-author-box/template/options.php:434
178
  msgid "Miscellaneous options"
179
  msgstr ""
180
 
@@ -182,68 +198,86 @@ msgstr ""
182
  #: simple-author-box/template/options.php:39
183
  #: simple-author-box/template/options.php:108
184
  #: simple-author-box/template/options.php:126
185
- #: simple-author-box/template/options.php:159
186
- #: simple-author-box/template/options.php:168
187
- #: simple-author-box/template/options.php:177
188
- #: simple-author-box/template/options.php:190
189
- #: simple-author-box/template/options.php:200
190
- #: simple-author-box/template/options.php:443
191
- #: simple-author-box/template/options.php:455
 
 
 
192
  msgid "No"
193
  msgstr ""
194
 
195
  #. Text in echo
196
- #: simple-author-box/template/options.php:313
197
  msgid "None"
198
  msgstr ""
199
 
200
  #. Text in echo
201
- #: simple-author-box/template/options.php:426
202
  msgid "Normal"
203
  msgstr ""
204
 
205
  #. Text in echo
206
- #: simple-author-box/template/options.php:185
 
 
 
 
 
207
  msgid "Open social icon links in a new tab:"
208
  msgstr ""
209
 
210
  #. Text in echo
211
- #: simple-author-box/template/options.php:255
212
  msgid "Please note that some Google fonts does not support particular subsets!"
213
  msgstr ""
214
 
 
 
 
 
 
215
  #. Text in echo
216
  #: simple-author-box/template/options.php:121
217
  msgid "Rotate effect on author avatar hover:"
218
  msgstr ""
219
 
220
  #. Text in echo
221
- #: simple-author-box/template/options.php:154
222
  msgid "Rotate effect on social icons hover:"
223
  msgstr ""
224
 
225
  #. Text in echo
226
- #: simple-author-box/template/options.php:172
227
  msgid "Show a thin border on colored social icons:"
228
  msgstr ""
229
 
230
  #. Text in echo
231
- #: simple-author-box/template/options.php:406
 
 
 
 
 
232
  msgid "Size of social icons:"
233
  msgstr ""
234
 
235
  #. Text in echo
236
- #: simple-author-box/template/options.php:236
237
  msgid "Social icons color (for symbols only):"
238
  msgstr ""
239
 
240
  #. Text in echo
241
- #: simple-author-box/template/options.php:145
242
  msgid "Social icons style:"
243
  msgstr ""
244
 
245
  #. Text in echo
246
- #: simple-author-box/template/options.php:132
247
  msgid "Social icons type (colored background or symbols only):"
248
  msgstr ""
249
 
@@ -253,29 +287,24 @@ msgid "Square"
253
  msgstr ""
254
 
255
  #. Text in echo
256
- #: simple-author-box/template/options.php:150
257
  msgid "Squares"
258
  msgstr ""
259
 
260
  #. Text in echo
261
- #: simple-author-box/template/options.php:438
262
  msgid ""
263
  "Switch to \"Yes\" to prevent Font Awesome from loading its stylesheet, ONLY "
264
  "if your theme or another plugin already does."
265
  msgstr ""
266
 
267
  #. Text in echo
268
- #: simple-author-box/template/options.php:138
269
  msgid "Symbols"
270
  msgstr ""
271
 
272
  #. Text in echo
273
- #: simple-author-box/template/options.php:318
274
- msgid "Tahoma"
275
- msgstr ""
276
-
277
- #. Text in echo
278
- #: simple-author-box/template/options.php:450
279
  msgid ""
280
  "This option is useful ONLY if you run a plugin that optimizes your CSS "
281
  "delivery or moves your stylesheets to the footer, to get a higher score on "
@@ -283,41 +312,34 @@ msgid ""
283
  "post and single page."
284
  msgstr ""
285
 
286
- #. Text in echo
287
- #: simple-author-box/template/options.php:317
288
- msgid "Times New Roman"
289
- msgstr ""
290
-
291
  #. Text in echo
292
  #: simple-author-box/template/options.php:66
293
  msgid "Top margin of author box:"
294
  msgstr ""
295
 
296
  #. Text in echo
297
- #: simple-author-box/template/options.php:249
298
  msgid "Typography options"
299
  msgstr ""
300
 
301
  #. Text in echo
302
- #: simple-author-box/template/options.php:163
303
  msgid "Use flat long shadow effect:"
304
  msgstr ""
305
 
306
- #. Text in echo
307
- #: simple-author-box/template/options.php:319
308
- msgid "Verdana"
309
- msgstr ""
310
-
311
  #. Text in echo
312
  #: simple-author-box/template/options.php:39
313
  #: simple-author-box/template/options.php:108
314
  #: simple-author-box/template/options.php:126
315
- #: simple-author-box/template/options.php:159
316
- #: simple-author-box/template/options.php:168
317
- #: simple-author-box/template/options.php:177
318
- #: simple-author-box/template/options.php:190
319
- #: simple-author-box/template/options.php:200
320
- #: simple-author-box/template/options.php:443
321
- #: simple-author-box/template/options.php:455
 
 
 
322
  msgid "Yes"
323
  msgstr ""
2
  msgstr ""
3
  "Content-Type: text/plain; charset=UTF-8\n"
4
  "Content-Transfer-Encoding: 8bit\n"
5
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
6
  "Project-Id-Version: Simple Author Box\n"
7
  "POT-Creation-Date: \n"
8
  "PO-Revision-Date: \n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
  #. Text in echo
20
+ #: simple-author-box/template/options.php:165
21
+ msgid "Add \"nofollow\" attribute on author website link:"
22
  msgstr ""
23
 
24
  #. Text in echo
27
  msgstr ""
28
 
29
  #. Text in echo
30
+ #: simple-author-box/template/options.php:373
31
  msgid "Author description font family:"
32
  msgstr ""
33
 
34
  #. Text in echo
35
+ #: simple-author-box/template/options.php:474
36
  msgid "Author description font size:"
37
  msgstr ""
38
 
39
  #. Text in echo
40
+ #: simple-author-box/template/options.php:515
41
  msgid "Author description font style:"
42
  msgstr ""
43
 
44
  #. Text in echo
45
+ #: simple-author-box/template/options.php:255
46
  msgid "Author name color:"
47
  msgstr ""
48
 
49
  #. Text in echo
50
+ #: simple-author-box/template/options.php:327
51
  msgid "Author name font family:"
52
  msgstr ""
53
 
54
  #. Text in echo
55
+ #: simple-author-box/template/options.php:412
56
  msgid "Author name font size:"
57
  msgstr ""
58
 
59
  #. Text in echo
60
+ #: simple-author-box/template/options.php:350
61
+ msgid "Author website font family:"
62
+ msgstr ""
63
+
64
+ #. Text in echo
65
+ #: simple-author-box/template/options.php:443
66
+ msgid "Author website font size:"
67
+ msgstr ""
68
+
69
+ #. Text in echo
70
+ #: simple-author-box/template/options.php:264
71
+ msgid "Author website link color:"
72
+ msgstr ""
73
+
74
+ #. Text in echo
75
+ #: simple-author-box/template/options.php:145
76
+ msgid "Author website position:"
77
+ msgstr ""
78
+
79
+ #. Text in echo
80
+ #: simple-author-box/template/options.php:281
81
  msgid "Background color of social icons bar:"
82
  msgstr ""
83
 
84
  #. Text in echo
85
+ #: simple-author-box/template/options.php:273
86
  msgid "Border color of Simple Author Box:"
87
  msgstr ""
88
 
93
 
94
  #. Text in echo
95
  #: simple-author-box/template/options.php:117
96
+ #: simple-author-box/template/options.php:195
97
  msgid "Circle"
98
  msgstr ""
99
 
100
  #. Text in echo
101
+ #: simple-author-box/template/options.php:251
102
  msgid "Color options"
103
  msgstr ""
104
 
105
  #. Text in echo
106
+ #: simple-author-box/template/options.php:183
107
  msgid "Colored"
108
  msgstr ""
109
 
110
  #. Text in echo
111
+ #: simple-author-box/template/options.php:479
112
  msgid "Default font size of author description is 14px."
113
  msgstr ""
114
 
115
  #. Text in echo
116
+ #: simple-author-box/template/options.php:417
117
  msgid "Default font size of author name is 18px."
118
  msgstr ""
119
 
120
  #. Text in echo
121
+ #: simple-author-box/template/options.php:448
122
+ msgid "Default font size of author website is 14px."
123
+ msgstr ""
124
+
125
+ #. Text in echo
126
+ #: simple-author-box/template/options.php:507
127
  msgid "Default font size of social icons is 18px."
128
  msgstr ""
129
 
130
  #. Text in echo
131
+ #: simple-author-box/template/options.php:531
132
  msgid "Disable Font Awesome stylesheet:"
133
  msgstr ""
134
 
138
  msgstr ""
139
 
140
  #. Text in echo
141
+ #: simple-author-box/template/options.php:308
 
 
 
 
 
 
 
 
 
 
142
  msgid "Google font characters subset:"
143
  msgstr ""
144
 
 
 
 
 
 
145
  #. Text in echo
146
  #: simple-author-box/template/options.php:103
147
  msgid "Hide the author box if author description is empty:"
148
  msgstr ""
149
 
150
  #. Text in echo
151
+ #: simple-author-box/template/options.php:240
152
  msgid "Hide the social icons on author box:"
153
  msgstr ""
154
 
160
  msgstr ""
161
 
162
  #. Text in echo
163
+ #: simple-author-box/template/options.php:579
164
  msgid "Installed Version:"
165
  msgstr ""
166
 
167
  #. Text in echo
168
+ #: simple-author-box/template/options.php:520
169
  msgid "Italic"
170
  msgstr ""
171
 
172
  #. Text in echo
173
+ #: simple-author-box/template/options.php:586
174
  msgid "Last Update:"
175
  msgstr ""
176
 
177
  #. Text in echo
178
+ #: simple-author-box/template/options.php:150
179
+ msgid "Left"
180
+ msgstr ""
181
+
182
+ #. Text in echo
183
+ #: simple-author-box/template/options.php:543
184
  msgid "Load generated inline style to footer:"
185
  msgstr ""
186
 
190
  msgstr ""
191
 
192
  #. Text in echo
193
+ #: simple-author-box/template/options.php:528
194
  msgid "Miscellaneous options"
195
  msgstr ""
196
 
198
  #: simple-author-box/template/options.php:39
199
  #: simple-author-box/template/options.php:108
200
  #: simple-author-box/template/options.php:126
201
+ #: simple-author-box/template/options.php:138
202
+ #: simple-author-box/template/options.php:160
203
+ #: simple-author-box/template/options.php:170
204
+ #: simple-author-box/template/options.php:204
205
+ #: simple-author-box/template/options.php:213
206
+ #: simple-author-box/template/options.php:222
207
+ #: simple-author-box/template/options.php:235
208
+ #: simple-author-box/template/options.php:245
209
+ #: simple-author-box/template/options.php:537
210
+ #: simple-author-box/template/options.php:549
211
  msgid "No"
212
  msgstr ""
213
 
214
  #. Text in echo
215
+ #: simple-author-box/template/options.php:379
216
  msgid "None"
217
  msgstr ""
218
 
219
  #. Text in echo
220
+ #: simple-author-box/template/options.php:520
221
  msgid "Normal"
222
  msgstr ""
223
 
224
  #. Text in echo
225
+ #: simple-author-box/template/options.php:155
226
+ msgid "Open author website link in a new tab:"
227
+ msgstr ""
228
+
229
+ #. Text in echo
230
+ #: simple-author-box/template/options.php:230
231
  msgid "Open social icon links in a new tab:"
232
  msgstr ""
233
 
234
  #. Text in echo
235
+ #: simple-author-box/template/options.php:309
236
  msgid "Please note that some Google fonts does not support particular subsets!"
237
  msgstr ""
238
 
239
+ #. Text in echo
240
+ #: simple-author-box/template/options.php:150
241
+ msgid "Right"
242
+ msgstr ""
243
+
244
  #. Text in echo
245
  #: simple-author-box/template/options.php:121
246
  msgid "Rotate effect on author avatar hover:"
247
  msgstr ""
248
 
249
  #. Text in echo
250
+ #: simple-author-box/template/options.php:199
251
  msgid "Rotate effect on social icons hover:"
252
  msgstr ""
253
 
254
  #. Text in echo
255
+ #: simple-author-box/template/options.php:217
256
  msgid "Show a thin border on colored social icons:"
257
  msgstr ""
258
 
259
  #. Text in echo
260
+ #: simple-author-box/template/options.php:133
261
+ msgid "Show author website:"
262
+ msgstr ""
263
+
264
+ #. Text in echo
265
+ #: simple-author-box/template/options.php:500
266
  msgid "Size of social icons:"
267
  msgstr ""
268
 
269
  #. Text in echo
270
+ #: simple-author-box/template/options.php:290
271
  msgid "Social icons color (for symbols only):"
272
  msgstr ""
273
 
274
  #. Text in echo
275
+ #: simple-author-box/template/options.php:190
276
  msgid "Social icons style:"
277
  msgstr ""
278
 
279
  #. Text in echo
280
+ #: simple-author-box/template/options.php:177
281
  msgid "Social icons type (colored background or symbols only):"
282
  msgstr ""
283
 
287
  msgstr ""
288
 
289
  #. Text in echo
290
+ #: simple-author-box/template/options.php:195
291
  msgid "Squares"
292
  msgstr ""
293
 
294
  #. Text in echo
295
+ #: simple-author-box/template/options.php:532
296
  msgid ""
297
  "Switch to \"Yes\" to prevent Font Awesome from loading its stylesheet, ONLY "
298
  "if your theme or another plugin already does."
299
  msgstr ""
300
 
301
  #. Text in echo
302
+ #: simple-author-box/template/options.php:183
303
  msgid "Symbols"
304
  msgstr ""
305
 
306
  #. Text in echo
307
+ #: simple-author-box/template/options.php:544
 
 
 
 
 
308
  msgid ""
309
  "This option is useful ONLY if you run a plugin that optimizes your CSS "
310
  "delivery or moves your stylesheets to the footer, to get a higher score on "
312
  "post and single page."
313
  msgstr ""
314
 
 
 
 
 
 
315
  #. Text in echo
316
  #: simple-author-box/template/options.php:66
317
  msgid "Top margin of author box:"
318
  msgstr ""
319
 
320
  #. Text in echo
321
+ #: simple-author-box/template/options.php:303
322
  msgid "Typography options"
323
  msgstr ""
324
 
325
  #. Text in echo
326
+ #: simple-author-box/template/options.php:208
327
  msgid "Use flat long shadow effect:"
328
  msgstr ""
329
 
 
 
 
 
 
330
  #. Text in echo
331
  #: simple-author-box/template/options.php:39
332
  #: simple-author-box/template/options.php:108
333
  #: simple-author-box/template/options.php:126
334
+ #: simple-author-box/template/options.php:138
335
+ #: simple-author-box/template/options.php:160
336
+ #: simple-author-box/template/options.php:170
337
+ #: simple-author-box/template/options.php:204
338
+ #: simple-author-box/template/options.php:213
339
+ #: simple-author-box/template/options.php:222
340
+ #: simple-author-box/template/options.php:235
341
+ #: simple-author-box/template/options.php:245
342
+ #: simple-author-box/template/options.php:537
343
+ #: simple-author-box/template/options.php:549
344
  msgid "Yes"
345
  msgstr ""
lang/saboxplugin.pot CHANGED
@@ -2,6 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Content-Type: text/plain; charset=UTF-8\n"
4
  "Content-Transfer-Encoding: 8bit\n"
 
5
  "Project-Id-Version: Simple Author Box\n"
6
  "POT-Creation-Date: \n"
7
  "PO-Revision-Date: \n"
@@ -16,8 +17,8 @@ msgstr ""
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
  #. Text in echo
19
- #: simple-author-box/template/options.php:314
20
- msgid "Arial"
21
  msgstr ""
22
 
23
  #. Text in echo
@@ -26,42 +27,62 @@ msgid "Author avatar image style:"
26
  msgstr ""
27
 
28
  #. Text in echo
29
- #: simple-author-box/template/options.php:307
30
  msgid "Author description font family:"
31
  msgstr ""
32
 
33
  #. Text in echo
34
- #: simple-author-box/template/options.php:380
35
  msgid "Author description font size:"
36
  msgstr ""
37
 
38
  #. Text in echo
39
- #: simple-author-box/template/options.php:421
40
  msgid "Author description font style:"
41
  msgstr ""
42
 
43
  #. Text in echo
44
- #: simple-author-box/template/options.php:210
45
  msgid "Author name color:"
46
  msgstr ""
47
 
48
  #. Text in echo
49
- #: simple-author-box/template/options.php:275
50
  msgid "Author name font family:"
51
  msgstr ""
52
 
53
  #. Text in echo
54
- #: simple-author-box/template/options.php:354
55
  msgid "Author name font size:"
56
  msgstr ""
57
 
58
  #. Text in echo
59
- #: simple-author-box/template/options.php:227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  msgid "Background color of social icons bar:"
61
  msgstr ""
62
 
63
  #. Text in echo
64
- #: simple-author-box/template/options.php:219
65
  msgid "Border color of Simple Author Box:"
66
  msgstr ""
67
 
@@ -72,37 +93,42 @@ msgstr ""
72
 
73
  #. Text in echo
74
  #: simple-author-box/template/options.php:117
75
- #: simple-author-box/template/options.php:150
76
  msgid "Circle"
77
  msgstr ""
78
 
79
  #. Text in echo
80
- #: simple-author-box/template/options.php:206
81
  msgid "Color options"
82
  msgstr ""
83
 
84
  #. Text in echo
85
- #: simple-author-box/template/options.php:138
86
  msgid "Colored"
87
  msgstr ""
88
 
89
  #. Text in echo
90
- #: simple-author-box/template/options.php:385
91
  msgid "Default font size of author description is 14px."
92
  msgstr ""
93
 
94
  #. Text in echo
95
- #: simple-author-box/template/options.php:359
96
  msgid "Default font size of author name is 18px."
97
  msgstr ""
98
 
99
  #. Text in echo
100
- #: simple-author-box/template/options.php:413
 
 
 
 
 
101
  msgid "Default font size of social icons is 18px."
102
  msgstr ""
103
 
104
  #. Text in echo
105
- #: simple-author-box/template/options.php:437
106
  msgid "Disable Font Awesome stylesheet:"
107
  msgstr ""
108
 
@@ -112,32 +138,17 @@ msgid "General options"
112
  msgstr ""
113
 
114
  #. Text in echo
115
- #: simple-author-box/template/options.php:320
116
- msgid "Geneva"
117
- msgstr ""
118
-
119
- #. Text in echo
120
- #: simple-author-box/template/options.php:316
121
- msgid "Georgia"
122
- msgstr ""
123
-
124
- #. Text in echo
125
- #: simple-author-box/template/options.php:254
126
  msgid "Google font characters subset:"
127
  msgstr ""
128
 
129
- #. Text in echo
130
- #: simple-author-box/template/options.php:315
131
- msgid "Helvetica"
132
- msgstr ""
133
-
134
  #. Text in echo
135
  #: simple-author-box/template/options.php:103
136
  msgid "Hide the author box if author description is empty:"
137
  msgstr ""
138
 
139
  #. Text in echo
140
- #: simple-author-box/template/options.php:195
141
  msgid "Hide the social icons on author box:"
142
  msgstr ""
143
 
@@ -149,22 +160,27 @@ msgid ""
149
  msgstr ""
150
 
151
  #. Text in echo
152
- #: simple-author-box/template/options.php:485
153
  msgid "Installed Version:"
154
  msgstr ""
155
 
156
  #. Text in echo
157
- #: simple-author-box/template/options.php:426
158
  msgid "Italic"
159
  msgstr ""
160
 
161
  #. Text in echo
162
- #: simple-author-box/template/options.php:492
163
  msgid "Last Update:"
164
  msgstr ""
165
 
166
  #. Text in echo
167
- #: simple-author-box/template/options.php:449
 
 
 
 
 
168
  msgid "Load generated inline style to footer:"
169
  msgstr ""
170
 
@@ -174,7 +190,7 @@ msgid "Manually insert the Simple Author Box:"
174
  msgstr ""
175
 
176
  #. Text in echo
177
- #: simple-author-box/template/options.php:434
178
  msgid "Miscellaneous options"
179
  msgstr ""
180
 
@@ -182,68 +198,86 @@ msgstr ""
182
  #: simple-author-box/template/options.php:39
183
  #: simple-author-box/template/options.php:108
184
  #: simple-author-box/template/options.php:126
185
- #: simple-author-box/template/options.php:159
186
- #: simple-author-box/template/options.php:168
187
- #: simple-author-box/template/options.php:177
188
- #: simple-author-box/template/options.php:190
189
- #: simple-author-box/template/options.php:200
190
- #: simple-author-box/template/options.php:443
191
- #: simple-author-box/template/options.php:455
 
 
 
192
  msgid "No"
193
  msgstr ""
194
 
195
  #. Text in echo
196
- #: simple-author-box/template/options.php:313
197
  msgid "None"
198
  msgstr ""
199
 
200
  #. Text in echo
201
- #: simple-author-box/template/options.php:426
202
  msgid "Normal"
203
  msgstr ""
204
 
205
  #. Text in echo
206
- #: simple-author-box/template/options.php:185
 
 
 
 
 
207
  msgid "Open social icon links in a new tab:"
208
  msgstr ""
209
 
210
  #. Text in echo
211
- #: simple-author-box/template/options.php:255
212
  msgid "Please note that some Google fonts does not support particular subsets!"
213
  msgstr ""
214
 
 
 
 
 
 
215
  #. Text in echo
216
  #: simple-author-box/template/options.php:121
217
  msgid "Rotate effect on author avatar hover:"
218
  msgstr ""
219
 
220
  #. Text in echo
221
- #: simple-author-box/template/options.php:154
222
  msgid "Rotate effect on social icons hover:"
223
  msgstr ""
224
 
225
  #. Text in echo
226
- #: simple-author-box/template/options.php:172
227
  msgid "Show a thin border on colored social icons:"
228
  msgstr ""
229
 
230
  #. Text in echo
231
- #: simple-author-box/template/options.php:406
 
 
 
 
 
232
  msgid "Size of social icons:"
233
  msgstr ""
234
 
235
  #. Text in echo
236
- #: simple-author-box/template/options.php:236
237
  msgid "Social icons color (for symbols only):"
238
  msgstr ""
239
 
240
  #. Text in echo
241
- #: simple-author-box/template/options.php:145
242
  msgid "Social icons style:"
243
  msgstr ""
244
 
245
  #. Text in echo
246
- #: simple-author-box/template/options.php:132
247
  msgid "Social icons type (colored background or symbols only):"
248
  msgstr ""
249
 
@@ -253,29 +287,24 @@ msgid "Square"
253
  msgstr ""
254
 
255
  #. Text in echo
256
- #: simple-author-box/template/options.php:150
257
  msgid "Squares"
258
  msgstr ""
259
 
260
  #. Text in echo
261
- #: simple-author-box/template/options.php:438
262
  msgid ""
263
  "Switch to \"Yes\" to prevent Font Awesome from loading its stylesheet, ONLY "
264
  "if your theme or another plugin already does."
265
  msgstr ""
266
 
267
  #. Text in echo
268
- #: simple-author-box/template/options.php:138
269
  msgid "Symbols"
270
  msgstr ""
271
 
272
  #. Text in echo
273
- #: simple-author-box/template/options.php:318
274
- msgid "Tahoma"
275
- msgstr ""
276
-
277
- #. Text in echo
278
- #: simple-author-box/template/options.php:450
279
  msgid ""
280
  "This option is useful ONLY if you run a plugin that optimizes your CSS "
281
  "delivery or moves your stylesheets to the footer, to get a higher score on "
@@ -283,41 +312,34 @@ msgid ""
283
  "post and single page."
284
  msgstr ""
285
 
286
- #. Text in echo
287
- #: simple-author-box/template/options.php:317
288
- msgid "Times New Roman"
289
- msgstr ""
290
-
291
  #. Text in echo
292
  #: simple-author-box/template/options.php:66
293
  msgid "Top margin of author box:"
294
  msgstr ""
295
 
296
  #. Text in echo
297
- #: simple-author-box/template/options.php:249
298
  msgid "Typography options"
299
  msgstr ""
300
 
301
  #. Text in echo
302
- #: simple-author-box/template/options.php:163
303
  msgid "Use flat long shadow effect:"
304
  msgstr ""
305
 
306
- #. Text in echo
307
- #: simple-author-box/template/options.php:319
308
- msgid "Verdana"
309
- msgstr ""
310
-
311
  #. Text in echo
312
  #: simple-author-box/template/options.php:39
313
  #: simple-author-box/template/options.php:108
314
  #: simple-author-box/template/options.php:126
315
- #: simple-author-box/template/options.php:159
316
- #: simple-author-box/template/options.php:168
317
- #: simple-author-box/template/options.php:177
318
- #: simple-author-box/template/options.php:190
319
- #: simple-author-box/template/options.php:200
320
- #: simple-author-box/template/options.php:443
321
- #: simple-author-box/template/options.php:455
 
 
 
322
  msgid "Yes"
323
  msgstr ""
2
  msgstr ""
3
  "Content-Type: text/plain; charset=UTF-8\n"
4
  "Content-Transfer-Encoding: 8bit\n"
5
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
6
  "Project-Id-Version: Simple Author Box\n"
7
  "POT-Creation-Date: \n"
8
  "PO-Revision-Date: \n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
  #. Text in echo
20
+ #: simple-author-box/template/options.php:165
21
+ msgid "Add \"nofollow\" attribute on author website link:"
22
  msgstr ""
23
 
24
  #. Text in echo
27
  msgstr ""
28
 
29
  #. Text in echo
30
+ #: simple-author-box/template/options.php:373
31
  msgid "Author description font family:"
32
  msgstr ""
33
 
34
  #. Text in echo
35
+ #: simple-author-box/template/options.php:474
36
  msgid "Author description font size:"
37
  msgstr ""
38
 
39
  #. Text in echo
40
+ #: simple-author-box/template/options.php:515
41
  msgid "Author description font style:"
42
  msgstr ""
43
 
44
  #. Text in echo
45
+ #: simple-author-box/template/options.php:255
46
  msgid "Author name color:"
47
  msgstr ""
48
 
49
  #. Text in echo
50
+ #: simple-author-box/template/options.php:327
51
  msgid "Author name font family:"
52
  msgstr ""
53
 
54
  #. Text in echo
55
+ #: simple-author-box/template/options.php:412
56
  msgid "Author name font size:"
57
  msgstr ""
58
 
59
  #. Text in echo
60
+ #: simple-author-box/template/options.php:350
61
+ msgid "Author website font family:"
62
+ msgstr ""
63
+
64
+ #. Text in echo
65
+ #: simple-author-box/template/options.php:443
66
+ msgid "Author website font size:"
67
+ msgstr ""
68
+
69
+ #. Text in echo
70
+ #: simple-author-box/template/options.php:264
71
+ msgid "Author website link color:"
72
+ msgstr ""
73
+
74
+ #. Text in echo
75
+ #: simple-author-box/template/options.php:145
76
+ msgid "Author website position:"
77
+ msgstr ""
78
+
79
+ #. Text in echo
80
+ #: simple-author-box/template/options.php:281
81
  msgid "Background color of social icons bar:"
82
  msgstr ""
83
 
84
  #. Text in echo
85
+ #: simple-author-box/template/options.php:273
86
  msgid "Border color of Simple Author Box:"
87
  msgstr ""
88
 
93
 
94
  #. Text in echo
95
  #: simple-author-box/template/options.php:117
96
+ #: simple-author-box/template/options.php:195
97
  msgid "Circle"
98
  msgstr ""
99
 
100
  #. Text in echo
101
+ #: simple-author-box/template/options.php:251
102
  msgid "Color options"
103
  msgstr ""
104
 
105
  #. Text in echo
106
+ #: simple-author-box/template/options.php:183
107
  msgid "Colored"
108
  msgstr ""
109
 
110
  #. Text in echo
111
+ #: simple-author-box/template/options.php:479
112
  msgid "Default font size of author description is 14px."
113
  msgstr ""
114
 
115
  #. Text in echo
116
+ #: simple-author-box/template/options.php:417
117
  msgid "Default font size of author name is 18px."
118
  msgstr ""
119
 
120
  #. Text in echo
121
+ #: simple-author-box/template/options.php:448
122
+ msgid "Default font size of author website is 14px."
123
+ msgstr ""
124
+
125
+ #. Text in echo
126
+ #: simple-author-box/template/options.php:507
127
  msgid "Default font size of social icons is 18px."
128
  msgstr ""
129
 
130
  #. Text in echo
131
+ #: simple-author-box/template/options.php:531
132
  msgid "Disable Font Awesome stylesheet:"
133
  msgstr ""
134
 
138
  msgstr ""
139
 
140
  #. Text in echo
141
+ #: simple-author-box/template/options.php:308
 
 
 
 
 
 
 
 
 
 
142
  msgid "Google font characters subset:"
143
  msgstr ""
144
 
 
 
 
 
 
145
  #. Text in echo
146
  #: simple-author-box/template/options.php:103
147
  msgid "Hide the author box if author description is empty:"
148
  msgstr ""
149
 
150
  #. Text in echo
151
+ #: simple-author-box/template/options.php:240
152
  msgid "Hide the social icons on author box:"
153
  msgstr ""
154
 
160
  msgstr ""
161
 
162
  #. Text in echo
163
+ #: simple-author-box/template/options.php:579
164
  msgid "Installed Version:"
165
  msgstr ""
166
 
167
  #. Text in echo
168
+ #: simple-author-box/template/options.php:520
169
  msgid "Italic"
170
  msgstr ""
171
 
172
  #. Text in echo
173
+ #: simple-author-box/template/options.php:586
174
  msgid "Last Update:"
175
  msgstr ""
176
 
177
  #. Text in echo
178
+ #: simple-author-box/template/options.php:150
179
+ msgid "Left"
180
+ msgstr ""
181
+
182
+ #. Text in echo
183
+ #: simple-author-box/template/options.php:543
184
  msgid "Load generated inline style to footer:"
185
  msgstr ""
186
 
190
  msgstr ""
191
 
192
  #. Text in echo
193
+ #: simple-author-box/template/options.php:528
194
  msgid "Miscellaneous options"
195
  msgstr ""
196
 
198
  #: simple-author-box/template/options.php:39
199
  #: simple-author-box/template/options.php:108
200
  #: simple-author-box/template/options.php:126
201
+ #: simple-author-box/template/options.php:138
202
+ #: simple-author-box/template/options.php:160
203
+ #: simple-author-box/template/options.php:170
204
+ #: simple-author-box/template/options.php:204
205
+ #: simple-author-box/template/options.php:213
206
+ #: simple-author-box/template/options.php:222
207
+ #: simple-author-box/template/options.php:235
208
+ #: simple-author-box/template/options.php:245
209
+ #: simple-author-box/template/options.php:537
210
+ #: simple-author-box/template/options.php:549
211
  msgid "No"
212
  msgstr ""
213
 
214
  #. Text in echo
215
+ #: simple-author-box/template/options.php:379
216
  msgid "None"
217
  msgstr ""
218
 
219
  #. Text in echo
220
+ #: simple-author-box/template/options.php:520
221
  msgid "Normal"
222
  msgstr ""
223
 
224
  #. Text in echo
225
+ #: simple-author-box/template/options.php:155
226
+ msgid "Open author website link in a new tab:"
227
+ msgstr ""
228
+
229
+ #. Text in echo
230
+ #: simple-author-box/template/options.php:230
231
  msgid "Open social icon links in a new tab:"
232
  msgstr ""
233
 
234
  #. Text in echo
235
+ #: simple-author-box/template/options.php:309
236
  msgid "Please note that some Google fonts does not support particular subsets!"
237
  msgstr ""
238
 
239
+ #. Text in echo
240
+ #: simple-author-box/template/options.php:150
241
+ msgid "Right"
242
+ msgstr ""
243
+
244
  #. Text in echo
245
  #: simple-author-box/template/options.php:121
246
  msgid "Rotate effect on author avatar hover:"
247
  msgstr ""
248
 
249
  #. Text in echo
250
+ #: simple-author-box/template/options.php:199
251
  msgid "Rotate effect on social icons hover:"
252
  msgstr ""
253
 
254
  #. Text in echo
255
+ #: simple-author-box/template/options.php:217
256
  msgid "Show a thin border on colored social icons:"
257
  msgstr ""
258
 
259
  #. Text in echo
260
+ #: simple-author-box/template/options.php:133
261
+ msgid "Show author website:"
262
+ msgstr ""
263
+
264
+ #. Text in echo
265
+ #: simple-author-box/template/options.php:500
266
  msgid "Size of social icons:"
267
  msgstr ""
268
 
269
  #. Text in echo
270
+ #: simple-author-box/template/options.php:290
271
  msgid "Social icons color (for symbols only):"
272
  msgstr ""
273
 
274
  #. Text in echo
275
+ #: simple-author-box/template/options.php:190
276
  msgid "Social icons style:"
277
  msgstr ""
278
 
279
  #. Text in echo
280
+ #: simple-author-box/template/options.php:177
281
  msgid "Social icons type (colored background or symbols only):"
282
  msgstr ""
283
 
287
  msgstr ""
288
 
289
  #. Text in echo
290
+ #: simple-author-box/template/options.php:195
291
  msgid "Squares"
292
  msgstr ""
293
 
294
  #. Text in echo
295
+ #: simple-author-box/template/options.php:532
296
  msgid ""
297
  "Switch to \"Yes\" to prevent Font Awesome from loading its stylesheet, ONLY "
298
  "if your theme or another plugin already does."
299
  msgstr ""
300
 
301
  #. Text in echo
302
+ #: simple-author-box/template/options.php:183
303
  msgid "Symbols"
304
  msgstr ""
305
 
306
  #. Text in echo
307
+ #: simple-author-box/template/options.php:544
 
 
 
 
 
308
  msgid ""
309
  "This option is useful ONLY if you run a plugin that optimizes your CSS "
310
  "delivery or moves your stylesheets to the footer, to get a higher score on "
312
  "post and single page."
313
  msgstr ""
314
 
 
 
 
 
 
315
  #. Text in echo
316
  #: simple-author-box/template/options.php:66
317
  msgid "Top margin of author box:"
318
  msgstr ""
319
 
320
  #. Text in echo
321
+ #: simple-author-box/template/options.php:303
322
  msgid "Typography options"
323
  msgstr ""
324
 
325
  #. Text in echo
326
+ #: simple-author-box/template/options.php:208
327
  msgid "Use flat long shadow effect:"
328
  msgstr ""
329
 
 
 
 
 
 
330
  #. Text in echo
331
  #: simple-author-box/template/options.php:39
332
  #: simple-author-box/template/options.php:108
333
  #: simple-author-box/template/options.php:126
334
+ #: simple-author-box/template/options.php:138
335
+ #: simple-author-box/template/options.php:160
336
+ #: simple-author-box/template/options.php:170
337
+ #: simple-author-box/template/options.php:204
338
+ #: simple-author-box/template/options.php:213
339
+ #: simple-author-box/template/options.php:222
340
+ #: simple-author-box/template/options.php:235
341
+ #: simple-author-box/template/options.php:245
342
+ #: simple-author-box/template/options.php:537
343
+ #: simple-author-box/template/options.php:549
344
  msgid "Yes"
345
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: author box, responsive author box, author profile fields, author social icons, profile fields, author bio, author description, author profile, user profile, post author, rtl author box
5
  Requires at least: 3.6
6
  Tested up to: 3.9.1
7
- Stable tag: 1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -14,13 +14,13 @@ Adds a cool responsive author box with social icons on your posts.
14
 
15
  **Simple Author Box** adds a responsive author box at the end of your posts, showing the author name, author gravatar and author description. It also adds over 30 social profile fields on WordPress user profile screen, allowing to display the author social icons.
16
 
17
- = Features =
18
 
19
- * Author gravatar, author name, author description and social icons
20
  * Fully customizable to match your theme design (style, color, size and text options)
21
  * Nice looking on desktop, laptop, tablet or mobile phones
22
  * Automatically insert the author box at the end of your post
23
- * Option to manually insert the author box on your template file (single post)
24
  * Simple Author Box has RTL support
25
 
26
  Want to see an [online demo?](http://tiguandesign.com/demos/plugins/simple-author-box/)
@@ -50,10 +50,17 @@ If you need more info, please read the plugin [documentation](http://tiguandesig
50
  11. Simple Author Box - Responsive view 1
51
  12. Simple Author Box - Responsive view 2
52
  13. Simple Author Box - Responsive view 3
53
- 14. Plugin options page, simple view (v1.0)
54
 
55
  == Changelog ==
56
 
 
 
 
 
 
 
 
57
  = 1.1 =
58
  * Removed AIM, Yahoo, and Jabber Fields from the WordPress Profile Page.
59
 
4
  Tags: author box, responsive author box, author profile fields, author social icons, profile fields, author bio, author description, author profile, user profile, post author, rtl author box
5
  Requires at least: 3.6
6
  Tested up to: 3.9.1
7
+ Stable tag: 1.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
14
 
15
  **Simple Author Box** adds a responsive author box at the end of your posts, showing the author name, author gravatar and author description. It also adds over 30 social profile fields on WordPress user profile screen, allowing to display the author social icons.
16
 
17
+ = Main Features =
18
 
19
+ * Shows author gravatar, name, website, description and social icons
20
  * Fully customizable to match your theme design (style, color, size and text options)
21
  * Nice looking on desktop, laptop, tablet or mobile phones
22
  * Automatically insert the author box at the end of your post
23
+ * Option to manually insert the author box on your template file (single.php or author.php)
24
  * Simple Author Box has RTL support
25
 
26
  Want to see an [online demo?](http://tiguandesign.com/demos/plugins/simple-author-box/)
50
  11. Simple Author Box - Responsive view 1
51
  12. Simple Author Box - Responsive view 2
52
  13. Simple Author Box - Responsive view 3
53
+ 14. Plugin options page, simple view (v1.2)
54
 
55
  == Changelog ==
56
 
57
+ = 1.2 =
58
+ * Added author website option, fully configurable.
59
+ * Added the ability to manually insert the author box on author.php or archive.php.
60
+ * Added two more conditionals to load plugin CSS when need it.
61
+ * Fixed some visual appearance of admin options in Google Chrome.
62
+ * Updated translation with the new strings.
63
+
64
  = 1.1 =
65
  * Removed AIM, Yahoo, and Jabber Fields from the WordPress Profile Page.
66
 
simple-author-box.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Simple Author Box
4
  * Plugin URI: http://wordpress.org/plugins/simple-author-box/
5
  * Description: Adds a responsive author box with social icons on your posts.
6
- * Version: 1.1
7
  * Author: Tiguan
8
  * Author URI: http://tiguandesign.com
9
  * License: GPLv2
@@ -45,10 +45,10 @@ if( !class_exists( 'Simple_Author_Box' ) ) {
45
  global $options;
46
 
47
  $options = get_option( 'saboxplugin_options', 'checked' ); // retrieve the plugin settings from the options table
48
- define( 'SIMPLE_AUTHOR_BOX_LAST_UPDATE', date_i18n( 'F j, Y', '1407567600' ) ); // Defining plugin last update
49
  define( 'SIMPLE_AUTHOR_BOX_PATH', plugin_dir_path( __FILE__ ) ); // Defining plugin dir path
50
  define( 'SIMPLE_AUTHOR_BOX_DIRNAME', basename( dirname( __FILE__ ) ) ); // Defining plugin dir name
51
- define( 'SIMPLE_AUTHOR_BOX_VERSION', 'v1.1'); // Defining plugin version
52
  define( 'SIMPLE_AUTHOR_BOX', 'Simple Author Box'); // Defining plugin name
53
  define( 'SIMPLE_AUTHOR_BOX_FOOTER', 10 );
54
 
@@ -115,9 +115,11 @@ if( !class_exists( 'Simple_Author_Box' ) ) {
115
  register_setting( 'sabox_plugin', 'sab_box_margin_bottom' );
116
  register_setting( 'sabox_plugin', 'sab_box_icon_size' );
117
  register_setting( 'sabox_plugin', 'sab_box_name_size' );
 
118
  register_setting( 'sabox_plugin', 'sab_box_name_font' );
119
  register_setting( 'sabox_plugin', 'sab_box_subset' );
120
  register_setting( 'sabox_plugin', 'sab_box_desc_font' );
 
121
  register_setting( 'sabox_plugin', 'sab_box_desc_size' );
122
  }
123
 
@@ -128,7 +130,7 @@ if( !class_exists( 'Simple_Author_Box' ) ) {
128
 
129
  public function saboxplugin_author_box_style() {
130
 
131
- if( !is_single() and !is_page() ) {
132
  return;
133
  }
134
 
@@ -148,6 +150,12 @@ if( !class_exists( 'Simple_Author_Box' ) ) {
148
 
149
  public function saboxplugin_author_box_font() {
150
 
 
 
 
 
 
 
151
  $sab_protocol = is_ssl() ? 'https' : 'http';
152
 
153
  if ( get_option( 'sab_box_subset' ) != 'None' ) {
@@ -160,13 +168,19 @@ if( !class_exists( 'Simple_Author_Box' ) ) {
160
 
161
  $sab_author_font = get_option( 'sab_box_name_font' );
162
  $sab_desc_font = get_option( 'sab_box_desc_font' );
 
163
 
164
  if ( get_option( 'sab_box_name_font' ) != 'none' ) {
165
  wp_enqueue_style( 'sab-author-name-font', $sab_protocol . '://fonts.googleapis.com/css?family='.str_replace(' ', '+', $sab_author_font).':400,700,400italic,700italic'.$sab_subset, array(), null );
166
  }
 
167
  if ( get_option( 'sab_box_desc_font' ) != 'none' ) {
168
  wp_enqueue_style( 'sab-author-desc-font', $sab_protocol . '://fonts.googleapis.com/css?family='.str_replace(' ', '+', $sab_desc_font).':400,700,400italic,700italic'.$sab_subset, array(), null );
169
  }
 
 
 
 
170
  }
171
 
172
 
@@ -176,15 +190,19 @@ if( !class_exists( 'Simple_Author_Box' ) ) {
176
 
177
  public function saboxplugin_author_box_inline_style() {
178
 
 
 
 
 
179
  global $options;
180
 
181
- if ( isset( $options['sab_autoinsert'] ) and get_option( 'sab_box_margin_top' ) ) {
182
  $sabox_top_margin = get_option( 'sab_box_margin_top' );
183
  } else {
184
  $sabox_top_margin = 0;
185
  }
186
 
187
- if ( isset( $options['sab_autoinsert'] ) and get_option( 'sab_box_margin_bottom' ) ) {
188
  $sabox_bottom_margin = get_option( 'sab_box_margin_bottom' );
189
  } else {
190
  $sabox_bottom_margin = 0;
@@ -196,6 +214,11 @@ if( !class_exists( 'Simple_Author_Box' ) ) {
196
  $sabox_name_size = 18;
197
  }
198
 
 
 
 
 
 
199
 
200
  if ( get_option( 'sab_box_desc_size' ) ) {
201
  $sabox_desc_size = get_option( 'sab_box_desc_size' );
@@ -254,16 +277,30 @@ if( !class_exists( 'Simple_Author_Box' ) ) {
254
  if( isset( $options['sab_box_author_color'] ) and !empty( $options['sab_box_author_color'] ) ) {
255
  $style .= '.saboxplugin-wrap .saboxplugin-authorname a {color:'. esc_html( $options['sab_box_author_color'] ) .';}';
256
  }
 
 
 
 
 
 
257
  // Author name font family
258
  if ( get_option( 'sab_box_name_font' ) != 'none' ) {
259
  $author_name_font = get_option( 'sab_box_name_font' );
260
  $style .= '.saboxplugin-wrap .saboxplugin-authorname {font-family:"'. esc_html( $author_name_font ) .'";}';
261
  }
 
262
  // Author description font family
263
  if ( get_option( 'sab_box_desc_font' ) != 'none' ) {
264
  $author_desc_font = get_option( 'sab_box_desc_font' );
265
  $style .= '.saboxplugin-wrap .saboxplugin-desc {font-family:'. esc_html( $author_desc_font ) .';}';
266
  }
 
 
 
 
 
 
 
267
  // Author description font style
268
  if( isset( $options['sab_desc_style'] ) ) {
269
  $style .= '.saboxplugin-wrap .saboxplugin-desc {font-style:italic;}';
@@ -276,6 +313,8 @@ if( !class_exists( 'Simple_Author_Box' ) ) {
276
  $style .= '.saboxplugin-wrap .saboxplugin-authorname {font-size:'. absint( $sabox_name_size ) . 'px;}';
277
  // Author description font size
278
  $style .= '.saboxplugin-wrap .saboxplugin-desc {font-size:'. absint( $sabox_desc_size ) . 'px;}';
 
 
279
  // Icons size
280
  $style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color {font-size:'. absint( $sabox_icon_size+3 ) . 'px;}';
281
  $style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before {width:'. absint( $sabox_icon_size+$sabox_icon_size ) . 'px; height:'. absint( $sabox_icon_size+$sabox_icon_size ) . 'px; line-height:'. absint( $sabox_icon_size+$sabox_icon_size+1 ) . 'px; }';
3
  * Plugin Name: Simple Author Box
4
  * Plugin URI: http://wordpress.org/plugins/simple-author-box/
5
  * Description: Adds a responsive author box with social icons on your posts.
6
+ * Version: 1.2
7
  * Author: Tiguan
8
  * Author URI: http://tiguandesign.com
9
  * License: GPLv2
45
  global $options;
46
 
47
  $options = get_option( 'saboxplugin_options', 'checked' ); // retrieve the plugin settings from the options table
48
+ define( 'SIMPLE_AUTHOR_BOX_LAST_UPDATE', date_i18n( 'F j, Y', '1407740400' ) ); // Defining plugin last update
49
  define( 'SIMPLE_AUTHOR_BOX_PATH', plugin_dir_path( __FILE__ ) ); // Defining plugin dir path
50
  define( 'SIMPLE_AUTHOR_BOX_DIRNAME', basename( dirname( __FILE__ ) ) ); // Defining plugin dir name
51
+ define( 'SIMPLE_AUTHOR_BOX_VERSION', 'v1.2'); // Defining plugin version
52
  define( 'SIMPLE_AUTHOR_BOX', 'Simple Author Box'); // Defining plugin name
53
  define( 'SIMPLE_AUTHOR_BOX_FOOTER', 10 );
54
 
115
  register_setting( 'sabox_plugin', 'sab_box_margin_bottom' );
116
  register_setting( 'sabox_plugin', 'sab_box_icon_size' );
117
  register_setting( 'sabox_plugin', 'sab_box_name_size' );
118
+ register_setting( 'sabox_plugin', 'sab_box_web_size' );
119
  register_setting( 'sabox_plugin', 'sab_box_name_font' );
120
  register_setting( 'sabox_plugin', 'sab_box_subset' );
121
  register_setting( 'sabox_plugin', 'sab_box_desc_font' );
122
+ register_setting( 'sabox_plugin', 'sab_box_web_font' );
123
  register_setting( 'sabox_plugin', 'sab_box_desc_size' );
124
  }
125
 
130
 
131
  public function saboxplugin_author_box_style() {
132
 
133
+ if( !is_single() and !is_page() and !is_author() and !is_archive() ) {
134
  return;
135
  }
136
 
150
 
151
  public function saboxplugin_author_box_font() {
152
 
153
+ if( !is_single() and !is_page() and !is_author() and !is_archive() ) {
154
+ return;
155
+ }
156
+
157
+ global $options;
158
+
159
  $sab_protocol = is_ssl() ? 'https' : 'http';
160
 
161
  if ( get_option( 'sab_box_subset' ) != 'None' ) {
168
 
169
  $sab_author_font = get_option( 'sab_box_name_font' );
170
  $sab_desc_font = get_option( 'sab_box_desc_font' );
171
+ $sab_web_font = get_option( 'sab_box_web_font' );
172
 
173
  if ( get_option( 'sab_box_name_font' ) != 'none' ) {
174
  wp_enqueue_style( 'sab-author-name-font', $sab_protocol . '://fonts.googleapis.com/css?family='.str_replace(' ', '+', $sab_author_font).':400,700,400italic,700italic'.$sab_subset, array(), null );
175
  }
176
+
177
  if ( get_option( 'sab_box_desc_font' ) != 'none' ) {
178
  wp_enqueue_style( 'sab-author-desc-font', $sab_protocol . '://fonts.googleapis.com/css?family='.str_replace(' ', '+', $sab_desc_font).':400,700,400italic,700italic'.$sab_subset, array(), null );
179
  }
180
+
181
+ if ( isset( $options['sab_web'] ) and get_option( 'sab_box_web_font' ) != 'none' ) {
182
+ wp_enqueue_style( 'sab-author-web-font', $sab_protocol . '://fonts.googleapis.com/css?family='.str_replace(' ', '+', $sab_web_font).':400,700,400italic,700italic'.$sab_subset, array(), null );
183
+ }
184
  }
185
 
186
 
190
 
191
  public function saboxplugin_author_box_inline_style() {
192
 
193
+ if( !is_single() and !is_page() and !is_author() and !is_archive() ) {
194
+ return;
195
+ }
196
+
197
  global $options;
198
 
199
+ if ( get_option( 'sab_box_margin_top' ) ) {
200
  $sabox_top_margin = get_option( 'sab_box_margin_top' );
201
  } else {
202
  $sabox_top_margin = 0;
203
  }
204
 
205
+ if ( get_option( 'sab_box_margin_bottom' ) ) {
206
  $sabox_bottom_margin = get_option( 'sab_box_margin_bottom' );
207
  } else {
208
  $sabox_bottom_margin = 0;
214
  $sabox_name_size = 18;
215
  }
216
 
217
+ if ( isset( $options['sab_web'] ) and get_option( 'sab_box_web_size' ) ) {
218
+ $sabox_web_size = get_option( 'sab_box_web_size' );
219
+ } else {
220
+ $sabox_web_size = 14;
221
+ }
222
 
223
  if ( get_option( 'sab_box_desc_size' ) ) {
224
  $sabox_desc_size = get_option( 'sab_box_desc_size' );
277
  if( isset( $options['sab_box_author_color'] ) and !empty( $options['sab_box_author_color'] ) ) {
278
  $style .= '.saboxplugin-wrap .saboxplugin-authorname a {color:'. esc_html( $options['sab_box_author_color'] ) .';}';
279
  }
280
+
281
+ // Author web color
282
+ if( isset( $options['sab_web'] ) and isset( $options['sab_box_web_color'] ) and !empty( $options['sab_box_web_color'] ) ) {
283
+ $style .= '.saboxplugin-wrap .saboxplugin-web a {color:'. esc_html( $options['sab_box_web_color'] ) .';}';
284
+ }
285
+
286
  // Author name font family
287
  if ( get_option( 'sab_box_name_font' ) != 'none' ) {
288
  $author_name_font = get_option( 'sab_box_name_font' );
289
  $style .= '.saboxplugin-wrap .saboxplugin-authorname {font-family:"'. esc_html( $author_name_font ) .'";}';
290
  }
291
+
292
  // Author description font family
293
  if ( get_option( 'sab_box_desc_font' ) != 'none' ) {
294
  $author_desc_font = get_option( 'sab_box_desc_font' );
295
  $style .= '.saboxplugin-wrap .saboxplugin-desc {font-family:'. esc_html( $author_desc_font ) .';}';
296
  }
297
+
298
+ // Author web font family
299
+ if ( isset( $options['sab_web'] ) and get_option( 'sab_box_web_font' ) != 'none' ) {
300
+ $author_web_font = get_option( 'sab_box_web_font' );
301
+ $style .= '.saboxplugin-wrap .saboxplugin-web {font-family:"'. esc_html( $author_web_font ) .'";}';
302
+ }
303
+
304
  // Author description font style
305
  if( isset( $options['sab_desc_style'] ) ) {
306
  $style .= '.saboxplugin-wrap .saboxplugin-desc {font-style:italic;}';
313
  $style .= '.saboxplugin-wrap .saboxplugin-authorname {font-size:'. absint( $sabox_name_size ) . 'px;}';
314
  // Author description font size
315
  $style .= '.saboxplugin-wrap .saboxplugin-desc {font-size:'. absint( $sabox_desc_size ) . 'px;}';
316
+ // Author website text size
317
+ $style .= '.saboxplugin-wrap .saboxplugin-web {font-size:'. absint( $sabox_web_size ) . 'px;}';
318
  // Icons size
319
  $style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color {font-size:'. absint( $sabox_icon_size+3 ) . 'px;}';
320
  $style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before {width:'. absint( $sabox_icon_size+$sabox_icon_size ) . 'px; height:'. absint( $sabox_icon_size+$sabox_icon_size ) . 'px; line-height:'. absint( $sabox_icon_size+$sabox_icon_size+1 ) . 'px; }';
template/options.php CHANGED
@@ -128,6 +128,51 @@
128
 
129
  <div class="saboxplugin-border"></div>
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  <div class="saboxplugin-question">
132
  <label for="saboxplugin_options[sab_colored]"><?php _e( 'Social icons type (colored background or symbols only):', 'saboxplugin' ); ?></label>
133
  </div>
@@ -215,6 +260,15 @@
215
  <input type="text" name="saboxplugin_options[sab_box_author_color]" id="saboxplugin_options[sab_box_author_color]" class="saboxplugin-color-picker" value="<?php echo $sab_author_color; ?>" />
216
  </div>
217
 
 
 
 
 
 
 
 
 
 
218
  <div class="saboxplugin-question">
219
  <label for="saboxplugin_options[sab_box_border]"><?php _e( 'Border color of Simple Author Box:', 'saboxplugin' ); ?></label>
220
  </div>
@@ -269,8 +323,6 @@
269
 
270
  <div class="saboxplugin-border"></div>
271
 
272
-
273
-
274
  <div class="saboxplugin-question">
275
  <label for="sab_box_name_font"><?php _e( 'Author name font family:', 'saboxplugin' ); ?></label>
276
  </div>
@@ -292,9 +344,31 @@
292
  </div>
293
 
294
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  <div class="saboxplugin-border"></div>
296
 
297
 
 
298
  <div class="saboxplugin-question">
299
  <label for="sab_box_desc_font"><?php _e( 'Author description font family:', 'saboxplugin' ); ?></label>
300
  </div>
@@ -343,8 +417,44 @@
343
  <p class="description"><?php _e( 'Default font size of author name is 18px.', 'saboxplugin' ); ?></p>
344
  </div>
345
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
346
  <div class="saboxplugin-border"></div>
347
 
 
 
 
 
 
348
  <?php
349
  if ( get_option( 'sab_box_desc_size' ) ) {
350
  $sabox_desc_size = get_option( 'sab_box_desc_size' );
128
 
129
  <div class="saboxplugin-border"></div>
130
 
131
+
132
+ <div class="saboxplugin-question">
133
+ <label for="saboxplugin_options[sab_web]"><?php _e( 'Show author website:', 'saboxplugin' ); ?></label>
134
+ </div>
135
+
136
+ <div class="saboxplugin-switch">
137
+ <input id="sab-toggle-15" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_web]" value="1" <?php checked( 1, isset( $options['sab_web'] ) ); ?> />
138
+ <label for="sab-toggle-15" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
139
+ </div>
140
+
141
+
142
+ <div id="saboxplugin-hide-three">
143
+
144
+ <div class="saboxplugin-question">
145
+ <label for="saboxplugin_options[sab_web_position]"><?php _e( 'Author website position:', 'saboxplugin' ); ?></label>
146
+ </div>
147
+
148
+ <div class="saboxplugin-switch">
149
+ <input id="sab-toggle-16" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_web_position]" value="1" <?php checked( 1, isset( $options['sab_web_position'] ) ); ?> />
150
+ <label for="sab-toggle-16" data-on=<?php _e( 'Right', 'saboxplugin' ); ?> data-off=<?php _e( 'Left', 'saboxplugin' ); ?>></label>
151
+ </div>
152
+
153
+
154
+ <div class="saboxplugin-question">
155
+ <label for="saboxplugin_options[sab_web_target]"><?php _e( 'Open author website link in a new tab:', 'saboxplugin' ); ?></label>
156
+ </div>
157
+
158
+ <div class="saboxplugin-switch">
159
+ <input id="sab-toggle-17" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_web_target]" value="1" <?php checked( 1, isset( $options['sab_web_target'] ) ); ?> />
160
+ <label for="sab-toggle-17" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
161
+ </div>
162
+
163
+
164
+ <div class="saboxplugin-question">
165
+ <label for="saboxplugin_options[sab_web_rel]"><?php _e( 'Add "nofollow" attribute on author website link:', 'saboxplugin' ); ?></label>
166
+ </div>
167
+
168
+ <div class="saboxplugin-switch">
169
+ <input id="sab-toggle-18" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_web_rel]" value="1" <?php checked( 1, isset( $options['sab_web_rel'] ) ); ?> />
170
+ <label for="sab-toggle-18" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
171
+ </div>
172
+
173
+ <div class="saboxplugin-border"></div>
174
+ </div> <!-- end hide three -->
175
+
176
  <div class="saboxplugin-question">
177
  <label for="saboxplugin_options[sab_colored]"><?php _e( 'Social icons type (colored background or symbols only):', 'saboxplugin' ); ?></label>
178
  </div>
260
  <input type="text" name="saboxplugin_options[sab_box_author_color]" id="saboxplugin_options[sab_box_author_color]" class="saboxplugin-color-picker" value="<?php echo $sab_author_color; ?>" />
261
  </div>
262
 
263
+ <div class="saboxplugin-question">
264
+ <label for="saboxplugin_options[sab_box_web_color]"><?php _e( 'Author website link color:', 'saboxplugin' ); ?></label>
265
+ </div>
266
+ <div class="saboxplugin-switch">
267
+ <?php $sab_web_color = ( isset( $options['sab_box_web_color'] ) ) ? $options['sab_box_web_color'] : ''; ?>
268
+ <input type="text" name="saboxplugin_options[sab_box_web_color]" id="saboxplugin_options[sab_box_web_color]" class="saboxplugin-color-picker" value="<?php echo $sab_web_color; ?>" />
269
+ </div>
270
+
271
+
272
  <div class="saboxplugin-question">
273
  <label for="saboxplugin_options[sab_box_border]"><?php _e( 'Border color of Simple Author Box:', 'saboxplugin' ); ?></label>
274
  </div>
323
 
324
  <div class="saboxplugin-border"></div>
325
 
 
 
326
  <div class="saboxplugin-question">
327
  <label for="sab_box_name_font"><?php _e( 'Author name font family:', 'saboxplugin' ); ?></label>
328
  </div>
344
  </div>
345
 
346
 
347
+ <div class="saboxplugin-border"></div>
348
+
349
+ <div class="saboxplugin-question">
350
+ <label for="sab_box_web_font"><?php _e( 'Author website font family:', 'saboxplugin' ); ?></label>
351
+ </div>
352
+
353
+ <div class="saboxplugin-switch">
354
+ <select name="sab_box_web_font" id="sab_box_web_font" class="sab_box_web_font">
355
+ <option value="none"><?php _e('None', 'saboxplugin'); ?></option>
356
+ <?php
357
+
358
+ // Listing Google fonts from the array.
359
+ foreach ($sabox_google_fonts as $sabox_font) {
360
+ echo '<option value="' . $sabox_font . '"' . selected ($sabox_font, get_option('sab_box_web_font')) . '>' . $sabox_font . '</option>' . "\n";
361
+ }
362
+
363
+ ?>
364
+ </select>
365
+
366
+ </div>
367
+
368
  <div class="saboxplugin-border"></div>
369
 
370
 
371
+
372
  <div class="saboxplugin-question">
373
  <label for="sab_box_desc_font"><?php _e( 'Author description font family:', 'saboxplugin' ); ?></label>
374
  </div>
417
  <p class="description"><?php _e( 'Default font size of author name is 18px.', 'saboxplugin' ); ?></p>
418
  </div>
419
 
420
+
421
+
422
+
423
+
424
+ <div class="saboxplugin-border"></div>
425
+
426
+
427
+ <?php
428
+ if ( get_option( 'sab_box_web_size' ) ) {
429
+ $sabox_web_size = get_option( 'sab_box_web_size' );
430
+ } else {
431
+ $sabox_web_size = 14;
432
+ }
433
+ ?>
434
+
435
+ <script type='text/javascript'>
436
+ var saboxWebsize = '<?php echo $sabox_web_size; ?>';
437
+ </script>
438
+
439
+
440
+ <div class="sabox-inline-slide">
441
+
442
+ <div class="saboxplugin-question">
443
+ <label for="saboxplugin_options[sab_box_web_size]"><?php _e( 'Author website font size:', 'saboxplugin' ); ?><input type="text" class="sabox-amount6" id="sabox-amount6" /></label>
444
+ </div>
445
+
446
+ <div class="sabox-slider6" id="sabox-slider6"><p></p></div>
447
+ <input type="hidden" name="sab_box_web_size" id="sab_box_web_size" value="<?php echo $sabox_web_size; ?>" />
448
+ <p class="description"><?php _e( 'Default font size of author website is 14px.', 'saboxplugin' ); ?></p>
449
+ </div>
450
+
451
  <div class="saboxplugin-border"></div>
452
 
453
+
454
+
455
+
456
+
457
+
458
  <?php
459
  if ( get_option( 'sab_box_desc_size' ) ) {
460
  $sabox_desc_size = get_option( 'sab_box_desc_size' );
uninstall.php CHANGED
@@ -21,4 +21,6 @@ delete_option( 'saboxplugin_options' );
21
  // delete_option( 'sab_box_name_font' );
22
  // delete_option( 'sab_box_subset' );
23
  // delete_option( 'sab_box_desc_font' );
24
- // delete_option( 'sab_box_desc_size' );
 
 
21
  // delete_option( 'sab_box_name_font' );
22
  // delete_option( 'sab_box_subset' );
23
  // delete_option( 'sab_box_desc_font' );
24
+ // delete_option( 'sab_box_desc_size' );
25
+ // delete_option( 'sab_box_desc_font' );
26
+ // delete_option( 'sab_box_web_size' );