admin.css 3.6 KB

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