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.

123 lines
3.1 KiB

  1. @charset "UTF-8";
  2. /**
  3. * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
  4. *
  5. * (en) Vertical list navigation "vlist"
  6. * (de) Vertikale Navigationsliste "vlist"
  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. /* title */
  20. h6.vlist {
  21. font-family: Arial, Helvetica, sans-serif;
  22. font-weight: bold;
  23. font-size: 100%;
  24. width: 90%;
  25. padding: 3px 0px 3px 10%; /* LTR */
  26. margin:0;
  27. color: #444;
  28. background-color: #fff;
  29. border-top: 2px #ddd solid;
  30. border-bottom: 4px #888 solid;
  31. }
  32. .vlist {
  33. width: 100%;
  34. overflow: hidden;
  35. margin: 0 0 1.5em 0;
  36. list-style-type: none;
  37. border-bottom: 2px #ddd solid;
  38. }
  39. .vlist ul {
  40. list-style-type: none;
  41. margin:0;
  42. padding: 0;
  43. }
  44. .vlist li {
  45. float:left; /* LTR */
  46. width: 100%;
  47. margin:0;
  48. padding: 0;
  49. }
  50. .vlist a,
  51. .vlist strong,
  52. .vlist span {
  53. display:block;
  54. padding: 3px 0px 3px 10%;
  55. text-decoration: none;
  56. border-bottom: 1px #ddd solid;
  57. }
  58. .vlist a,
  59. .vlist a:visited {
  60. color: #444;
  61. }
  62. .vlist li span {
  63. display:block;
  64. font-weight: bold;
  65. border-bottom: 1px #ddd solid;
  66. }
  67. /* active list element */
  68. .vlist li.active {
  69. color: #fff;
  70. background-color:#800;
  71. font-weight: bold;
  72. }
  73. /* Level 1 */
  74. .vlist li a,
  75. .vlist li strong,
  76. .vlist li span { width: 90%; padding-left: 10%; } /* LTR */
  77. .vlist li a:focus,
  78. .vlist li a:hover,
  79. .vlist li a:active { background-color:#a88; color: #fff; }
  80. /* Level 2 */
  81. .vlist li ul li a,
  82. .vlist li ul li strong,
  83. .vlist li ul li span { width: 80%; padding-left: 20%; } /* LTR */
  84. .vlist li ul li a,
  85. .vlist li ul li a:visited { background-color:#f8f8f8; color: #333; }
  86. .vlist li ul li a:focus,
  87. .vlist li ul li a:hover,
  88. .vlist li ul li a:active { background-color:#a88; color: #fff; }
  89. /* Level 3 */
  90. .vlist li ul li ul li a,
  91. .vlist li ul li ul li strong,
  92. .vlist li ul li ul li span { width: 70%; padding-left: 30%; } /* LTR */
  93. .vlist li ul li ul li a,
  94. .vlist li ul li ul li a:visited{ background-color:#f0f0f0; color: #222; }
  95. .vlist li ul li ul li a:focus,
  96. .vlist li ul li ul li a:hover,
  97. .vlist li ul li ul li a:active { background-color:#a88; color: #fff; }
  98. /* Level 4 */
  99. .vlist li ul li ul li ul li a,
  100. .vlist li ul li ul li ul li strong,
  101. .vlist li ul li ul li ul li span { width: 60%; padding-left: 40%; } /* LTR */
  102. .vlist li ul li ul li ul li a,
  103. .vlist li ul li ul li ul li a:visited { background-color:#e8e8e8; color: #111; }
  104. .vlist li ul li ul li ul li a:focus,
  105. .vlist li ul li ul li ul li a:hover,
  106. .vlist li ul li ul li ul li a:active { background-color:#a88; color: #fff; }
  107. }