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.

118 lines
3.4 KiB

  1. @charset "UTF-8";
  2. /**
  3. * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
  4. *
  5. * (en) Horizontal list navigation based on "Sliding Door II" from von "A List Apart"
  6. * (de) Horizontale Navigationsliste basierend auf "Sliding Door II" von "A List Apart"
  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) This image is mainly transparent */
  21. /* (de) Dieses Bild ist größtenteils transparent */
  22. background: transparent url("images/sliding_door/round/bg.gif") repeat-x bottom;
  23. float: left;
  24. width: 100%;
  25. }
  26. .hlist ul {
  27. line-height: 1em;
  28. list-style: none;
  29. margin: 0;
  30. padding: 0 0 0 50px; /* LTR */
  31. white-space: nowrap;
  32. }
  33. .hlist li {
  34. /* (en) Repeat the main color from the image */
  35. /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
  36. list-style-type: none !important;
  37. background: #e0ecf8 url("images/sliding_door/round/left.png") no-repeat top left;
  38. border-bottom: 1px solid #000;
  39. float: left; /* LTR */
  40. margin: 0;
  41. padding: 0 0 0 3px;
  42. }
  43. .hlist a,
  44. .hlist strong {
  45. /* (en) This image is mainly transparent */
  46. /* (de) Dieses Bild ist größtenteils transparent */
  47. background: transparent url("images/sliding_door/round/right.png") no-repeat top right;
  48. color: #667;
  49. display: block;
  50. font-weight: normal;
  51. padding: 5px 11px 3px 8px;
  52. text-decoration: none;
  53. text-transform: none;
  54. /**
  55. * @bugfix
  56. * @affected IE5.x, IE6
  57. * @css-for all browsers
  58. * @valid yes
  59. */
  60. width: auto; /* only IE 5.x */
  61. width/**/:/**/ .1em; /* only IE 6.0 */
  62. }
  63. .hlist a:link,
  64. .hlist a:visited { background-color: transparent; color: #667; }
  65. /**
  66. * @bugfix
  67. * @affected IE5.x, IE6
  68. * @css-for all browsers
  69. * @valid yes
  70. */
  71. .hlist > ul a,
  72. .hlist > ul strong { width: auto; } /* for other browsers */
  73. .hlist ul li:focus,
  74. .hlist ul li:hover,
  75. .hlist ul li:active {
  76. /* (en) Repeat the main color from the image */
  77. /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
  78. background-color: #c4d0dc;
  79. background-position: 0 -150px;
  80. }
  81. .hlist li:focus a,
  82. .hlist li:hover a,
  83. .hlist li:active a { background-position: 100% -150px; }
  84. .hlist a:focus,
  85. .hlist a:hover,
  86. .hlist a:active { background-color: transparent; color: #223; }
  87. .hlist li.active,
  88. .hlist ul li.active:focus,
  89. .hlist ul li.active:hover,
  90. .hlist ul li.active:active {
  91. /* (en) Repeat the main color from the image */
  92. /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */
  93. background: white url("images/sliding_door/round/left_on.png") no-repeat top left;
  94. border: 0 none;
  95. }
  96. .hlist li.active strong {
  97. /* (en) This image is mainly transparent */
  98. /* (de) Dieses Bild ist größtenteils transparent */
  99. background: transparent url("images/sliding_door/round/right_on.png") no-repeat top right;
  100. color: #334;
  101. font-weight: bold;
  102. padding-bottom: 4px;
  103. padding-top: 5px;
  104. }
  105. }