Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
1,649
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.29 KB | None | 0 0
  1. [style]
  2. //Make sure you have permission to display the images you want to use. More on Art Theft and Permissions here http://pfq.link/~TrV
  3. //Change your avatar. Max dimensions are 100x100.
  4. .pic {background-image: url("https://pokefarm.com/upload/DrWho/espeonavatar.png");}
  5.  
  6. //Change your cover. Width is 310px.
  7. .cover {background-image: url("https://pokefarm.com/upload/DrWho/espeonheader.gif");}
  8.  
  9. //Adjust height of your cover image
  10. .cover:hover {height: 181px;}
  11. [/style]
  12. [styleclass=frame][styleclass=cover][/styleclass][styleclass=bar][/styleclass][styleclass=pic][/styleclass]
  13.  
  14.  
  15. [styleclass=name]Username[/styleclass]
  16.  
  17.  
  18. [styleclass=home][h3]Home[/h3]
  19. This is your homepage. Click the tabs above to explore.
  20.  
  21. [b]bold[/b] [i]italic[/i] [url=https://pokefarm.com]link[/url] [pit=pit]text[/pit]
  22.  
  23. [img]https://pfq-static.com/img/pkmn/7/5/n.png[/img]
  24. Image[/styleclass]
  25.  
  26.  
  27. [styleclass=content]
  28. [styleclass=one][pit=one][h3]Title One[/h3]Text One[/pit][/styleclass]
  29.  
  30. [styleclass=two][pit=two][h3]Title Two[/h3]Text Two[/pit][/styleclass]
  31.  
  32. [styleclass=three][pit=three][h3]Title Three[/h3]Text Three[/pit][/styleclass]
  33.  
  34. [styleclass=four][pit=four][h3]Title Four[/h3]Official art from the Pokémon anime, manga and games used.[/pit][/styleclass]
  35.  
  36.  
  37. [/styleclass]
  38. [styleclass=x][url=http://pfq.link/~7MLY][styleclass=linktoforum]♥ code[/styleclass][/url][/styleclass]
  39. [/styleclass]
  40.  
  41.  
  42. [style]
  43. //Color change starts here.
  44. //Change Colors. All changes must conform with the legibility guidelines. http://pfq.link/~pJQ4
  45. @outerBGColor: #3d395e;
  46. @linesColor: #fff;
  47. @linesBorder: 1px dashed #847aa4; //enter 'none' for no border
  48.  
  49. @nameColor: #fff;
  50.  
  51. @contentBGColor: #bcaaf4;
  52. @contentTextColor: #4f4369;
  53. @contentLinkColor: #616eba;
  54. @tabBGColorOdd: #847aa4;
  55. @tabBGColorEven: #b4aac4;
  56. @fontFamily: Georgia, Geneva, sans-serif;
  57.  
  58. @heartColor: #fff;
  59. //Color change ends here.
  60.  
  61.  
  62. //More Height - increase equally
  63. @contentHeight: 345px;
  64. @frameHeight: 515px; //contentHeight +170px;
  65.  
  66.  
  67. //------------------------------
  68. //Mosty layout stuff below here.
  69. //You are free to edit anything you want, no matter how small or big your changes are. You are free to use this as a base. You are free to inspect this and see if you find anything useful for your own projects. You don't have to credit me.
  70. //Homepage
  71. .home {
  72. position: absolute;
  73. top: 145px;
  74. left: 9px;
  75. border:none;
  76. border-radius: 0px;
  77. height: @contentHeight;
  78. width: 288px;
  79. border-radius: none;
  80. background-color: @contentBGColor;
  81. padding: 10px 2px 2px 2px;
  82. text-align: center;
  83. font-family: @fontFamily;
  84. color: @contentTextColor;
  85. overflow: hidden;
  86. font-size: 12px;
  87. }
  88.  
  89. //Tabs
  90. .content {
  91. position: absolute;
  92. top: 115px;
  93. left: 153px;
  94. height: 30px;
  95. width: 148px;
  96. }
  97. .one,.two,.three,.four {
  98. position: absolute;
  99. height: 100%;
  100. width: 25%;
  101. top: 0px;
  102. text-align: center;
  103. line-height: 30px;
  104. border-bottom: none;
  105. font-size: 12px;
  106. text-decoration: underline;
  107. font-family: @fontFamily;
  108. color: @contentTextColor;
  109. }
  110. .two {left: 25%;}
  111. .three {left: 50%;}
  112. .four {left: 75%;}
  113. .one > .bbcode_tooltip, .two > .bbcode_tooltip, .three > .bbcode_tooltip, .four > .bbcode_tooltip {
  114. border-bottom: none;
  115. color: @contentTextColor;
  116. }
  117. .content > div:nth-of-type(odd) {background-color: @tabBGColorOdd;}
  118. .content > div:nth-of-type(even) {background-color: @tabBGColorEven;}
  119. .one {border-top-left-radius: 50%;}
  120. .four {border-top-right-radius: 50%}
  121.  
  122. //Content
  123. .one > .tooltip_content, .two > .tooltip_content, .three > .tooltip_content, .four > .tooltip_content {
  124. position: absolute;
  125. top: 30px;
  126. border:none;
  127. border-radius: 0px;
  128. height: @contentHeight;
  129. width: 288px;
  130. border-radius: none;
  131. background-color: @contentBGColor;
  132. padding: 10px 2px 2px 2px;
  133. text-align: center;
  134. font-family: @fontFamily;
  135. color: @contentTextColor;
  136. overflow: hidden;
  137. font-size: 12px;
  138. }
  139. .one > .tooltip_content {
  140. left: -144px;
  141. }
  142. .two > .tooltip_content {
  143. left: -181px;
  144. }
  145. .three > .tooltip_content {
  146. left: -218px;
  147. }
  148. .four > .tooltip_content {
  149. left: -255px;
  150. }
  151.  
  152. //Frame, General
  153. .frame {
  154. height: @frameHeight; //@contentHeight + 170px;
  155. width: 310px;
  156. position: relative;
  157. background-color: @outerBGColor;
  158.  
  159. }
  160. a {
  161. color: @contentLinkColor;
  162. font-weight: bold;
  163. text-decoration: underline;
  164. }
  165.  
  166. //Cover
  167. .cover {
  168. height: 100px;
  169. width: 100%;
  170. position: absolute;
  171. top:0px;
  172. left:0px;
  173. background-color: @outerBGColor;
  174. opacity: 0.4;
  175. transition: height 0.4s, opacity 0.4s, top 0.4s, opacity 0.4s;
  176. -webkit-transition: height 0.4s, opacity 0.4s, top 0.4s, opacity 0.4s;
  177. -o-transition: height 0.4s, opacity 0.4s, top 0.4s, opacity 0.4s;
  178. -moz-transition: height 0.4s, opacity 0.4s, top 0.4s, opacity 0.4s;
  179. }
  180. .cover:hover {
  181. z-index: 99;
  182. opacity: 1;
  183. box-shadow: 0 5px 5px rgba(0,0,0,0.75);
  184.  
  185. }
  186. .cover:hover ~ .bar {top:200px; height:0px;}
  187. .cover:hover ~ .pic {top: 130px;}
  188. .cover:hover ~ .name {top: 176px;}
  189.  
  190.  
  191. //Bar
  192. .bar {
  193. height: 7px;
  194. width: 100%;
  195. position: absolute;
  196. top: 100px;
  197. background-color: @linesColor;
  198. border: @linesBorder;
  199. transition: top 0.4s, height 0.4s;
  200. }
  201.  
  202. //Avatar
  203. .pic {
  204. height: 100px;
  205. width: 100px;
  206. border: 6px solid @linesColor;
  207. border-radius: 100%;
  208. position: absolute;
  209. top: 30px;
  210. left: 26.5px;
  211. background-repeat: no-repeat;
  212. background-position: center;
  213. background-color: @outerBGColor;
  214. transition: top 0.4s;
  215. }
  216.  
  217. //Username
  218. .name {
  219. font-size: 20px;
  220. font-family: @fontFamily;
  221. color: @nameColor;
  222. position: absolute;
  223. top: 76px;
  224. left: 146px;
  225. transition: top 0.4s;
  226. }
  227.  
  228.  
  229. //Heart
  230. .x {font-size: 10px; font-family: @fontFamily; position: absolute; bottom: 1.5px; right: 9px; height: 11px; width: 11px; line-height: 11px; overflow: hidden; text-align: center; letter-spacing: 1px;
  231. transition: width 0.4s, right 0.4s, background-color 0.4s, right 0.4s;
  232. }
  233. .x a {
  234. color: @heartColor;
  235. text-decoration: none;
  236. font-weight: normal;
  237. }
  238. .x:hover {
  239. width: 45px;
  240. background-color: @heartColor;
  241. }
  242. .x:hover a{
  243. color: @outerBGColor;
  244. }
  245. [/style]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement