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.

197 lines
5.9 KiB

  1. @charset "UTF-8";
  2. /**
  3. * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
  4. *
  5. * (en) YAML debugging stylesheet
  6. * (de) YAML Stylesheet zur Fehlersuche
  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. * @note: Many thanks to Tomas Caspers (http://www.tomascaspers.de/) for contribution
  12. *
  13. * @copyright Copyright 2005-2009, Dirk Jesse
  14. * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
  15. * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
  16. * @link http://www.yaml.de
  17. * @package yaml
  18. * @version 3.1
  19. * @revision $Revision: 343 $
  20. * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
  21. */
  22. @media all
  23. {
  24. /*------------------------------------------------------------------------------------------------------*/
  25. /**
  26. * @section layout preparation for debugging
  27. * @see http://www.yaml.de/en/documentation/practice/drafting-and-debugging.html
  28. */
  29. /* Adding debugging background */
  30. body { padding-top: 10px !important; background: transparent url("images/grid_pattern.png") top left no-repeat fixed !important; }
  31. /* CSS-Warning, if core stylesheet 'iehacks.css' is missing in the layout */
  32. *+html #ie_clearing { display:block; } /* IE7 */
  33. * html #ie_clearing { display:block; } /* IE 5.x & 6 */
  34. #ie_clearing {
  35. width: 500px;
  36. font-size: 25px;
  37. position:absolute;
  38. top: -2px;
  39. left:0px;
  40. background: url("images/warning_iehacks.png") top left no-repeat;
  41. }
  42. /**
  43. * @section pixel grid
  44. */
  45. .bg_grid {
  46. background-image:url("images/grid_pattern.png") !important;
  47. background-repeat:no-repeat;
  48. background-position:top left !important;
  49. }
  50. /**
  51. * @section transparency
  52. */
  53. .transOFF { -moz-opacity: 1.0; opacity: 1.0; filter: alpha(Opacity=100);}
  54. .trans50,
  55. .transON { -moz-opacity: 0.5; opacity: 0.5; filter: alpha(Opacity=50);}
  56. .trans25 { -moz-opacity: 0.25; opacity: 0.25; filter: alpha(Opacity=25);}
  57. .trans75 { -moz-opacity: 0.75; opacity: 0.75; filter: alpha(Opacity=75);}
  58. /**
  59. * @section colors
  60. */
  61. .bg_red { background-color: #f00 !important;}
  62. .bg_blue { background-color: #00f !important;}
  63. .bg_green { background-color: #0f0 !important;}
  64. /**
  65. * @visualize semantic structure
  66. *
  67. */
  68. div[id] { padding: 0 !important; margin: 0 -1px; border: 1px #000 solid !important; }
  69. div[class] { padding: 0 !important; margin: 0 -1px; border: 1px #000 solid !important; }
  70. div[id]:before,
  71. div[class]:before {
  72. display:block;
  73. text-align:left;
  74. color: #fff;
  75. padding: 2px;
  76. font: normal 11px "Lucida console", monospace;
  77. }
  78. div[id]:before {
  79. background: #800;
  80. content: "[div id='"attr(id)"']";
  81. }
  82. div[class]:before {
  83. background: #a44;
  84. content: "[div class='"attr(class)"']";
  85. }
  86. div[id][class]:before {
  87. background: #800;
  88. content: "[div id='"attr(id)"' class='"attr(class)"']";
  89. }
  90. div[class="floatbox"] { background: #f4f4f4; }
  91. div[class="floatbox"]:before {
  92. display:block;
  93. color: #fff;
  94. padding: 2px;
  95. font: normal 11px "Lucida console", monospace;
  96. background: #66a;
  97. content: "[div class='"attr(class)"']";
  98. }
  99. div[class="subcolumns"] { background: #f8f8f8; color: #000 !important; }
  100. div[class="subcolumns"]:before {
  101. display:block;
  102. color: #fff;
  103. padding: 2px;
  104. font: normal 11px "Lucida console", monospace;
  105. background: #444;
  106. content: "[div ."attr(class)"]";
  107. }
  108. div[class="subcolumns"] > div:before {
  109. display:block;
  110. color: #fff;
  111. padding: 2px;
  112. font: normal 11px "Lucida console", monospace;
  113. background: #080;
  114. content: "[div ."attr(class)"]";
  115. }
  116. div[class="subc"], div[class="subcl"], div[class="subcr"] { background: #eee; }
  117. div[class="subc"]:before, div[class="subcl"]:before, div[class="subcr"]:before {
  118. display:block;
  119. color: #fff;
  120. padding: 2px;
  121. font: normal 11px "Lucida console", monospace;
  122. background: #6a6;
  123. content: "[div ."attr(class)"]";
  124. }
  125. h1:before { content: "[h1] "; }
  126. h2:before { content: "[h2] "; }
  127. h3:before { content: "[h3] "; }
  128. h4:before { content: "[h4] "; }
  129. h5:before { content: "[h5] "; }
  130. h6:before { content: "[h6] "; }
  131. /* make link attributes href,title visible on hover ... */
  132. a:hover { color: #fff !important; background: #337; text-align: left;}
  133. a:hover:after { color: #fff; background: #333; content: " (href='" attr(href) "' title='"attr(title)"')"; text-align: left; }
  134. a[class="skip"] { }
  135. a[id="navigation"]:before,
  136. a[id="content"]:before { font: normal 11px "Lucida console", monospace; content: "[skip anchor: "attr(id)"]"; padding: 2px !important; }
  137. a[id="content"]:hover,
  138. a[id="navigation"]:hover { background: #ff0; color: #000; }
  139. a[id="content"]:hover:after,
  140. a[id="navigation"]:hover:after { content: ""; background: inherit; color: #000; }
  141. img:after { font: normal 11px "Lucida console", monospace; content:" ( alt='" attr(alt)"' ) "; }
  142. address, blockquote, dl, fieldset, form, h1, h2, h3, h4, ol, p, pre, ul {
  143. border: 1px dotted #888;
  144. margin: 2px;
  145. padding: 2px;
  146. display: block;
  147. }
  148. /* Highlighting empty elements */
  149. div:empty, span:empty, p:empty, a:empty, td:empty, th:empty, li:empty,
  150. b:empty, i:empty, em:empty {padding: 2px 4px; background: yellow;}
  151. /* Highlighting inline-Styles */
  152. *[style] {outline: 3px solid #f0f;}
  153. *[style]:after { font: normal 11px "Lucida console", monospace; background: #f0f; color: #000; height: auto; visibility:visible; content: "Element contains inline styles!" !important; }
  154. /**
  155. * @visualize inline elements
  156. *
  157. */
  158. abbr, acronym { background: #d9eaff; }
  159. q, cite, dfn, kbd { background: #ffe3f6; }
  160. /* :lang(de), :lang(en), :lang(fr), :lang(es) { background: #d9efaa !important; } */
  161. }