Advertisement
Mikaela

Updates Tab 2

May 22nd, 2014
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. .shadetabs{
  2. padding: 3px 0;
  3. position:fixed;
  4. margin-left: 20px;
  5. margin-top: -35px;
  6. margin-bottom: 0;
  7. font:bold 8px Verdana;
  8. list-style-type: none;
  9. text-align: left;
  10. }
  11.  
  12. .shadetabs li{
  13. display: inline;
  14. margin: 0px;
  15. }
  16.  
  17. .shadetabs li a{
  18. text-decoration: none;
  19. position: relative;
  20. z-index: 1;
  21. padding: 3px 7px;
  22. margin-right: 3px;
  23. border-left: 1px solid #cccccc;
  24. border-right: 1px solid #cccccc;
  25. border-top: 1px solid #cccccc;
  26. color:#7e7e7e ;
  27. background: white top left repeat-x;
  28. }
  29.  
  30. .shadetabs li a:visited{
  31. color: #7e7e7e;
  32. }
  33.  
  34. .shadetabs li a:hover{
  35. text-decoration: underline;
  36. color: #7e7e7e;
  37. }
  38.  
  39. .shadetabs li a.selected{ /*selected main tab style */
  40. position: relative;
  41. top: 1px;
  42. }
  43.  
  44. .shadetabs li a.selected{ /*selected main tab style */
  45. border-bottom-color: white;
  46. }
  47.  
  48. .shadetabs li a.selected:hover{ /*selected main tab style */
  49. text-decoration: none;
  50. }
  51.  
  52. .tabcontent{
  53. display:none;
  54. }
  55.  
  56. @media print {
  57. .tabcontent {
  58. display:block !important;
  59. }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement