Advertisement
Anonware

tabbed.css

Jan 7th, 2015
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.79 KB | None | 0 0
  1. .shadetabs {
  2.     padding: 3px 0;
  3.     margin: 0;
  4.     margin-bottom: 10px;
  5.     list-style-type: italic;
  6.     text-align: left;
  7. }
  8.  
  9.  
  10.  
  11. .shadetabs li{
  12. display: inline;
  13. margin: 0;
  14. }
  15.  
  16.  
  17.  
  18. .shadetabs li a{
  19. text-decoration: none;
  20. position: relative;
  21. z-index: 1;
  22. padding: 3px 7px;
  23. margin-right: 1px;
  24. border: 1px solid #606060;
  25. color: #a0a0a0;
  26.  
  27. }
  28.  
  29.  
  30.  
  31. .shadetabs li a:hover{
  32. background:#222;
  33. color: #ffffff;
  34. }
  35.  
  36.  
  37.  
  38. .shadetabs li a.selected{
  39.  
  40.  /*selected main tab style */
  41.  
  42. position: relative;
  43. }
  44.  
  45.  
  46.  
  47. .shadetabs li a.selected{
  48. background:#222;
  49. color: #ffffff;
  50. }
  51.  
  52.  
  53.  
  54. .shadetabs li a.selected:hover{
  55.  
  56.  /*selected main tab style */
  57.  
  58. text-decoration: none;
  59.  
  60. }
  61.  
  62. }
  63.  
  64.  
  65.  
  66. .tabcontent{
  67.  
  68. display:none;
  69.  
  70. }
  71.  
  72.  
  73.  
  74. @media print {
  75.  
  76. .tabcontent {
  77.  
  78. display:block !important;
  79.  
  80. }
  81.  
  82.  
  83.  
  84.  
  85.  
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement