style.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. body {
  2. text-align:center;
  3. font-family:verdana,sans-serif;
  4. background:#ffffff;
  5. }
  6. div,fieldset,input,select {
  7. padding:3px;
  8. font-size:1em;
  9. }
  10. div#main {
  11. text-align:left;
  12. display:inline-block;
  13. min-width:340px;
  14. }
  15. div#head {
  16. text-align:left;
  17. font-weight:bold;
  18. font-size:1em;
  19. }
  20. div.config {
  21. font-weight:bold;
  22. font-size:0.9em;
  23. }
  24. hr {
  25. width: 100%;
  26. border: 1px solid black;
  27. }
  28. fieldset {
  29. background:#ffffff;
  30. }
  31. p {
  32. margin:0.5em 0;
  33. }
  34. input {
  35. width:100%;
  36. box-sizing:border-box;
  37. -webkit-box-sizing:border-box;
  38. -moz-box-sizing:border-box;
  39. background:#ffffff;
  40. color:#000000;
  41. }
  42. input[type=checkbox],input[type=radio] {
  43. width:1em;
  44. margin-right:6px;
  45. vertical-align:-1px;
  46. }
  47. input[type=range] {
  48. width:99%;
  49. }
  50. select {
  51. width:100%;
  52. background:#ffffff;
  53. color:#000000;
  54. }
  55. textarea {
  56. resize:none;
  57. width:98%;
  58. height:318px;
  59. padding:5px;
  60. overflow:auto;
  61. background:#ffffff;
  62. color:#000000;
  63. }
  64. td {
  65. padding:2px;
  66. }
  67. button {
  68. border:0;
  69. border-radius:0.3rem;
  70. color:#ffffff;
  71. line-height:2.4rem;
  72. font-size:1.2rem;
  73. width:100%;
  74. -webkit-transition-duration:0.4s;
  75. transition-duration:0.4s;
  76. cursor:pointer;
  77. background:#1fa3ec;
  78. }
  79. button:hover {
  80. background:#0e70a4;
  81. }
  82. .bred {
  83. background:#d43535;
  84. }
  85. .bred:hover {
  86. background:#931f1f;
  87. }
  88. .bgrn {
  89. background:#47c266;
  90. }
  91. .bgrn:hover {
  92. background:#5aaf6f;
  93. }
  94. .bgrey {
  95. background:#909090;
  96. }
  97. .bgrey:hover {
  98. background:#606060;
  99. }
  100. a {
  101. color:#1fa3ec;
  102. text-decoration:none;
  103. }
  104. .p {
  105. float:left;
  106. text-align:left;
  107. font-weight:normal;
  108. }
  109. .q {
  110. float:right;
  111. text-align:right;
  112. }
  113. .r {
  114. border-radius:0.3em;
  115. padding:2px;
  116. margin:6px 2px;
  117. }