admin.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. html {
  2. /* width: 1000px; */
  3. max-width: 1000px;
  4. }
  5. body {
  6. background:#b9bbc0;
  7. color:#0c0c0c;
  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: #111;
  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. }
  81. hr {
  82. margin-top: 1em;
  83. border: 0;
  84. height: 1px;
  85. background: #999;
  86. }
  87. pre {
  88. white-space: pre-wrap;
  89. }
  90. fieldset {
  91. border: 0;
  92. margin: 0;
  93. padding: 0;
  94. }
  95. h1 {
  96. margin: 0.67em auto;
  97. }
  98. h2 {
  99. /* margin: 0.67em auto; */
  100. /* margin: 0.4em auto 0.1em; */
  101. margin: 0;
  102. padding: 0.2em 0 0.1em;
  103. }
  104. section {
  105. border-bottom: solid 1px #999;
  106. padding-bottom: 1em;
  107. padding-left: 0.8em;
  108. position: relative;
  109. }
  110. section:not(.inert):hover {
  111. background-color: #c7cacf;
  112. opacity: 1;
  113. transition: all 0.5s ease;
  114. }
  115. span.help {
  116. position: relative;
  117. visibility: hidden;
  118. opacity: 0;
  119. font-size: smaller;
  120. line-height: 1.3em;
  121. position: absolute;
  122. top: 0;
  123. right: 0;
  124. margin: 0.1em 0.5em;
  125. cursor: help;
  126. border-bottom: dotted 1px #000;
  127. }
  128. section:not(.inert):hover span.help {
  129. visibility: visible;
  130. opacity: 0.6;
  131. transition: all 1s ease-in;
  132. }
  133. span.help::after{
  134. display:block;
  135. position: absolute;
  136. top: -1.7em;
  137. right: -2px;
  138. background-color: #fff;
  139. border: solid 1px #777;
  140. opacity: 0;
  141. font-size: smaller;
  142. padding: 0.1em 1em;
  143. max-width: 200px;
  144. white-space: pre;
  145. }
  146. span.help:hover::after,
  147. span.help:active::after
  148. {
  149. content: 'coming soon..';
  150. opacity: 1;
  151. display: block;
  152. }
  153. .inline {
  154. display: inline;
  155. }
  156. .block {
  157. display: block;
  158. }
  159. .inline-block {
  160. display: inline-block;
  161. }
  162. .hide {
  163. visibility: hidden;
  164. display: none;
  165. }
  166. .show {
  167. visibility: visible;
  168. display: inline-block;
  169. }
  170. @font-face {
  171. font-family: TitilliumWeb;
  172. src: url('/resources/fonts/Titillium_Web/TitilliumWeb-Regular.ttf') format('truetype');
  173. }
  174. @font-face {
  175. font-family: TitilliumWeb;
  176. font-weight: bold;
  177. src: url('/resources/fonts/Titillium_Web/TitilliumWeb-Bold.ttf') format('truetype'); }