Advertisement
hunterthemes

- Updates tab base #1 (basic)

Dec 23rd, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 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 (basic) --*/
  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:#fff;
  19. border-radius:0px;
  20. border:1px solid #ddd;
  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:#222;
  39. background:#fff;
  40. font-size:17px;
  41. height:36px;
  42. line-height:36px;
  43. border-bottom:1px solid #ddd;
  44. }
  45.  
  46. /* Title of the content */
  47.  
  48. #updatestab h2{
  49. color:#222;
  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. PASTE THIS UNDER <body>
  65.  
  66.  
  67. <div id="updatestab">
  68.  
  69. <h1>Updates</h1>
  70.  
  71. <h2>Title 1</h2>
  72.  
  73. Add text here
  74.  
  75. <hr>
  76.  
  77. <h2>Title 2</h2>
  78.  
  79. Add text here
  80.  
  81. <hr>
  82.  
  83. <h2>Title 3</h2>
  84.  
  85. Add text here
  86.  
  87. </div>
  88. <!--End updatestab-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement