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.

225 lines
7.3 KiB

  1. @charset "UTF-8";
  2. /**
  3. * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
  4. *
  5. * (en) Uniform design of standard content elements
  6. * (de) Einheitliche Standardformatierungen für die wichtigten Inhalts-Elemente
  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. * @appdef yaml
  17. */
  18. @media all
  19. {
  20. /**
  21. * Fonts
  22. *
  23. * (en) global settings of font-families and font-sizes
  24. * (de) Globale Einstellungen für Zeichensatz und Schriftgrößen
  25. *
  26. * @section content-global-settings
  27. */
  28. /* (en) reset font size for all elements to standard (16 Pixel) */
  29. /* (de) Alle Schriftgrößen auf Standardgröße (16 Pixel) zurücksetzen */
  30. html * { font-size: 100.01%; }
  31. /**
  32. * (en) reset monospaced elements to font size 16px in all browsers
  33. * (de) Schriftgröße von monospaced Elemente in allen Browsern auf 16 Pixel setzen
  34. *
  35. * @see: http://webkit.org/blog/67/strange-medium/
  36. */
  37. textarea, pre, code, kbd, samp, var, tt {
  38. font-family: Consolas, "Lucida Console", "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier;
  39. }
  40. /* (en) base layout gets standard font size 12px */
  41. /* (de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln */
  42. body {
  43. font-family: Arial, Helvetica, sans-serif;
  44. font-size: 75.00%;
  45. color: #444;
  46. }
  47. /*--- Headings | Überschriften ------------------------------------------------------------------------*/
  48. h1,h2,h3,h4,h5,h6 {
  49. font-family: "Times New Roman", Times, serif;
  50. font-weight:normal;
  51. color:#222;
  52. margin: 0 0 0.25em 0;
  53. }
  54. h1 { font-size: 250%; } /* 30px */
  55. h2 { font-size: 200%; } /* 24px */
  56. h3 { font-size: 150%; } /* 18px */
  57. h4 { font-size: 133.33%; } /* 16px */
  58. h5 { font-size: 116.67%; } /* 14px */
  59. h6 { font-size: 116.67%; } /* 14px */
  60. /* --- Lists | Listen -------------------------------------------------------------------------------- */
  61. ul, ol, dl { line-height: 1.5em; margin: 0 0 1em 1em; }
  62. ul li { list-style-type: disc; }
  63. ul ul li { list-style-type: circle; }
  64. ol li { list-style-type: decimal; }
  65. ol ol li { list-style-type: lower-latin; }
  66. li { margin-left: 0.8em; line-height: 1.5em; }
  67. dt { font-weight: bold; }
  68. dd { margin: 0 0 1em 0.8em; }
  69. /* The above broke ExtJS's Tabs, so fix em */
  70. .x-tab-strip-wrap li {
  71. list-style-type: none;
  72. }
  73. /* --- general text formatting | Allgemeine Textauszeichnung ------------------------------------------ */
  74. p { line-height: 1.5em; margin: 0 0 1em 0; }
  75. blockquote, cite,q {
  76. font-family: Georgia, "Times New Roman", Times, serif;
  77. font-style:italic;
  78. }
  79. blockquote { margin: 0 0 1em 1.6em; color: #666; }
  80. strong,b { font-weight: bold; }
  81. em,i { font-style: italic; }
  82. pre, code, kbd, tt, samp, var { font-size: 100%; }
  83. pre, code { color: #800; }
  84. pre { line-height: 1.5em; margin: 0 0 1em 0; }
  85. kbd, samp, var { color: #666; }
  86. var { font-style: italic; }
  87. acronym, abbr {
  88. border-bottom: 1px #aaa dotted;
  89. font-variant: small-caps;
  90. letter-spacing: .07em;
  91. cursor: help;
  92. }
  93. sub, sup { font-size: 91.6667%; }
  94. hr {
  95. color: #fff;
  96. background:transparent;
  97. margin: 0 0 0.5em 0;
  98. padding: 0 0 0.5em 0;
  99. border:0;
  100. border-bottom: 1px #eee solid;
  101. }
  102. /*--- Links ----------------------------------------------------------------------------------------- */
  103. a { color: #4D87C7; background:transparent; text-decoration:none; }
  104. a:visited { color: #036; }
  105. a:focus,
  106. a:hover,
  107. a:active { color:#182E7A; text-decoration:underline; }
  108. /* --- images (with optional captions) | Bilder (mit optionaler Bildunterschrift) ------------------ */
  109. p.icaption_left { float:left; display:inline; margin: 0 1em 0.15em 0; }
  110. p.icaption_right { float:right; display:inline; margin: 0 0 0.15em 1em; }
  111. p.icaption_left img,
  112. p.icaption_right img { padding:0; border: 1px #888 solid; }
  113. p.icaption_left strong,
  114. p.icaption_right strong { display:block; overflow:hidden; margin-top: 2px; padding: 0.3em 0.5em; background: #eee; font-weight: normal; font-size: 91.667%; }
  115. /**
  116. * ------------------------------------------------------------------------------------------------- #
  117. *
  118. * Generic Content Classes
  119. *
  120. * (en) standard classes for positioning and highlighting
  121. * (de) Standardklassen zur Positionierung und Hervorhebung
  122. *
  123. * @section content-generic-classes
  124. */
  125. .highlight { color: #f60; }
  126. .dimmed { color: #888; }
  127. .info { background: #f8f8f8; color: #666; padding: 10px; margin-bottom: 0.5em; font-size: 91.7%; }
  128. .note { background: #efe; color: #040; border: 2px #484 solid; padding: 10px; margin-bottom: 1em; }
  129. .important { background: #ffe; color: #440; border: 2px #884 solid; padding: 10px; margin-bottom: 1em; }
  130. .warning { background: #fee; color: #400; border: 2px #844 solid; padding: 10px; margin-bottom: 1em; }
  131. .float_left { float: left; display:inline; margin-right: 1em; margin-bottom: 0.15em; }
  132. .float_right { float: right; display:inline; margin-left: 1em; margin-bottom: 0.15em; }
  133. .center { display:block; text-align:center; margin: 0.5em auto; }
  134. /**
  135. * ------------------------------------------------------------------------------------------------- #
  136. *
  137. * Tables | Tabellen
  138. *
  139. * (en) Generic classes for table-width and design definition
  140. * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen
  141. *
  142. * @section content-tables
  143. */
  144. table { width: auto; border-collapse:collapse; margin-bottom: 0.5em; border-top: 2px #888 solid; border-bottom: 2px #888 solid; }
  145. table caption { font-variant:small-caps; }
  146. table.full { width: 100%; }
  147. table.fixed { table-layout:fixed; }
  148. th,td { padding: 0.5em; }
  149. thead th { color: #000; border-bottom: 2px #800 solid; }
  150. tbody th { background: #e0e0e0; color: #333; }
  151. tbody th[scope="row"], tbody th.sub { background: #f0f0f0; }
  152. tbody th { border-bottom: 1px solid #fff; text-align: left; }
  153. tbody td { border-bottom: 1px solid #eee; }
  154. tbody tr:hover th[scope="row"],
  155. tbody tr:hover tbody th.sub { background: #f0e8e8; }
  156. tbody tr:hover td { background: #fff8f8; }
  157. /**
  158. * ------------------------------------------------------------------------------------------------- #
  159. *
  160. * Miscellaneous | Sonstiges
  161. *
  162. * @section content-misc
  163. */
  164. input, textarea {
  165. border: 1px solid #CCCCCC;
  166. }
  167. /**
  168. * (en) Emphasizing external Hyperlinks via CSS
  169. * (de) Hervorhebung externer Hyperlinks mit CSS
  170. *
  171. * @section content-external-links
  172. * @app-yaml-default disabled
  173. */
  174. /*
  175. #main a[href^="http://www.my-domain.com"],
  176. #main a[href^="https://www.my-domain.com"]
  177. {
  178. padding-left: 12px;
  179. background-image: url('your_image.gif');
  180. background-repeat: no-repeat;
  181. background-position: 0 0.45em;
  182. }
  183. */
  184. }