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.

113 lines
1.5 KiB

  1. #content {
  2. background-color: white;
  3. width: 80%;
  4. margin: 25px auto;
  5. padding: 10px;
  6. border: 2px solid grey;
  7. }
  8. #mobilecontent {
  9. background-color: white;
  10. width: 90%;
  11. margin: 25px auto;
  12. border: 2px solid grey;
  13. padding: 0;
  14. padding-top: 10px;
  15. padding-bottom: 10px;
  16. }
  17. #headpanel {
  18. position: relative;
  19. padding: 45px 2em 1em 20px;
  20. }
  21. #headlinks {
  22. position:absolute;
  23. right: 10px;
  24. top: 10px;
  25. }
  26. #navipanel {
  27. background-color: lightgrey;
  28. border-top: 1px solid black;
  29. border-bottom: 1px solid black;
  30. padding-left: 20px;
  31. height: 25px;
  32. }
  33. #navilinks {
  34. display: inline;
  35. list-style-type: none;
  36. }
  37. #navilinks li {
  38. display: inline;
  39. padding: 0;
  40. margin: 0;
  41. float: left;
  42. }
  43. #navilinks a, #navilinks b {
  44. display: block;
  45. padding: 0 5px;
  46. font-size: 10pt;
  47. font-weight: bold;
  48. line-height: 25px;
  49. width: auto;
  50. }
  51. #navilinks a {
  52. border-left: 1px solid white;
  53. border-right: 1px solid #eeeeee;
  54. color: black;
  55. text-decoration: none;
  56. }
  57. #navilinks b {
  58. color: white;
  59. background-color: #272727;
  60. }
  61. #contentpanel {
  62. padding: 45px 2em 1em 20px;
  63. }
  64. #contentleft {
  65. float:left;
  66. width:40%;
  67. border-right: 1px dotted grey;
  68. margin-right: 5px;
  69. }
  70. #contentright {
  71. margin-left:40%;
  72. }
  73. #footerpanel {
  74. border-top: 5px solid #EFEFEF;
  75. clear:both;
  76. margin-top:10px;
  77. padding-top: 5px;
  78. }
  79. #headpanel h2 {
  80. font-family: "Times New Roman",Times,serif;
  81. font-weight: normal;
  82. color: #222222;
  83. margin-bottom: 1em;
  84. font-size: 14pt;
  85. }
  86. a {
  87. text-decoration: none;
  88. color: #4D87C7;
  89. }
  90. a:visited {
  91. color: #003366;
  92. }
  93. a:focus, a:hover, a:active {
  94. text-decoration: underline;
  95. color: #182E7A;
  96. }