Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
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.

93 lines
2.8 KiB

  1. @charset "UTF-8";
  2. /**
  3. * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
  4. *
  5. * (en) Horizontal list navigation "Shiny Buttons"
  6. * (de) Horizontale Navigationsliste "Shiny Buttons"
  7. *
  8. * @copyright Copyright 2005-2009, Dirk Jesse
  9. * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
  10. * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
  11. * @link http://www.yaml.de
  12. * @package yaml
  13. * @version 3.1
  14. * @revision $Revision: 343 $
  15. * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
  16. */
  17. @media all
  18. {
  19. .hlist {
  20. /* (en) containing floats in IE */
  21. /* (de) Einfassen der Floats im IE */
  22. width: 100%;
  23. overflow: hidden;
  24. /* (en) containing floats in all other browsers */
  25. /* (de) Einfassen der Floats in allen anderen Browsern */
  26. float: left;
  27. display: inline;
  28. /* (en|de) Bugfix: IE - collapsing horizontal margins */
  29. position:relative;
  30. /* (en) Repeat the main color from the image */
  31. /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
  32. background: #c0c0c0 url("images/shiny_buttons/background.png") repeat-x center right;
  33. border-top: 1px #333 solid;
  34. border-bottom: 1px #333 solid;
  35. line-height: 0;
  36. }
  37. .hlist ul {
  38. /* (en|de) Bugfix: IE - Doubled Float Margin Bug */
  39. display: inline;
  40. float: left; /* LTR */
  41. /* (en) Left margin of the first button */
  42. /* (de) Abstand des ersten Buttons vom linken Rand */
  43. margin: 0 0 0 50px; /* LTR */
  44. padding: 0;
  45. border-left: 1px #aaa solid;
  46. border-right: 1px #fff solid;
  47. }
  48. .hlist ul li {
  49. border-left: 1px #fff solid;
  50. border-right: 1px #aaa solid;
  51. /* (en|de) Bugfix: IE - Doubled Float Margin Bug */
  52. display: inline;
  53. float: left; /* LTR */
  54. font-size: 1.0em;
  55. line-height: 1em;
  56. list-style-type: none;
  57. margin: 0;
  58. padding: 0;
  59. }
  60. .hlist ul li a,
  61. .hlist ul li strong {
  62. background: transparent;
  63. color: #000;
  64. display: block;
  65. font-size: 1em;
  66. font-weight: bold;
  67. margin: 0;
  68. padding: 0.5em 0.8em 0.5em 0.8em;
  69. text-decoration: none;
  70. width: auto;
  71. }
  72. .hlist ul li a:focus,
  73. .hlist ul li a:hover,
  74. .hlist ul li a:active { background: #eee; color: #333; text-decoration: none; }
  75. .hlist ul li.active {
  76. /* (en) Repeat the main color from the image */
  77. /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
  78. background: #272727 url("images/shiny_buttons/background_active.png") repeat-x center right;
  79. border-left: 1px #444 solid;
  80. border-right: 1px #888 solid;
  81. }
  82. .hlist ul li.active strong,
  83. .hlist ul li.active a:focus,
  84. .hlist ul li.active a:hover,
  85. .hlist ul li.active a:active { background: transparent; color: #fff; text-decoration: none; }
  86. }