Advertisement
hunterthemes

PROFILE WIDGET CSS

May 2nd, 2018
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 KB | None | 0 0
  1. PASTE THE FOLLOWING UNDER <style type="text/css">
  2.  
  3.  
  4. /*-- PROFILE WIDGET BY HUNTER THEMES --*/
  5.  
  6. #pw_profile {
  7. position:fixed;
  8. top:{text:Profile widget top position};
  9. left:{text:Profile widget left position};
  10. width:290px;
  11. height:auto;
  12. font-family:{font:Profile widget font};
  13. z-index:1000;
  14. }
  15.  
  16. #pw_profile b {
  17. color:{color:PW icon};
  18. }
  19.  
  20. /* Titles */
  21.  
  22. .pw_atitle, .pw_ltitle, .pw_utitle {
  23. margin-top:12px;
  24. margin-left:30px;
  25. width:165px;
  26. height:20px;
  27. line-height:20px;
  28. padding:5px;
  29. padding-left:25px;
  30. font-size:15px;
  31. color:{color:PW title};
  32. background:{color:PW title background};
  33. cursor:pointer;
  34. }
  35.  
  36. /* Rombs */
  37.  
  38. .pw_aromb, .pw_lromb, .pw_uromb, .pw_sromb {
  39. position:absolute;
  40. margin-left:-49px;
  41. margin-top:-5px;
  42. width:28px;
  43. height:28px;
  44. line-height:30px;
  45. text-align:center;
  46. background:{color:PW title romb background};
  47. border:1px solid {color:PW title background};
  48. -webkit-transform: rotate(0deg);
  49. -ms-transform: rotate(0deg);
  50. transform: rotate(0deg);
  51. transition: .1s ease-in-out;
  52. }
  53.  
  54. .pw_rotate {
  55. -webkit-transform: rotate(45deg);
  56. -ms-transform: rotate(45deg);
  57. transform: rotate(45deg);
  58. margin-top:-6px;
  59. width:30px;
  60. height:30px;
  61. }
  62.  
  63. /* Icons */
  64.  
  65. .pw_aromb i, .pw_lromb i, .pw_uromb i, .pw_sromb i {
  66. color:{color:PW icon};
  67. width:30px;
  68. height:30px;
  69. line-height:30px;
  70. font-size:15px;
  71. }
  72.  
  73. .pw_rotate2 {
  74. transform: rotate(315deg);
  75. }
  76.  
  77. .pw_rotate2 i {
  78. color:{color:PW title background};
  79. }
  80.  
  81. /*-- About --*/
  82.  
  83. #pw_about {
  84. margin-top:15px;
  85. margin-left:35px;
  86. width:170px;
  87. height:auto;
  88. padding:10px;
  89. font-size:13px;
  90. line-height:18px;
  91. color:{color:PW about text};
  92. background:{color:PW about background};
  93. display:none;
  94. }
  95.  
  96. /*-- Links --*/
  97.  
  98. #pw_links {
  99. margin-top:0px;
  100. margin-left:22px;
  101. width:190px;
  102. height:auto;
  103. padding:5px 0;
  104. overflow:hidden;
  105. display:none;
  106. }
  107.  
  108. #pw_links a {
  109. display:block;
  110. margin-top:15px;
  111. margin-left:23px;
  112. width:142px;
  113. height:15px;
  114. padding:5px;
  115. padding-left:20px;
  116. line-height:15px;
  117. font-size:13px;
  118. color:{color:PW link};
  119. background:{color:PW link background};
  120. text-decoration:none;
  121. transition:.3s ease-in-out;
  122. }
  123.  
  124. #pw_links a:nth-child(2n+0) {
  125. margin-left:50px;
  126. }
  127.  
  128. #pw_links a::before {
  129. content:'';
  130. float:left;
  131. margin-top:-5px;
  132. margin-left:-38px;
  133. width:25px;
  134. height:25px;
  135. background:{color:PW link romb background};
  136. -webkit-transform: rotate(45deg);
  137. -ms-transform: rotate(45deg);
  138. transform: rotate(45deg);
  139. }
  140.  
  141. #pw_links a:hover {
  142. color:{color:PW link hover};
  143. background:{color:PW title background};
  144. }
  145.  
  146. /*-- Updates tab --*/
  147.  
  148. #pw_updates {
  149. margin-top:15px;
  150. margin-left:35px;
  151. width:170px;
  152. height:auto;
  153. padding:10px;
  154. font-size:13px;
  155. line-height:18px;
  156. color:{color:PW about text};
  157. background:{color:PW about background};
  158. display:none;
  159. }
  160.  
  161. /*-- Search box --*/
  162.  
  163. #pw_search {
  164. margin-top:12px;
  165. margin-bottom:12px;
  166. margin-left:30px;
  167. width:165px;
  168. height:20px;
  169. line-height:20px;
  170. padding:5px;
  171. padding-left:25px;
  172. font-size:15px;
  173. background:{color:PW title background};
  174. }
  175.  
  176. #pw_search input::-webkit-input-placeholder {
  177. font-size:15px;
  178. font-family:{font:Profile widget font};
  179. color:{color:PW title};
  180. }
  181.  
  182. #pw_search input::-moz-placeholder {
  183. font-size:15px;
  184. font-family:{font:Profile widget font};
  185. color:{color:PW title};
  186. }
  187.  
  188. #pw_search input:-moz-placeholder {
  189. font-size:15px;
  190. font-family:{font:Profile widget font};
  191. color:{color:PW title};
  192. }
  193.  
  194. #pw_search input:-ms-input-placeholder {
  195. font-size:15px;
  196. font-family:{font:Profile widget font};
  197. color:{color:PW title};
  198. }
  199.  
  200. input, textarea, select, a { outline: none; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement