admin.css 2.1 KB

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