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.

223 lines
7.7 KiB

  1. @charset "UTF-8";
  2. /**
  3. * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
  4. *
  5. * (en) YAML core stylesheet
  6. * (de) YAML Basis-Stylesheet
  7. *
  8. * Don't make any changes in this file!
  9. * Your changes should be placed in any css-file in your own stylesheet folder.
  10. *
  11. * @copyright Copyright 2005-2009, Dirk Jesse
  12. * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
  13. * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
  14. * @link http://www.yaml.de
  15. * @package yaml
  16. * @version 3.1
  17. * @revision $Revision: 343 $
  18. * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
  19. */
  20. @media all
  21. {
  22. /**
  23. * @section browser reset
  24. * @see http://www.yaml.de/en/documentation/css-components/base-stylesheet.html
  25. */
  26. /* (en) Global reset of paddings and margins for all HTML elements */
  27. /* (de) Globales Zurücksetzen der Innen- und Außenabstände für alle HTML-Elemente */
  28. * { margin:0; padding: 0; }
  29. /* (en) Correction: margin/padding reset caused too small select boxes. */
  30. /* (de) Korrektur: Das Zurücksetzen der Abstände verursacht zu kleine Selectboxen. */
  31. option { padding-left: 0.4em; } /* LTR */
  32. select { padding: 1px; }
  33. /**
  34. * (en) Global fix of the Italics bugs in IE 5.x and IE 6
  35. * (de) Globale Korrektur des Italics Bugs des IE 5.x und IE 6
  36. *
  37. * @bugfix
  38. * @affected IE 5.x/Win, IE6
  39. * @css-for IE 5.x/Win, IE6
  40. * @valid yes
  41. */
  42. * html body * { overflow:visible; }
  43. * html iframe, * html frame { overflow:auto; }
  44. * html frameset { overflow:hidden; }
  45. /* (en) Forcing vertical scrollbars in Netscape, Firefox and Safari browsers */
  46. /* (de) Erzwingen vertikaler Scrollbalken in Netscape, Firefox und Safari Browsern */
  47. html { height: 100%; margin-bottom: 1px; }
  48. body {
  49. /* (en) Fix for rounding errors when scaling font sizes in older versions of Opera browser */
  50. /* (de) Beseitigung von Rundungsfehler beim Skalieren von Schriftgrößen in älteren Opera Versionen */
  51. font-size: 100.01%;
  52. /* (en) Standard values for colors and text alignment */
  53. /* (de) Vorgabe der Standardfarben und Textausrichtung */
  54. color: #000;
  55. background: #fff;
  56. text-align: left; /* LTR */
  57. }
  58. /* (en) Clear borders for <fieldset> and <img> elements */
  59. /* (de) Rahmen für <fieldset> und <img> Elemente löschen */
  60. fieldset, img { border: 0 solid; }
  61. /* (en) new standard values for lists, blockquote and cite */
  62. /* (de) Neue Standardwerte für Listen & Zitate */
  63. ul, ol, dl { margin: 0 0 1em 1em } /* LTR */
  64. li {
  65. margin-left: 0.8em; /* LTR */
  66. line-height: 1.5em;
  67. }
  68. dt { font-weight: bold; }
  69. dd { margin: 0 0 1em 0.8em; } /* LTR */
  70. blockquote { margin: 0 0 1em 0.8em; } /* LTR */
  71. blockquote:before, blockquote:after,
  72. q:before, q:after { content: ""; }
  73. /*------------------------------------------------------------------------------------------------------*/
  74. /**
  75. * @section base layout | Basis Layout
  76. * @see http://www.yaml.de/en/documentation/css-components/base-stylesheet.html
  77. *
  78. * |-------------------------------|
  79. * | #header |
  80. * |-------------------------------|
  81. * | #col1 | #col3 | #col2 |
  82. * | 200 px | flexible | 200px |
  83. * |-------------------------------|
  84. * | #footer |
  85. * |-------------------------------|
  86. */
  87. #header { position:relative; }
  88. /* (en) Text Alignment for #topnav content */
  89. /* (de) Textausrichtung für #topnav Inhalte */
  90. #topnav { text-align: right; } /* LTR */
  91. /* (en) Absolute positioning only within #header */
  92. /* (de) Absolute Positionierung erfolgt nur innerhalb von #header */
  93. #header #topnav {
  94. position:absolute;
  95. top: 10px;
  96. right: 10px; /* LTR */
  97. }
  98. /* (en) Backup for correct positioning */
  99. /* (de) Absicherung korrekte Positionierung */
  100. #header, #nav, #main, #footer { clear:both; }
  101. /* (en/de) Standard: 200 Pixel */
  102. #col1 { float: left; width: 200px }
  103. /* (en/de) Standard: 200 Pixel */
  104. #col2 { float:right; width: 200px }
  105. /* (en) Standard: center column with flexible width */
  106. /* (de) Standard: Flexible mittlere Spalte */
  107. #col3 { width:auto; margin: 0 200px }
  108. /* (en) Preparation for absolute positioning within content columns */
  109. /* (de) Vorbereitung für absolute Positionierungen innerhalb der Inhaltsspalten */
  110. #col1_content, #col2_content, #col3_content { position:relative; }
  111. /*------------------------------------------------------------------------------------------------------*/
  112. /**
  113. * @section clearing methods
  114. * @see http://yaml.de/en/documentation/basics/general.html
  115. */
  116. /* (en) clearfix method for clearing floats */
  117. /* (de) Clearfix-Methode zum Clearen der Float-Umgebungen */
  118. .clearfix:after {
  119. content: ".";
  120. display: block;
  121. font-size:0;
  122. height: 0;
  123. clear: both;
  124. visibility: hidden;
  125. }
  126. /* (en) essential for Safari browser !! */
  127. /* (de) Diese Angabe benötigt der Safari-Browser zwingend !! */
  128. .clearfix { display: block; }
  129. /* (en) overflow method for clearing floats */
  130. /* (de) Overflow-Methode zum Clearen der Float-Umgebungen */
  131. .floatbox { overflow:hidden; }
  132. /* (en) IE-Clearing: Only used in Internet Explorer, switched on in iehacks.css */
  133. /* (de) IE-Clearing: Benötigt nur der Internet Explorer und über iehacks.css zugeschaltet */
  134. #ie_clearing { display: none; }
  135. /*------------------------------------------------------------------------------------------------------*/
  136. /**
  137. * @section subtemplates
  138. * @see http://www.yaml.de/en/documentation/practice/subtemplates.html
  139. */
  140. .subcolumns { width: 100%; overflow:hidden; }
  141. /* (en) alternative class for optional support of old Mozilla/Netscape browers */
  142. /* (de) Alternative Klasse zur optionalen Unterstützung alter Mozilla/Netscape-Brower */
  143. .subcolumns_oldgecko { width: 100%; float:left; }
  144. .c50l, .c25l, .c33l, .c38l, .c66l, .c75l, .c62l {float: left; }
  145. .c50r, .c25r, .c33r, .c38r, .c66r, .c75r, .c62r {float: right; margin-left: -5px; }
  146. .c25l, .c25r { width: 25%; }
  147. .c33l, .c33r { width: 33.333%; }
  148. .c50l, .c50r { width: 50%; }
  149. .c66l, .c66r { width: 66.666%; }
  150. .c75l, .c75r { width: 75%; }
  151. .c38l, .c38r { width: 38.2%; }
  152. .c62l, .c62r { width: 61.8%; }
  153. .subc { padding: 0 0.5em; }
  154. .subcl { padding: 0 1em 0 0; }
  155. .subcr { padding: 0 0 0 1em; }
  156. .equalize, .equalize .subcolumns { overflow:visible; display:table; table-layout:fixed; }
  157. .equalize .c50l,.equalize .c25l,.equalize .c33l,.equalize .c38l,.equalize .c66l,
  158. .equalize .c75l,.equalize .c62l,.equalize .c50r,.equalize .c25r,.equalize .c33r,
  159. .equalize .c38r,.equalize .c66r,.equalize .c75r,.equalize .c62r {
  160. display:table-cell; vertical-align:top;
  161. float:none; margin:0; overflow:hidden;
  162. }
  163. /*------------------------------------------------------------------------------------------------------*/
  164. /**
  165. * @section hidden elements | Versteckte Elemente
  166. * @see http://www.yaml.de/en/documentation/basics/skip-links.html
  167. *
  168. * (en) skip links and hidden content
  169. * (de) Skip-Links und versteckte Inhalte
  170. */
  171. /* (en) classes for invisible elements in the base layout */
  172. /* (de) Klassen für unsichtbare Elemente im Basislayout */
  173. .skip, .hideme, .print, dfn {
  174. position: absolute;
  175. left: -1000em; /* LTR */
  176. top: -1000em;
  177. }
  178. /* (en) make skip links visible when using tab navigation */
  179. /* (de) Skip-Links für Tab-Navigation sichtbar schalten */
  180. .skip:focus, .skip:active {
  181. position: static;
  182. left: 0;
  183. top:0;
  184. }
  185. }