admin.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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. input {
  35. text-indent: 4px;
  36. background: #fcfcfc;
  37. }
  38. input[type='submit'] {
  39. padding-right: 8px;
  40. width: inherit;
  41. font-size: 100%;
  42. cursor: pointer;
  43. }
  44. input[type='button'],
  45. input[type='submit'],
  46. input[type='reset'],
  47. input[type='file']::-webkit-file-upload-button,
  48. button {
  49. cursor: pointer;
  50. }
  51. div#uploadbox {
  52. position: relative;
  53. height: 38px;
  54. }
  55. input#uploadbtn,
  56. input#uploadfile {
  57. position: absolute;
  58. top: 0;
  59. left: 0;
  60. height: 33px;
  61. cursor: pointer;
  62. width: auto;
  63. }
  64. input#uploadbtn {
  65. opacity: 0;
  66. }
  67. /*
  68. input[type='file'] {
  69. padding-right: 8px;
  70. width: 400px;
  71. font-size: 100%;
  72. position: absolute;
  73. top: 0;
  74. right: 0;
  75. margin: 0;
  76. padding: 0;
  77. cursor: pointer;
  78. opacity: 0;
  79. filter: alpha(opacity=0);
  80. } */
  81. img.logo {
  82. position: absolute;
  83. left:50px;
  84. top: 34px;
  85. opacity: 0.8;
  86. }
  87. hr {
  88. margin-top: 1em;
  89. border: 0;
  90. height: 1px;
  91. background: #999;
  92. }
  93. pre {
  94. white-space: pre-wrap;
  95. }
  96. fieldset {
  97. border: 0;
  98. margin: 0;
  99. padding: 0;
  100. }
  101. h1 {
  102. margin: 0.67em auto;
  103. }
  104. h2 {
  105. /* margin: 0.67em auto; */
  106. /* margin: 0.4em auto 0.1em; */
  107. margin: 0;
  108. padding: 0.2em 0 0.1em;
  109. }
  110. section {
  111. border-bottom: solid 1px #999;
  112. padding-bottom: 1em;
  113. padding-left: 0.8em;
  114. position: relative;
  115. }
  116. section:not(.inert):hover {
  117. background-color: #c7cacf;
  118. opacity: 1;
  119. transition: all 0.5s ease;
  120. }
  121. span.help {
  122. position: relative;
  123. visibility: hidden;
  124. opacity: 0;
  125. font-size: smaller;
  126. line-height: 1.3em;
  127. position: absolute;
  128. top: 0;
  129. right: 0;
  130. margin: 0.1em 0.5em;
  131. cursor: help;
  132. border-bottom: dotted 1px #000;
  133. }
  134. section:not(.inert):hover span.help {
  135. visibility: visible;
  136. opacity: 0.6;
  137. transition: all 1s ease-in;
  138. }
  139. span.help::after{
  140. display:block;
  141. position: absolute;
  142. top: -1.7em;
  143. right: -2px;
  144. background-color: #fff;
  145. border: solid 1px #777;
  146. opacity: 0;
  147. font-size: smaller;
  148. padding: 0.1em 1em;
  149. max-width: 200px;
  150. white-space: pre;
  151. }
  152. span.help:hover::after,
  153. span.help:active::after
  154. {
  155. content: 'coming soon..';
  156. opacity: 1;
  157. display: block;
  158. }
  159. .inline {
  160. display: inline;
  161. }
  162. .block {
  163. display: block;
  164. }
  165. .inline-block {
  166. display: inline-block;
  167. }
  168. .hide {
  169. visibility: hidden;
  170. display: none;
  171. }
  172. .show {
  173. visibility: visible;
  174. display: inline-block;
  175. }