admin.css 3.0 KB

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