admin.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. html {
  2. width: 1000px;
  3. }
  4. body {
  5. background:#ccc;
  6. color:#0c0c0c;
  7. margin: 20px 0 0 200px;
  8. font-family: TitilliumWeb;
  9. font-size: 100%;
  10. }
  11. input, select {
  12. font-family: sans-serif;
  13. font-size: 100%;
  14. color: #111;
  15. display: block;
  16. font-family: sans-serif;
  17. font-size: 100%;
  18. width: 200px;
  19. padding: 5px;
  20. margin: 5px 5px 0 0;
  21. border: 1px solid #666;
  22. -moz-box-sizing: border-box;
  23. -webkit-box-sizing: border-box;
  24. box-sizing: border-box;
  25. background: #fcfcfc;
  26. }
  27. input {
  28. text-indent: 4px;
  29. background: #fcfcfc;
  30. }
  31. input[type='submit'] {
  32. padding-right: 8px;
  33. width: inherit;
  34. font-size: 100%;
  35. cursor: pointer;
  36. }
  37. input[type='button'],
  38. input[type='submit'],
  39. input[type='reset'],
  40. input[type='file']::-webkit-file-upload-button,
  41. button {
  42. cursor: pointer;
  43. }
  44. div#uploadbox {
  45. position: relative;
  46. height: 38px;
  47. }
  48. input#uploadbtn,
  49. input#uploadfile {
  50. position: absolute;
  51. top: 0;
  52. left: 0;
  53. height: 33px;
  54. cursor: pointer;
  55. width: auto;
  56. }
  57. input#uploadbtn {
  58. opacity: 0;
  59. }
  60. /*
  61. input[type='file'] {
  62. padding-right: 8px;
  63. width: 400px;
  64. font-size: 100%;
  65. position: absolute;
  66. top: 0;
  67. right: 0;
  68. margin: 0;
  69. padding: 0;
  70. cursor: pointer;
  71. opacity: 0;
  72. filter: alpha(opacity=0);
  73. } */
  74. img.logo {
  75. position: absolute;
  76. left:50px;
  77. top: 20px;
  78. }
  79. hr {
  80. border: 0;
  81. height: 1px;
  82. background: #aaa
  83. }
  84. pre {
  85. white-space: pre-wrap;
  86. }
  87. fieldset {
  88. border: 0;
  89. margin: 0;
  90. padding: 0;
  91. }
  92. .inline {
  93. display: inline;
  94. }
  95. .hide {
  96. visibility: hidden;
  97. display: none;
  98. }
  99. .show {
  100. visibility: visible;
  101. display: inline-block;
  102. }
  103. @font-face {
  104. font-family: TitilliumWeb;
  105. src: url('/resources/fonts/Titillium_Web/TitilliumWeb-Regular.ttf') format('truetype');
  106. }
  107. @font-face {
  108. font-family: TitilliumWeb;
  109. font-weight: bold;
  110. src: url('/resources/fonts/Titillium_Web/TitilliumWeb-Bold.ttf') format('truetype'); }