Theme Inspinia
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. /* -------------------------------------
  2. GLOBAL
  3. A very basic CSS reset
  4. ------------------------------------- */
  5. * {
  6. margin: 0;
  7. padding: 0;
  8. font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  9. box-sizing: border-box;
  10. font-size: 14px;
  11. }
  12. img {
  13. max-width: 100%;
  14. }
  15. body {
  16. -webkit-font-smoothing: antialiased;
  17. -webkit-text-size-adjust: none;
  18. width: 100% !important;
  19. height: 100%;
  20. line-height: 1.6;
  21. }
  22. /* Let's make sure all tables have defaults */
  23. table td {
  24. vertical-align: top;
  25. }
  26. /* -------------------------------------
  27. BODY & CONTAINER
  28. ------------------------------------- */
  29. body {
  30. background-color: #f6f6f6;
  31. }
  32. .body-wrap {
  33. background-color: #f6f6f6;
  34. width: 100%;
  35. }
  36. .container {
  37. display: block !important;
  38. max-width: 600px !important;
  39. margin: 0 auto !important;
  40. /* makes it centered */
  41. clear: both !important;
  42. }
  43. .content {
  44. max-width: 600px;
  45. margin: 0 auto;
  46. display: block;
  47. padding: 20px;
  48. }
  49. /* -------------------------------------
  50. HEADER, FOOTER, MAIN
  51. ------------------------------------- */
  52. .main {
  53. background: #fff;
  54. border: 1px solid #e9e9e9;
  55. border-radius: 3px;
  56. }
  57. .content-wrap {
  58. padding: 20px;
  59. }
  60. .content-block {
  61. padding: 0 0 20px;
  62. }
  63. .header {
  64. width: 100%;
  65. margin-bottom: 20px;
  66. }
  67. .footer {
  68. width: 100%;
  69. clear: both;
  70. color: #999;
  71. padding: 20px;
  72. }
  73. .footer a {
  74. color: #999;
  75. }
  76. .footer p, .footer a, .footer unsubscribe, .footer td {
  77. font-size: 12px;
  78. }
  79. /* -------------------------------------
  80. TYPOGRAPHY
  81. ------------------------------------- */
  82. h1, h2, h3 {
  83. font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  84. color: #000;
  85. margin: 40px 0 0;
  86. line-height: 1.2;
  87. font-weight: 400;
  88. }
  89. h1 {
  90. font-size: 32px;
  91. font-weight: 500;
  92. }
  93. h2 {
  94. font-size: 24px;
  95. }
  96. h3 {
  97. font-size: 18px;
  98. }
  99. h4 {
  100. font-size: 14px;
  101. font-weight: 600;
  102. }
  103. p, ul, ol {
  104. margin-bottom: 10px;
  105. font-weight: normal;
  106. }
  107. p li, ul li, ol li {
  108. margin-left: 5px;
  109. list-style-position: inside;
  110. }
  111. /* -------------------------------------
  112. LINKS & BUTTONS
  113. ------------------------------------- */
  114. a {
  115. color: #1ab394;
  116. text-decoration: underline;
  117. }
  118. .btn-primary {
  119. text-decoration: none;
  120. color: #FFF;
  121. background-color: #1ab394;
  122. border: solid #1ab394;
  123. border-width: 5px 10px;
  124. line-height: 2;
  125. font-weight: bold;
  126. text-align: center;
  127. cursor: pointer;
  128. display: inline-block;
  129. border-radius: 5px;
  130. text-transform: capitalize;
  131. }
  132. /* -------------------------------------
  133. OTHER STYLES THAT MIGHT BE USEFUL
  134. ------------------------------------- */
  135. .last {
  136. margin-bottom: 0;
  137. }
  138. .first {
  139. margin-top: 0;
  140. }
  141. .aligncenter {
  142. text-align: center;
  143. }
  144. .alignright {
  145. text-align: right;
  146. }
  147. .alignleft {
  148. text-align: left;
  149. }
  150. .clear {
  151. clear: both;
  152. }
  153. /* -------------------------------------
  154. ALERTS
  155. Change the class depending on warning email, good email or bad email
  156. ------------------------------------- */
  157. .alert {
  158. font-size: 16px;
  159. color: #fff;
  160. font-weight: 500;
  161. padding: 20px;
  162. text-align: center;
  163. border-radius: 3px 3px 0 0;
  164. }
  165. .alert a {
  166. color: #fff;
  167. text-decoration: none;
  168. font-weight: 500;
  169. font-size: 16px;
  170. }
  171. .alert.alert-warning {
  172. background: #f8ac59;
  173. }
  174. .alert.alert-bad {
  175. background: #ed5565;
  176. }
  177. .alert.alert-good {
  178. background: #1ab394;
  179. }
  180. /* -------------------------------------
  181. INVOICE
  182. Styles for the billing table
  183. ------------------------------------- */
  184. .invoice {
  185. margin: 40px auto;
  186. text-align: left;
  187. width: 80%;
  188. }
  189. .invoice td {
  190. padding: 5px 0;
  191. }
  192. .invoice .invoice-items {
  193. width: 100%;
  194. }
  195. .invoice .invoice-items td {
  196. border-top: #eee 1px solid;
  197. }
  198. .invoice .invoice-items .total td {
  199. border-top: 2px solid #333;
  200. border-bottom: 2px solid #333;
  201. font-weight: 700;
  202. }
  203. /* -------------------------------------
  204. RESPONSIVE AND MOBILE FRIENDLY STYLES
  205. ------------------------------------- */
  206. @media only screen and (max-width: 640px) {
  207. h1, h2, h3, h4 {
  208. font-weight: 600 !important;
  209. margin: 20px 0 5px !important;
  210. }
  211. h1 {
  212. font-size: 22px !important;
  213. }
  214. h2 {
  215. font-size: 18px !important;
  216. }
  217. h3 {
  218. font-size: 16px !important;
  219. }
  220. .container {
  221. width: 100% !important;
  222. }
  223. .content, .content-wrap {
  224. padding: 10px !important;
  225. }
  226. .invoice {
  227. width: 100% !important;
  228. }
  229. }