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.

119 lines
1.9 KiB

  1. body {
  2. font-family: "Trebuchet MS, Verdana, Arial";
  3. font-size: 9pt;
  4. background-image: url(/static/grafs/bg.jpg);
  5. margin: 0px;
  6. background-attachment: fixed;
  7. background-position: 0px 0px;
  8. }
  9. #mm {
  10. background: url(/static/grafs/lin10.jpg);
  11. background-repeat: repeat-y;
  12. /* Im naechsten stand mal Center, FireFox verpeilt dann aber die Linien... */
  13. background-position: left top;
  14. text-align: left;
  15. margin: 0px auto auto;
  16. width: 444px;
  17. }
  18. #cont {
  19. background-image: url(/static/grafs/lin10.jpg);
  20. background-repeat: repeat-y;
  21. background-position: left top;
  22. min-height: 60%;
  23. width: 444px;
  24. color: #FFFFFF;
  25. text-align: left;
  26. }
  27. .conx {
  28. position: relative;
  29. width: 430px;
  30. left: 7px;
  31. text-align: justify;
  32. }
  33. h1 {
  34. font-size: 14pt;
  35. color: #C60307;
  36. }
  37. img {
  38. border-style: none;
  39. }
  40. a.navi:link, a.navi:visited, a.navi:active, a.navi:hover {
  41. font-weight: bold;
  42. font-family: "Trebuchet MS";
  43. font-size: 9pt;
  44. color: #283E53;
  45. text-decoration: none;
  46. }
  47. a:link, a:visited, a:hover, a:active {
  48. font-weight: normal;
  49. font-family: "Trebuchet MS";
  50. font-size: 9pt;
  51. color: #FFFFFF;
  52. text-decoration: underline;
  53. }
  54. a.navi:hover, a:hover {
  55. color: #A31313;
  56. }
  57. .navibg {
  58. background:url(/static/grafs/lin5.jpg);
  59. width:444px;
  60. height:22px;
  61. }
  62. .navipos {
  63. font-weight: bold;
  64. color: #283E53;
  65. width: 430px;
  66. position: relative;
  67. height: 18px;
  68. top: 3px;
  69. text-align: right;
  70. left: 9px;
  71. }
  72. .footerbg {
  73. background:url(/static/grafs/lin11.jpg);
  74. width:444px;
  75. height:14px;
  76. text-align:center
  77. }
  78. .footer {
  79. font-size: 7pt;
  80. color: #283E53;
  81. }
  82. /* shamelessly stolen from http://jquery.bassistance.de/tooltip/demo/ */
  83. #tooltip.pretty {
  84. font-family: Arial;
  85. border: none;
  86. width: 210px;
  87. padding:20px;
  88. height: 135px;
  89. opacity: 0.8;
  90. background: url('/static/grafs/shadow.png');
  91. }
  92. #tooltip.pretty h3 {
  93. margin-bottom: 0.75em;
  94. font-size: 12pt;
  95. width: 220px;
  96. text-align: center;
  97. }
  98. #tooltip.pretty div {
  99. width: 220px;
  100. text-align: left;
  101. }
  102. #tooltip.pretty a {
  103. color: darkblue;
  104. }