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.

103 lines
1.4 KiB

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