Advertisement
oftenwrongthemes

Updates Tab #4

Jul 12th, 2016
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. *****THIS PART GOES AFTER <STYLE TYPE="TEXT/CSS">********
  2.  
  3. .star {
  4. font-size: 45px;
  5. font-family: sans-serif;
  6. font-weight: bold;
  7. text-transform: uppercase;
  8. color: #737B98;
  9. position: absolute;
  10. top: 10px;
  11. left: 20px;
  12. right 0px;
  13. transition-duration: 1s;
  14. -webkit-transition-duration: 1s;
  15. -moz-transition-duration: 1s;
  16. -o-transition-duration: 1s;
  17. transition-delay: 0.5s;
  18. -webkit-transition-delay: 0.5s;
  19. -moz-transition-delay: 0.5s;
  20. -o-transition-delay: 0.5s;
  21. }
  22.  
  23. .star:hover {
  24. transform: rotate(360deg);
  25. -moz-transform: rotate(360deg);
  26. -webkit-transform: rotate(360deg);
  27. left: 150px;
  28. transition-delay: 0s;
  29. -webkit-transition-delay: 0s;
  30. -moz-transition-delay: 0s;
  31. -o-transition-delay: 0s;
  32. }
  33.  
  34. .box {
  35. overflow: hidden;
  36. background: #eee;
  37. height: 0px;
  38. width: 0px;
  39. position: absolute;
  40. right: 20px;
  41. top: 30px;
  42. z-index: -1;
  43. font-size: 11px;
  44. text-transform: none;
  45. font-weight: normal;
  46. color: #333;
  47. transition-duration: 0.5s;
  48. -webkit-transition-duration: 0.5s;
  49. -moz-transition-duration: 0.5s;
  50. -o-transition-duration: 0.5s;
  51. transition-delay: 0s;
  52. -webkit-transition-delay: 0s;
  53. -moz-transition-delay: 0s;
  54. -o-transition-delay: 0s;
  55. }
  56.  
  57. .star:hover .box {
  58. width: 130px;
  59. padding: 10px;
  60. height: 210px;
  61. transition-delay: 1s;
  62. -webkit-transition-delay: 1s;
  63. -moz-transition-delay: 1s;
  64. -o-transition-delay: 1s;
  65. }
  66.  
  67.  
  68.  
  69.  
  70.  
  71. ****THIS PART GOES AFTER <BODY>*******
  72.  
  73. <div class="star">&#9733;
  74. <div class="box">
  75. This is the text of your updates tab. You can put anything you want in here, and adjust the height to your liking.
  76. <p />
  77. You can make new paragraphs, you can <b>bold</b> and <i>italacize</i> text, and even <u>underline</u> things!
  78. <p />
  79. Technically you can put as much text as you want in here, as long as the box doesn't expand off the screen!
  80. </div>
  81. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement