Advertisement
SethWolfbaine

Furvilla guide?

Aug 30th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. THIS IS THE PAGE BACKGROUND
  2. .content:after {
  3. background:url("URL") repeat;
  4. position: fixed;
  5. width:100%;
  6. height:100%;
  7. bottom:0;
  8. top:0;
  9. z-index:-1
  10. }
  11.  
  12. THIS IS YOUR ABOUT SECTION (outer)
  13. <style>
  14. .villager-data-info-wide {
  15. background:url("URL");
  16. padding:20px;
  17. border:5px double HEX NUMBER HERE;
  18. border-radius:25px;
  19. text-align:center;
  20. color:HEX NUMBER HERE (outline)
  21. }
  22.  
  23. THIS IS THE STATS BOX (outline of inner about box)
  24. .villager-data-info {
  25. background:url("URL");
  26. padding:10px;
  27. border:5px double #4fb2ee;(outline of inner about box)
  28. border-radius:25px;
  29. text-align:center;
  30. color:HEX NUMBER HERE
  31. }
  32.  
  33. THIS IS YOUR STATS LINK COLOUR
  34. .villager-data-info a {
  35. color:HEX NUMBER HERE
  36. }
  37.  
  38. THIS IS WHAT GOES IN THE BACKGROUND BEHIND YOUR VILLAGER
  39. .content {
  40. background:url("URL");
  41. color:HEX NUMBER HERE;
  42. text-align:center;
  43. background-image:url("URL");
  44. background-repeat:repeat;
  45. background-position:top
  46. }
  47.  
  48. THIS IS IF YOU WANT TO PUT YOUR VILLAGER IN A COLOURED BOX
  49. .villager-data-wrapper {
  50. background:none;
  51. }
  52.  
  53. THIS IS THE COMMENT BOX
  54. .textarea {
  55. color: HEX NUMBER HERE;
  56. background:url("URL");
  57. border-top-left-radius: 0;
  58. border-top-right-radius: 0;
  59. border-bottom-left-radius: 7px;
  60. border-bottom-right-radius: 7px;
  61. border-width: 4px;
  62. border-color:transparent; (adds border to your comment box)
  63. border-top-style: none;
  64. border-left-style: double;
  65. border-right-style: double;
  66. border-bottom-style: double;
  67. box-shadow: 4px 4px 0 -2px rgba(0,0,0,0.3);
  68. }
  69. .user-comments .user-comment .footer {
  70. background:url("URL");
  71. border-top: 2px solid HEX NUMBER HERE; (this is others' comments)
  72. }
  73. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement