Guest User

Untitled

a guest
Jan 12th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. .shadetabs {
  2. padding: 3px 0;
  3. margin-left: 0;
  4. margin-top: 1px;
  5. margin-bottom: 0;
  6. font: bold 12px Verdana;
  7. list-style-type: none;
  8. text-align: left; /*set to left, center, or right to align the menu as desired*/
  9. }
  10.  
  11. .shadetabs li {
  12. display: inline;
  13. margin: 0;
  14. }
  15.  
  16. .shadetabs li a {
  17. -webkit-border-top-left-radius: 5px;
  18. -webkit-border-top-right-radius: 5px;
  19. -moz-border-radius-topleft: 5px;
  20. -moz-border-radius-topright: 5px;
  21. border-top-left-radius: 5px;
  22. border-top-right-radius: 5px;
  23. background-color: #3F3F3F;
  24. color: #CCC;
  25. position: relative;
  26. z-index: 1;
  27. padding: 3px 7px;
  28. margin-right: 3px;
  29. border: 1px solid #778;
  30. text-decoration: none;
  31. -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5);
  32. box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5);
  33. }
  34.  
  35. .shadetabs li a:hover {
  36. text-decoration: underline;
  37. color: #ddd;
  38. }
  39.  
  40. .shadetabs li a.selected {
  41. -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5);
  42. box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5);
  43. /*selected main tab style */
  44. position: relative;
  45. top: 1px;
  46. }
  47.  
  48. .shadetabs li a.selected {
  49. background-color: #212121;
  50. color: #f7f7f7;
  51. -webkit-border-top-left-radius: 5px;
  52. -webkit-border-top-right-radius: 5px;
  53. -moz-border-radius-topleft: 5px;
  54. -moz-border-radius-topright: 5px;
  55. border-top-left-radius: 5px;
  56. border-top-right-radius: 5px;
  57. padding: 5px 17px;
  58. margin-bottom: 5px;
  59. text-decoration: none;
  60. }
  61.  
  62. .shadetabs li a.selected:hover {
  63. /*selected main tab style */
  64. text-decoration: none;
  65. }
  66.  
  67. .tabcontent {
  68. display:none;
  69. }
  70.  
  71. @
  72. media print {
  73. .tabcontent {
  74. display:block !important;
  75. }
  76.  
  77.  
  78. }
  79.  
  80.  
  81. {
  82.  
  83.  
  84. }
Add Comment
Please, Sign In to add comment