style.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; vertical-align: top; background: transparent; } /*Reset style*/
  2. button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner { border: none; } input[type="checkbox"]:focus { -moz-outline-offset: -1px !important; -moz-outline: 1px solid #000 !important; } :focus { outline: none; } /*Remove a dotted line around 1) buttons, 2) checkboxes, 3) links*/
  3. a { text-decoration: none; cursor: pointer; color: inherit; } a:hover { text-decoration: underline; }
  4. div, span, a, input { background-repeat: no-repeat; }
  5. body {
  6. width: 782px;
  7. margin: 0 auto;
  8. background: #fff;
  9. color: #000;
  10. font-size: 14px;
  11. font-family: Tahoma, Arial, Verdana, sans-serif, Lucida Sans;
  12. line-height: 1.5em;
  13. text-align: center;
  14. }
  15. .allPage {
  16. position: relative;
  17. width: 690px;
  18. margin: 15px auto;
  19. padding: 10px 30px 15px 30px;
  20. background: #eee;
  21. border: 2px solid #999;
  22. text-align: left;
  23. }
  24. .allPage:after { content: ""; position: absolute; left: -1px; top: -1px; width: 100%; height: 100%; height: calc(100% - 2px); padding: 0 1px; box-shadow: 0px 5px 8px #bbb; z-index: -1; } /*for crop shadow bottom for 4px (2px from border and 2px from calc)*/
  25. .mainTitle {
  26. font-size: 2em;
  27. font-weight: bold;
  28. margin: 0.6em 0;
  29. white-space: nowrap;
  30. }
  31. .mainTitle-text {
  32. display: inline-block;
  33. }
  34. .flagLink {
  35. display: inline-block;
  36. }
  37. .flagLink.first { margin-left: 20px; }
  38. .chooseLang {
  39. width: 24px;
  40. height: 24px;
  41. margin: 0 5px;
  42. opacity: 0.9;
  43. vertical-align: middle;
  44. }
  45. p {
  46. margin: 0.4em 0;
  47. }
  48. p.margin1 { margin: 0.9em 0; }
  49. .linksBox {
  50. color: #999;
  51. }
  52. .example {
  53. width: 445px;
  54. height: 200px;
  55. }
  56. .blueLink {
  57. color: #36b;
  58. }
  59. .grayLink {
  60. color: #999;
  61. }
  62. .secondTitle {
  63. font-size: 1.5em;
  64. font-weight: bold;
  65. margin: 2.4em 0 1.2em;
  66. line-height: 1.3em;
  67. }
  68. .optionBox {
  69. margin: 1.5em 0;
  70. white-space: nowrap;
  71. }
  72. .option-left {
  73. display: inline-block;
  74. width: 180px;
  75. color: #707070;
  76. font-weight: bold;
  77. }
  78. .option-left-small {
  79. font-size: 0.8em;
  80. line-height: 1.5em;
  81. }
  82. .option-right {
  83. display: inline-block;
  84. white-space: normal;
  85. }
  86. .option-right-small {
  87. margin-top: 2px;
  88. font-size: 0.9em;
  89. }
  90. .option-hint {
  91. margin: 0.5em 0;
  92. color: #888;
  93. font-size: 0.85em;
  94. line-height: 1.5em;
  95. white-space: normal;
  96. }
  97. #url {
  98. width: 300px;
  99. height: 23px;
  100. padding: 0 3px;
  101. border: 1px solid #b0b0b0;
  102. }
  103. label {
  104. margin: 0 5px 0 0;
  105. padding: 0;
  106. cursor: pointer;
  107. }
  108. .radio {
  109. margin: 0 4px 0 0;
  110. padding: 0;
  111. cursor: pointer;
  112. vertical-align: middle;
  113. }
  114. .r-text {
  115. vertical-align: middle;
  116. }
  117. .radio:checked + .r-text { color: #494; }
  118. .button {
  119. min-width: 160px;
  120. height: 26px;
  121. margin: 0 10px 3px 0;
  122. padding-bottom: 1px;
  123. background: #f2f2f2;
  124. background-image: linear-gradient(to bottom, #f9f9f9, #dadada);
  125. border: 1px solid #999;
  126. border-radius: 1px;
  127. cursor: pointer;
  128. }
  129. .button:hover { background: #f7f7f7; background-image: linear-gradient(to bottom, #fefefe, #e2e2e2); }
  130. .bottomHint {
  131. margin: 0.85em 0;
  132. color: #888;
  133. font-size: 0.85em;
  134. line-height: 1.5em;
  135. }