main.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /* -------------------------------------
  2. GLOBAL
  3. A very basic CSS reset
  4. ------------------------------------- */
  5. * {
  6. margin: 0;
  7. font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,STHeiti,"Microsoft Yahei","SimSun",sans-serif;
  8. box-sizing: border-box;
  9. font-size: 14px;
  10. }
  11. img {
  12. max-width: 100%;
  13. }
  14. body {
  15. -webkit-font-smoothing: antialiased;
  16. -webkit-text-size-adjust: none;
  17. width: 100% !important;
  18. height: 100%;
  19. line-height: 1.6em;
  20. }
  21. table td {
  22. vertical-align: top;
  23. }
  24. /* -------------------------------------
  25. BODY & CONTAINER
  26. ------------------------------------- */
  27. body {
  28. background-color: #f6f6f6;
  29. }
  30. .body-wrap {
  31. background-color: #f6f6f6;
  32. width: 100%;
  33. }
  34. .container {
  35. display: block !important;
  36. max-width: 600px !important;
  37. margin: 0 auto !important;
  38. /* makes it centered */
  39. clear: both !important;
  40. }
  41. .content {
  42. max-width: 600px;
  43. margin: 0 auto;
  44. display: block;
  45. padding: 20px;
  46. }
  47. /* -------------------------------------
  48. HEADER, FOOTER, MAIN
  49. ------------------------------------- */
  50. .main {
  51. background-color: #fff;
  52. border: 1px solid #e9e9e9;
  53. border-radius: 3px;
  54. }
  55. .content-wrap {
  56. padding: 20px;
  57. }
  58. .content-block {
  59. padding: 0 0 20px;
  60. }
  61. .header {
  62. width: 100%;
  63. margin-bottom: 20px;
  64. }
  65. .footer {
  66. width: 100%;
  67. clear: both;
  68. color: #999;
  69. padding: 20px;
  70. }
  71. .footer p, .footer a, .footer td {
  72. color: #999;
  73. font-size: 12px;
  74. }
  75. /* -------------------------------------
  76. TYPOGRAPHY
  77. ------------------------------------- */
  78. h1, h2, h3 {
  79. font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  80. color: #000;
  81. margin: 40px 0 0;
  82. line-height: 1.2em;
  83. font-weight: 400;
  84. }
  85. h1 {
  86. font-size: 32px;
  87. font-weight: 500;
  88. /* 1.2em * 32px = 38.4px, use px to get airier line-height also in Thunderbird, and Yahoo!, Outlook.com, AOL webmail clients */
  89. /*line-height: 38px;*/
  90. }
  91. h2 {
  92. font-size: 24px;
  93. /* 1.2em * 24px = 28.8px, use px to get airier line-height also in Thunderbird, and Yahoo!, Outlook.com, AOL webmail clients */
  94. /*line-height: 29px;*/
  95. }
  96. h3 {
  97. font-size: 18px;
  98. /* 1.2em * 18px = 21.6px, use px to get airier line-height also in Thunderbird, and Yahoo!, Outlook.com, AOL webmail clients */
  99. /*line-height: 22px;*/
  100. }
  101. h4 {
  102. font-size: 14px;
  103. font-weight: 600;
  104. }
  105. p, ul, ol {
  106. margin-bottom: 10px;
  107. font-weight: normal;
  108. }
  109. p li, ul li, ol li {
  110. margin-left: 5px;
  111. list-style-position: inside;
  112. }
  113. /* -------------------------------------
  114. LINKS & BUTTONS
  115. ------------------------------------- */
  116. a {
  117. color: #348eda;
  118. text-decoration: underline;
  119. }
  120. .btn-primary {
  121. text-decoration: none;
  122. color: #FFF;
  123. background-color: #348eda;
  124. border: solid #348eda;
  125. border-width: 10px 20px;
  126. line-height: 2em;
  127. /* 2em * 14px = 28px, use px to get airier line-height also in Thunderbird, and Yahoo!, Outlook.com, AOL webmail clients */
  128. /*line-height: 28px;*/
  129. font-weight: bold;
  130. text-align: center;
  131. cursor: pointer;
  132. display: inline-block;
  133. border-radius: 5px;
  134. text-transform: capitalize;
  135. }
  136. /* -------------------------------------
  137. OTHER STYLES THAT MIGHT BE USEFUL
  138. ------------------------------------- */
  139. .last {
  140. margin-bottom: 0;
  141. }
  142. .first {
  143. margin-top: 0;
  144. }
  145. .aligncenter {
  146. text-align: center;
  147. }
  148. .alignright {
  149. text-align: right;
  150. }
  151. .alignleft {
  152. text-align: left;
  153. }
  154. .clear {
  155. clear: both;
  156. }