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.

127 lines
3.5 KiB

  1. @charset "UTF-8";
  2. /**
  3. * "Yet Another Multicolumn Layout" - (X)HTML/CSS framework
  4. * (en) stylesheet for screen layout
  5. * (de) Stylesheet für das Bildschirm-Layout
  6. *
  7. * @creator YAML Builder V1.2b (http://builder.yaml.de)
  8. * @file basemod.css
  9. * @-yaml-minver 3.1
  10. */
  11. @media screen, projection
  12. {
  13. /*-------------------------------------------------------------------------*/
  14. /* (en) Marginal areas & page background */
  15. /* (de) Randbereiche & Seitenhintergrund */
  16. body { background: #3b69ad none; padding: 10px 0; }
  17. /* Layout Alignment | Layout-Ausrichtung */
  18. .page_margins { margin: 0 auto; }
  19. /* Layout Properties | Layout-Eigenschaften */
  20. .page_margins { width: auto; min-width: 740px; max-width: 90em; background: #fff; }
  21. .page { padding: 10px 15px 10px 10px; }
  22. #header { padding: 45px 2em 1em 20px; color: #000; background: #fff; }
  23. #topnav { color: #aaa; background: transparent; }
  24. #nav { overflow:hidden; }
  25. div.hlist { }
  26. #main { margin: 10px 0; background: #fff; }
  27. #footer { padding: 10px 20px; color:#666; background: #f9f9f9; border-top: 5px #efefef solid; }
  28. /* (en) navigation: horizontal adjustment | (de) horizontale Ausrichtung */
  29. #nav ul { margin-left: 20px; }
  30. /*-------------------------------------------------------------------------*/
  31. /**
  32. * (en) Formatting content container
  33. * (de) Formatierung der Inhalts-Container
  34. *
  35. */
  36. #col1 { float: left; width: 40%}
  37. #col1 { float: left }
  38. #col2 { display:none}
  39. #col3 { width: auto; margin: 0 0 0 40%; border-left: 1px #ddd dotted }
  40. #col1_content { padding: 0 10px 0 20px }
  41. #col3_content { padding: 0 20px 0 10px }
  42. /*-------------------------------------------------------------------------*/
  43. .page_margins {
  44. border: 0 none;
  45. background-image: url(../../images/gfxborder/border_left.gif);
  46. background-repeat:repeat-y;
  47. background-position:left;
  48. }
  49. .page {
  50. border: 0 none;
  51. margin: 0 0 0 5px; padding: 10px 15px 10px 10px;
  52. background-image: url(../../images/gfxborder/border_right.gif);
  53. background-repeat:repeat-y;
  54. background-position:right;
  55. }
  56. #border-top {
  57. overflow:hidden;
  58. width: auto;
  59. height: 20px;
  60. font-size:0;
  61. margin-bottom: -15px;
  62. background-image: url(../../images/gfxborder/border_top.gif);
  63. background-repeat:repeat-x;
  64. background-position:top left;
  65. }
  66. #border-bottom {
  67. overflow:hidden;
  68. width: auto;
  69. height: 20px;
  70. margin-top: -15px;
  71. font-size:0;
  72. background-image: url(../../images/gfxborder/border_bottom.gif);
  73. background-repeat:repeat-x;
  74. background-position:bottom left;
  75. }
  76. #edge-tl {
  77. float:left;
  78. width: 20px;
  79. height: 20px;
  80. font-size:0;
  81. background-image: url(../../images/gfxborder/corner_tl.gif);
  82. background-position: top left;
  83. }
  84. #edge-tr {
  85. position:relative; /* IE Fix | z-index */
  86. float:right;
  87. width: 20px;
  88. height: 20px;
  89. font-size:0;
  90. background-image: url(../../images/gfxborder/corner_tr.gif);
  91. background-position: top right;
  92. }
  93. #edge-bl {
  94. float:left;
  95. width: 20px;
  96. height: 20px;
  97. background-image: url(../../images/gfxborder/corner_bl.gif);
  98. background-position: bottom left;
  99. }
  100. #edge-br {
  101. position:relative; /* IE Fix | z-index */
  102. float:right;
  103. width: 20px;
  104. height: 20px;
  105. background-image: url(../../images/gfxborder/corner_br.gif);
  106. background-position: bottom right;
  107. }
  108. }