Advertisement
almighty-bini

updates tab 01

Jun 13th, 2014
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. /* THE FOLLOWING CODES GO IN THE <style></style> SECTION */
  2.  
  3.  
  4.  
  5. /* update tab by almighty-bini
  6. used codes: "accordion with css by mary lou"
  7. http://tympanus.net/codrops/2012/02/21/accordion-with-css3/
  8.  
  9. please do not remove this part. thanks. */
  10.  
  11. .updates {
  12. position: fixed;
  13. left: 20px;
  14. bottom: 20px;
  15. font-family: "trebuchet ms";
  16. text-transform: uppercase;
  17. text-align: left;
  18. font-size: 9px;
  19. color: white;
  20. width: 160px;
  21. height: 100px;}
  22.  
  23. .updates article {
  24. width: 160px;
  25. overflow: auto;
  26. height: 0px;
  27. position: absolute;
  28. z-index: 10;
  29. margin-top: 12px;}
  30. .updates article p {padding: 5px; margin: 0px; color: white;}
  31. .updates input:checked ~ article.ac{height: 80px;}
  32.  
  33. .updates label {
  34. padding: 0px 3px;
  35. position: relative;
  36. z-index: 20;
  37. display: block;
  38. float: left;
  39. line-height: 12px;
  40.  
  41. -webkit-border-top-left-radius: 5px;
  42. -webkit-border-top-right-radius: 5px;
  43. -moz-border-radius-topleft: 5px;
  44. -moz-border-radius-topright: 5px;
  45. border-top-left-radius: 5px;
  46. border-top-right-radius: 5px;}
  47. .updates input {display: none;}
  48.  
  49. .updates article::-webkit-scrollbar {width: 5px; height: 5px;}
  50. .updates article::-webkit-scrollbar-thumb {background: transparent; border: 1px solid white;}
  51.  
  52. /* CSS PART END */
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87. /* THE FOLLOWING CODES GO IN THE <body></body> SECTION */
  88.  
  89. <section class="updates">
  90. <div>
  91. <input id="bx-1" name="box-1" type="radio" checked />
  92. <label for="bx-1" style="background: red;"><a title="&copy; almighty-bini">Updates</a></label>
  93. <article class="ac" style="background: red;">
  94. <p>Example Text.</p>
  95. </article>
  96. </div>
  97. <div>
  98. <input id="bx-2" name="box-1" type="radio" />
  99. <label for="bx-2" style="background: orange;">Info</label>
  100. <article class="ac" style="background: orange;">
  101. <p>Example Text.</p>
  102. </article>
  103. </div>
  104. <div>
  105. <input id="bx-3" name="box-1" type="radio" />
  106. <label for="bx-3" style="background: lime;">Stats</label>
  107. <article class="ac" style="background: lime;">
  108. <p>Example Text.</p>
  109. </article>
  110. </div>
  111. <div>
  112. <input id="bx-4" name="box-1" type="radio" />
  113. <label for="bx-4" style="background: cyan;">Networks</label>
  114. <article class="ac" style="background: cyan;">
  115. <p>Example Text.</p>
  116. </article>
  117. </div>
  118. </section>
  119.  
  120. /* BODY PART END */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement