popup-tabs.css 922 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #tabs {
  2. overflow: hidden;
  3. width: 100%;
  4. margin: 0;
  5. padding: 0;
  6. list-style: none;
  7. }
  8. #tabs ul {
  9. background-color: transparent !important;
  10. background-image: none !important;
  11. }
  12. #tabs li {
  13. float: left;
  14. margin: 0 -15px 0 0;
  15. }
  16. #tabs a {
  17. float: left;
  18. position: relative;
  19. padding: 0 40px;
  20. height: 0;
  21. line-height: 30px;
  22. text-transform: uppercase;
  23. text-decoration: none;
  24. color: #fff;
  25. border-right: 30px solid transparent;
  26. border-bottom: 30px solid #3D3D3D;
  27. border-bottom-color: #777;
  28. opacity: .3;
  29. filter: alpha(opacity=30);
  30. }
  31. #tabs a:hover, #tabs a:focus {
  32. border-bottom-color: #2ac7e1;
  33. opacity: 1;
  34. filter: alpha(opacity=100);
  35. }
  36. #tabs a:focus {
  37. outline: 0;
  38. }
  39. #tabs #current {
  40. z-index: 3;
  41. border-bottom-color: #3d3d3d;
  42. opacity: 1;
  43. filter: alpha(opacity=100);
  44. }