style.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. button::-moz-focus-inner,
  2. input[type="reset"]::-moz-focus-inner,
  3. input[type="button"]::-moz-focus-inner,
  4. input[type="submit"]::-moz-focus-inner,
  5. input[type="submit"]::-moz-focus-inner,
  6. input[type="file"] > input[type="button"]::-moz-focus-inner
  7. {
  8. border: none;
  9. }
  10. input[type="checkbox"]:focus {
  11. -moz-outline-offset: -1px !important;
  12. -moz-outline: 1px solid #000 !important;
  13. }
  14. :focus {
  15. outline: none;
  16. } /*Remove a dotted line around 1) buttons, 2) checkboxes, 3) links*/
  17. a {
  18. text-decoration: none;
  19. cursor: pointer;
  20. color: inherit;
  21. }
  22. a:hover {
  23. text-decoration: underline;
  24. }
  25. div, span, a, input {
  26. background-repeat: no-repeat;
  27. }
  28. body {
  29. width: 782px;
  30. margin: 0 auto;
  31. background: #ccc url(bg.png) no-repeat center bottom;
  32. color: #000;
  33. font-size: 14px;
  34. font-family: Tahoma, Arial, Verdana, Meiryo, "MS Gothic", sans-serif, Lucida Sans;
  35. line-height: 1.5em;
  36. text-align: center;
  37. }
  38. .all-page {
  39. position: relative;
  40. width: 690px;
  41. margin: 15px auto;
  42. padding: 10px 30px 15px 30px;
  43. background: #eee;
  44. border: 2px solid #999;
  45. border-radius: 8px;
  46. text-align: left;
  47. }
  48. .all-page:after {
  49. content: "";
  50. position: absolute;
  51. left: -1px;
  52. top: -1px;
  53. width: 100%;
  54. height: 100%;
  55. height: calc(100% - 2px);
  56. padding: 0 1px;
  57. box-shadow: 0px 5px 8px #bbb;
  58. z-index: -1;
  59. } /*for crop shadow bottom for 4px (2px from border and 2px from calc)*/
  60. .main-title {
  61. font-size: 2em;
  62. font-weight: bold;
  63. margin: 0.6em 0;
  64. white-space: nowrap;
  65. display: inline-block;
  66. }
  67. .choose-lang {
  68. font-size: 0.8em;
  69. margin: 0 5px;
  70. opacity: 0.9;
  71. vertical-align: middle;
  72. }
  73. p {
  74. margin: 0.4em 0;
  75. }
  76. p.margin1 { margin: 0.9em 0; }
  77. .links-box {
  78. color: #999;
  79. }
  80. .example {
  81. width: 445px;
  82. height: 200px;
  83. }
  84. .blue-link {
  85. color: #36b;
  86. }
  87. .gray-link {
  88. color: #999;
  89. }
  90. .second-title {
  91. font-size: 1.5em;
  92. font-weight: bold;
  93. margin: 1em 0 1em;
  94. line-height: 1.3em;
  95. }
  96. .option-box {
  97. margin: 1.5em 0;
  98. white-space: nowrap;
  99. }
  100. .option-left {
  101. display: inline-block;
  102. width: 220px;
  103. color: #707070;
  104. font-weight: bold;
  105. }
  106. .option-left-small {
  107. font-size: 0.8em;
  108. line-height: 1.5em;
  109. }
  110. .option-right {
  111. display: inline-block;
  112. white-space: normal;
  113. vertical-align: top;
  114. }
  115. .option-right-small {
  116. margin-top: 2px;
  117. font-size: 0.9em;
  118. }
  119. .option-hint {
  120. margin: 0.5em 0;
  121. color: #888;
  122. font-size: 0.85em;
  123. line-height: 1.5em;
  124. white-space: normal;
  125. }
  126. #url {
  127. width: 300px;
  128. height: 23px;
  129. padding: 0 3px;
  130. border: 1px solid #b0b0b0;
  131. }
  132. label {
  133. margin: 0 5px 0 0;
  134. padding: 0;
  135. cursor: pointer;
  136. }
  137. .radio {
  138. margin: 0 4px 0 0;
  139. padding: 0;
  140. cursor: pointer;
  141. vertical-align: middle;
  142. }
  143. .r-text {
  144. vertical-align: middle;
  145. }
  146. .radio:checked + .r-text { color: #494; }
  147. .button {
  148. min-width: 160px;
  149. height: 26px;
  150. margin: 0 10px 3px 0;
  151. padding-bottom: 1px;
  152. background: #f2f2f2;
  153. background-image: linear-gradient(to bottom, #f9f9f9, #dadada);
  154. border: 1px solid #999;
  155. border-radius: 1px;
  156. cursor: pointer;
  157. }
  158. .button:hover:enabled {
  159. background: #f7f7f7;
  160. background-image: linear-gradient(to bottom, #fefefe, #e2e2e2);
  161. }
  162. .button:disabled {
  163. background-image: none;
  164. background-color: #ccc;
  165. border-color: #ccc;
  166. }
  167. .bottom-hint {
  168. margin: 0.85em 0;
  169. color: #888;
  170. font-size: 0.85em;
  171. line-height: 1.5em;
  172. }
  173. .address {
  174. text-align: center;
  175. }
  176. .tta_rule_text td {
  177. padding: 4px;
  178. border: 1px solid #ccc;
  179. }