admin.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. @font-face {
  2. font-family: TitilliumWeb;
  3. src: url('/resources/fonts/Titillium_Web/TitilliumWeb-Regular.ttf') format('truetype');
  4. }
  5. @font-face {
  6. font-family: TitilliumWeb;
  7. font-weight: bold;
  8. src: url('/resources/fonts/Titillium_Web/TitilliumWeb-Bold.ttf') format('truetype');
  9. }
  10. html {
  11. /* width: 1000px; */
  12. max-width: 1000px;
  13. }
  14. body {
  15. background:#b9bbc0;
  16. color:#2c2c2c;
  17. margin: 20px 0 0 200px;
  18. font-family: TitilliumWeb;
  19. font-size: 100%;
  20. cursor: default;
  21. }
  22. input, select {
  23. font-family: TitilliumWeb;
  24. font-size: 100%;
  25. color: #2c2c2c;
  26. display: block;
  27. width: 200px;
  28. padding: 5px;
  29. margin: 5px 5px 0 0;
  30. border: 1px solid #666;
  31. box-sizing: border-box;
  32. background: #fcfcfc;
  33. }
  34. select {
  35. padding: 4px 5px 4px 5px;
  36. background: url('/resources/img/dropdown.svg') no-repeat right center #fcfcfc;
  37. appearance: none;
  38. -moz-appearance: none;
  39. -webkit-appearance: none;
  40. text-indent: 0.01px;
  41. background-size: 12px;
  42. background-position: 180px;
  43. cursor: pointer;
  44. }
  45. input {
  46. text-indent: 4px;
  47. background: #fcfcfc;
  48. }
  49. input[type='submit'] {
  50. padding-right: 8px;
  51. margin: 10px 2px 0 0;
  52. width: inherit;
  53. font-size: 100%;
  54. cursor: pointer;
  55. }
  56. input[type='checkbox'] {
  57. width: 26px;
  58. height: 30px;
  59. display: inline-block ! important;
  60. }
  61. label {
  62. vertical-align: super;
  63. }
  64. input[type='button'],
  65. input[type='submit'],
  66. input[type='reset'],
  67. input[type='file']::-webkit-file-upload-button,
  68. button {
  69. cursor: pointer;
  70. }
  71. div#uploadbox {
  72. position: relative;
  73. height: 38px;
  74. }
  75. input#uploadbtn,
  76. input#uploadfile {
  77. position: absolute;
  78. top: -2px;
  79. left: 0;
  80. bottom: 2px;
  81. height: 35px;
  82. cursor: pointer;
  83. width: auto;
  84. min-width: 405px;
  85. }
  86. input#uploadbtn {
  87. opacity: 0;
  88. }
  89. /*
  90. input[type='file'] {
  91. padding-right: 8px;
  92. width: 400px;
  93. font-size: 100%;
  94. position: absolute;
  95. top: 0;
  96. right: 0;
  97. margin: 0;
  98. padding: 0;
  99. cursor: pointer;
  100. opacity: 0;
  101. filter: alpha(opacity=0);
  102. } */
  103. img.logo {
  104. position: absolute;
  105. left:50px;
  106. top: 34px;
  107. opacity: 0.8;
  108. }
  109. hr {
  110. margin-top: 1em;
  111. border: 0;
  112. height: 1px;
  113. background: #999;
  114. }
  115. pre {
  116. white-space: pre-wrap;
  117. }
  118. fieldset {
  119. border: 0;
  120. margin: 0;
  121. padding: 0;
  122. }
  123. h1 {
  124. margin: 0.67em auto;
  125. }
  126. h2 {
  127. /* margin: 0.67em auto; */
  128. /* margin: 0.4em auto 0.1em; */
  129. margin: 0;
  130. padding: 0.2em 0 0.1em;
  131. }
  132. h4 {
  133. margin: 0;
  134. padding: 0.2em 0 0.1em;
  135. }
  136. section {
  137. border-bottom: solid 1px #999;
  138. padding-bottom: 1em;
  139. padding-left: 0.8em;
  140. position: relative;
  141. }
  142. section:not(.inert):hover {
  143. background-color: #c7cacf;
  144. opacity: 1;
  145. transition: all 0.5s ease;
  146. }
  147. span.help {
  148. position: relative;
  149. visibility: hidden;
  150. opacity: 0;
  151. font-size: smaller;
  152. line-height: 1.3em;
  153. position: absolute;
  154. top: 0;
  155. right: 0;
  156. margin: 0.1em 0.5em;
  157. cursor: help;
  158. border-bottom: dotted 1px #000;
  159. }
  160. section:not(.inert):hover span.help {
  161. visibility: visible;
  162. opacity: 0.6;
  163. transition: all 1s ease-in;
  164. }
  165. span.help::after{
  166. display:block;
  167. position: absolute;
  168. top: -1.7em;
  169. right: -2px;
  170. background-color: #fff;
  171. border: solid 1px #777;
  172. opacity: 0;
  173. font-size: smaller;
  174. padding: 0.1em 1em;
  175. max-width: 200px;
  176. white-space: pre;
  177. }
  178. span.help:hover::after,
  179. span.help:active::after
  180. {
  181. content: 'coming soon..';
  182. opacity: 1;
  183. display: block;
  184. }
  185. .inline {
  186. display: inline;
  187. }
  188. .block {
  189. display: block;
  190. }
  191. .inline-block {
  192. display: inline-block;
  193. }
  194. .hide {
  195. visibility: hidden;
  196. display: none;
  197. }
  198. .show {
  199. visibility: visible;
  200. display: inline-block;
  201. }
  202. /* .grey {
  203. background-color: #ddd;
  204. } */
  205. span#timeout {
  206. display: inline-block;
  207. padding-left: 20px;
  208. }
  209. input[type="text"]:read-only {
  210. background-color: #ddd;
  211. cursor: default;
  212. }
  213. input[type="text"]:-moz-read-only {
  214. background-color: #ddd;
  215. cursor: default;
  216. }
  217. input[type="text"][disabled] {
  218. color: #aaa;
  219. }
  220. input::-webkit-input-placeholder {
  221. color: #777;
  222. }
  223. :-moz-placeholder {
  224. color: #555;
  225. }