admin.css 3.8 KB

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