options_main_page.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. background-color: #FFF;
  5. font-size: 0.9em;
  6. font-family: 'Open Sans', sans-serif;
  7. font-size: 75%;
  8. cursor: default;
  9. user-select: none;
  10. }
  11. h1 {
  12. color: rgb(92, 97, 102);
  13. font-size: 150%;
  14. font-weight: normal;
  15. line-height: 1;
  16. }
  17. #navigation {
  18. position: fixed;
  19. left: 0;
  20. width: 160px;
  21. height: 100%;
  22. padding-top: 15px;
  23. background-color: #FFF;
  24. background-color: #F7F7F7;
  25. border-right-width: 1px;
  26. border-right-style: solid;
  27. border-right-color: #E3E3E3;
  28. z-index: 1;
  29. }
  30. #navigation>h1 {
  31. margin-left: 5px;
  32. }
  33. #navigation>ul {
  34. list-style-type: none;
  35. margin: 0;
  36. padding: 0;
  37. }
  38. #navigation li {
  39. -webkit-border-start: 6px solid transparent;
  40. -webkit-padding-start: 18px;
  41. user-select: none;
  42. color: #999;
  43. cursor: pointer;
  44. line-height: 17px;
  45. margin: 5px 0;
  46. }
  47. #navigation li:hover {
  48. color: #777;
  49. }
  50. #navigation li.selected {
  51. -webkit-border-start-color: rgb(78, 87, 100);
  52. color: rgb(70, 78, 90);
  53. font-weight: bold;
  54. }
  55. #maincontent {
  56. position: fixed;
  57. width: 100%;
  58. height: 100%;
  59. margin: 0;
  60. padding: 0;
  61. background-color: #F7F7F7;
  62. border: none;
  63. }
  64. .box {
  65. margin-left: 180px;
  66. padding-top: 15px;
  67. padding-right: 15px;
  68. }
  69. .box h1 {
  70. color: #000;
  71. margin-top: 10px;
  72. margin-left: -10px;
  73. font-size: 200%;
  74. }
  75. .section-title {
  76. margin-top: 0px;
  77. margin-left: -10px;
  78. margin-bottom: 10px;
  79. font-size: 110%;
  80. font-weight: bold;
  81. }
  82. .section-title:first-of-type {
  83. margin-top: 10px;
  84. }
  85. .button {
  86. cursor: pointer;
  87. }
  88. .formLine {
  89. height: 30px;
  90. }
  91. .checker>span {
  92. margin-top: -2px !important;
  93. }
  94. A:link, A:visited, A:active, .link_like {
  95. color: #4183C4;
  96. cursor: pointer;
  97. text-decoration: none;
  98. font-weight: bold;
  99. }
  100. .linkify {
  101. cursor: pointer;
  102. }
  103. .linkify:hover {
  104. color: #4D4D4D;
  105. }
  106. .helper {
  107. border-bottom: 1px dotted #9e9e9e !important;
  108. color: #9e9e9e !important;
  109. cursor: pointer !important;
  110. text-decoration: none !important;
  111. }
  112. hr {
  113. margin: 10px 0 10px -15px;
  114. border-top-color: #E3E3E3;
  115. border-top-style: solid;
  116. border-width: 1px 0 0 0;
  117. }
  118. .template {
  119. display: none !important;
  120. }
  121. .table {
  122. padding-left: 0px;
  123. width: 100%;
  124. display: table;
  125. border-collapse: separate;
  126. border-spacing: 0px;
  127. }
  128. .table_row {
  129. width: 100%;
  130. display: table-row;
  131. vertical-align: middle
  132. }
  133. .header div {
  134. padding-left: 0px !important;
  135. font-weight: bold;
  136. }
  137. .table_row div {
  138. height: 30px;
  139. padding-right: 10px;
  140. display: table-cell;
  141. text-align: left;
  142. vertical-align: middle;
  143. }
  144. .fa {
  145. font-size: 1.2em;
  146. line-height: 20px;
  147. }