admin.css 3.9 KB

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