Advertisement
hunterthemes

- Updates tab base #1 (customized)

Dec 23rd, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. /*-- U P D A T E S T A B B A S E B Y H U N T E R T H E M E S (customized) --*/
  2.  
  3.  
  4. PASTE THIS UNDER <style type="text/css">
  5.  
  6. /* Main box */
  7.  
  8. #updatestab{
  9. position:fixed;
  10. top:40px;
  11. left:40px;
  12. width:125px;
  13. height:25px;
  14. padding:5px;
  15. padding-bottom:7px;
  16. overflow:hidden;
  17. cursor:pointer;
  18. background:#f1f1f1;
  19. border-radius:3px;
  20. border:1px solid #eee;
  21. /* Content text style */
  22. font-size:12px;
  23. line-height:5px;
  24. text-align:center;
  25. color:#222;
  26. }
  27.  
  28. /* Main box style on hover */
  29.  
  30. #updatestab:hover{
  31. height:auto;
  32. }
  33.  
  34. /* Updates title */
  35.  
  36. #updatestab h1{
  37. margin:-5px;
  38. color:#444;
  39. background:#BAE1FF;
  40. font-size:17px;
  41. height:36px;
  42. line-height:36px;
  43. border-bottom:1px solid #eee;
  44. }
  45.  
  46. /* Title of the content */
  47.  
  48. #updatestab h2{
  49. color:#FFB3BA;
  50. font-size:15px;
  51. line-height:17px;
  52. padding:5px;
  53. }
  54.  
  55. /* Line break */
  56.  
  57. #updatestab hr{
  58. height:1px;
  59. border:0px;
  60. border-bottom:1px solid #ddd;
  61. }
  62.  
  63.  
  64.  
  65. PASTE THIS UNDER <body>
  66.  
  67.  
  68. <div id="updatestab">
  69.  
  70. <h1>Updates</h1>
  71.  
  72. <h2>Title 1</h2>
  73.  
  74. Add text here
  75.  
  76. <hr>
  77.  
  78. <h2>Title 2</h2>
  79.  
  80. Add text here
  81.  
  82. <hr>
  83.  
  84. <h2>Title 3</h2>
  85.  
  86. Add text here
  87.  
  88. </div>
  89. <!--End updatestab-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement