Guest User

Untitled

a guest
Feb 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.26 KB | None | 0 0
  1. .shadetabs {
  2.     padding: 1px 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: center;
  9. }
  10.  
  11. .shadetabs li {
  12. display: inline;
  13. margin: 0;
  14. }
  15.  
  16. .shadetabs li a {
  17.     background: #86abcc;
  18.     color: #eeeeee;
  19.     position: relative;
  20.     z-index: 1;
  21.     padding: 3px 17px;
  22.     margin-right: 5px;
  23.     -webkit-border-top-left-radius: 5px;
  24.     -webkit-border-top-right-radius: 5px;
  25.     -moz-border-radius-topleft: 5px;
  26.     -moz-border-radius-topright: 5px;
  27.     border-top-left-radius: 5px;
  28.     border-top-right-radius: 5px;
  29.    
  30.     text-decoration: none;
  31. }
  32.  
  33. .shadetabs li a:hover {
  34.     background: #3271a7;
  35.     color: #ffffff;
  36.     padding: 5px 17px;
  37. }
  38.  
  39. .shadetabs li a.selected {
  40.     position: relative;
  41.     top: 0px;
  42. }
  43.  
  44. .shadetabs li a.selected {
  45.     background: #3271a7;
  46.     color: #ffffff;
  47.     -webkit-border-top-left-radius: 5px;
  48.     -webkit-border-top-right-radius: 5px;
  49.     -moz-border-radius-topleft: 5px;
  50.     -moz-border-radius-topright: 5px;
  51.     border-top-left-radius: 5px;
  52.     border-top-right-radius: 5px;
  53.     padding: 5px 17px;
  54.     margin-bottom: 5px;
  55. }
  56.  
  57. .shadetabs li a.selected:hover {
  58.  /*selected main tab style */
  59. text-decoration: none;
  60. }
  61.  
  62. .tabcontent {
  63. display:none;
  64. }
  65.  
  66. @
  67. media print {
  68. .tabcontent {
  69. display:block !important;
  70. }
  71.  
  72.  
  73. }
Add Comment
Please, Sign In to add comment