You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
784 B

  1. /**
  2. * This file provides the styles for general tabs.
  3. */
  4. .dokuwiki ul.tabs {
  5. padding: 0;
  6. margin: 0;
  7. overflow: hidden;
  8. }
  9. .dokuwiki ul.tabs li {
  10. float: left;
  11. padding: 0;
  12. margin: 0;
  13. list-style: none;
  14. }
  15. .dokuwiki ul.tabs li strong,
  16. .dokuwiki ul.tabs li a {
  17. float: left;
  18. padding: .3em .8em;
  19. margin: 0 .3em 0 0;
  20. background-color: __background_neu__;
  21. color: __text__;
  22. border-radius: .5em .5em 0 0;
  23. }
  24. .dokuwiki ul.tabs li strong {
  25. font-weight: normal;
  26. }
  27. .dokuwiki ul.tabs li a:link,
  28. .dokuwiki ul.tabs li a:visited {
  29. }
  30. .dokuwiki ul.tabs li a:hover,
  31. .dokuwiki ul.tabs li a:active,
  32. .dokuwiki ul.tabs li a:focus,
  33. .dokuwiki ul.tabs li strong {
  34. background-color: __background_alt__;
  35. color: __text__;
  36. text-decoration: none;
  37. }