Advertisement
Guest User

wp-content1

a guest
Nov 22nd, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.40 KB | None | 0 0
  1. /*-----------------------------------------------------------------------------------*/
  2. /* PopUp Base
  3. /*-----------------------------------------------------------------------------------*/
  4.  
  5. #fblikepop{
  6. display:none;
  7. position:fixed;
  8. _position:absolute; /* hack for IE 6*/
  9. width:450px;
  10. border:8px solid #353535;
  11. z-index:9999;
  12. -moz-border-radius:8px;
  13. -webkit-border-radius:8px;
  14. border-radius:8px;
  15. margin:0pt;
  16. padding:0pt;
  17. color:#333333;
  18. text-align:left;
  19. font-family:arial,sans-serif !important;
  20. font-size:13px;
  21. }
  22.  
  23.  
  24. #fblikepop body{
  25. background:#fff !important;
  26. line-height:1;
  27. margin:0pt;
  28. height:100%;
  29. }
  30.  
  31. .fbflush:hover{
  32. color:#000 !important;
  33. }
  34.  
  35. #fblikebg{
  36. display:none;
  37. position:fixed;
  38. _position:absolute; /* hack for IE 6*/
  39. height:100%;
  40. width:100%;
  41. top:0;
  42. left:0;
  43. background:#000000;
  44. z-index:9998;
  45. }
  46.  
  47. /*-----------------------------------------------------------------------------------*/
  48. /* Title
  49. /*-----------------------------------------------------------------------------------*/
  50.  
  51. #fblikepop h1{
  52. background:#6D84B4 none repeat scroll 0 0 !important;
  53. border:1px solid #3c5492 !important;
  54. color:#FFFFFF !important;
  55. font-size:14px !important;
  56. font-weight:normal !important;
  57. padding:6px 5px !important;
  58. margin:0 !important;
  59. font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
  60. clear:none!important;
  61. }
  62.  
  63. /*-----------------------------------------------------------------------------------*/
  64. /* Popup Message
  65. /*-----------------------------------------------------------------------------------*/
  66.  
  67. #fblikepop #popupMessage{
  68. font-size:12px !important;
  69. font-weight:normal !important;
  70. line-height:22px;
  71. padding:8px;
  72. background:#fff !important;
  73. }
  74.  
  75. /*-----------------------------------------------------------------------------------*/
  76. /* Close Button Area
  77. /*-----------------------------------------------------------------------------------*/
  78.  
  79. #fblikepopClose{
  80. line-height:14px;
  81. right:6px;
  82. top:4px;
  83. position:absolute;
  84. display:block;
  85. }
  86.  
  87. .fbflush{
  88. cursor: pointer;
  89. font-size:11px;
  90. color:#FFFFFF !important;
  91. border:0px !important;
  92. text-decoration:none !important;
  93. }
  94.  
  95. #fblikepop #closeable{
  96. float:right;
  97. margin:6px 15px 0 0;
  98. }
  99.  
  100. /*-----------------------------------------------------------------------------------*/
  101. /* Popup Bottom
  102. /*-----------------------------------------------------------------------------------*/
  103.  
  104. #fblikepop #buttonArea{
  105. background:#F2F2F2;
  106. border-top:1px solid #CCCCCC;
  107. padding:9px;
  108. min-height:50px;
  109. }
  110.  
  111. #fblikepop #counter-display a{
  112. color:#999999 !important;
  113. border-bottom:none !important;
  114. text-decoration:none !important;
  115. font-size:11px !important;
  116. }
  117.  
  118. #fblikepop #counter-display a:hover{
  119. color:#333 !important;
  120. text-decoration:none !important;
  121. }
  122.  
  123. #fblikepop #counter-display{
  124. clear:both;
  125. float:right;
  126. font-size:12px !important;
  127. font-weight:normal !important;
  128. margin:5px 0 0 0;
  129. text-align:right;
  130. line-height:16px;
  131. }
  132.  
  133. /*-----------------------------------------------------------------------------------*/
  134. /* Buttons
  135. /*-----------------------------------------------------------------------------------*/
  136.  
  137. .fbtp-social-button{
  138. float:left;
  139. }
  140.  
  141. .fbtp-social-button.share{ width:auto; margin:0 6px 0 0; }
  142. .fbtp-social-button.like{ width:300px; }
  143.  
  144. /* Box Count Styles */
  145. .fbtp-social-button.share.box_count{
  146. padding:39px 0 0 0;
  147. }
  148.  
  149. /* Button Count Styles */
  150. .fbtp-social-button.share.button_count .fbtp-share{
  151. padding:4px 4px 3px !important;
  152. }
  153.  
  154. .fbtp-share{
  155. float:left;
  156. padding:6px 6px 5px;
  157. font-size:11px !important;
  158. font-family:'lucida grande',tahoma,verdana,arial,sans-serif !important;
  159. text-decoration:none !important;
  160. -webkit-border-radius: 3px;
  161. -moz-border-radius: 3px;
  162. border-radius: 3px;
  163. }
  164.  
  165. .fbtp-share span{
  166. padding:1px 0 0 17px;
  167. }
  168.  
  169. /* Light Theme */
  170. .fbtp-share.light{
  171. background-color:#eceef6;
  172. border:1px solid #cad4e7;
  173. color:#3b5998 !important;
  174. }
  175. .fbtp-share.light span{ background:url(../../images/share-btn.png) 0px 0px no-repeat transparent; }
  176. .fbtp-share.light:hover{ border:1px solid #9dacce; }
  177.  
  178. /* Dark Theme */
  179. .fbtp-share.dark{
  180. background-color:#c7c7c7;
  181. border:1px solid #999;
  182. color:#333 !important;
  183. }
  184. .fbtp-share.dark span{ background:url(../../images/share-btn.png) 0px -13px no-repeat transparent; }
  185. .fbtp-share.dark:hover{ border:1px solid #ddd; background-color:#d9d9d9; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement