default.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. /* Base */
  2. body,
  3. body *:not(html):not(style):not(br):not(tr):not(code) {
  4. box-sizing: border-box;
  5. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
  6. 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  7. position: relative;
  8. }
  9. body {
  10. -webkit-text-size-adjust: none;
  11. background-color: #ffffff;
  12. color: #718096;
  13. height: 100%;
  14. line-height: 1.4;
  15. margin: 0;
  16. padding: 0;
  17. width: 100% !important;
  18. }
  19. p,
  20. ul,
  21. ol,
  22. blockquote {
  23. line-height: 1.4;
  24. text-align: left;
  25. }
  26. a {
  27. color: #3869d4;
  28. }
  29. a img {
  30. border: none;
  31. }
  32. /* Typography */
  33. h1 {
  34. color: #3d4852;
  35. font-size: 18px;
  36. font-weight: bold;
  37. margin-top: 0;
  38. text-align: left;
  39. }
  40. h2 {
  41. font-size: 16px;
  42. font-weight: bold;
  43. margin-top: 0;
  44. text-align: left;
  45. }
  46. h3 {
  47. font-size: 14px;
  48. font-weight: bold;
  49. margin-top: 0;
  50. text-align: left;
  51. }
  52. p {
  53. font-size: 16px;
  54. line-height: 1.5em;
  55. margin-top: 0;
  56. text-align: left;
  57. }
  58. p.sub {
  59. font-size: 12px;
  60. }
  61. img {
  62. max-width: 100%;
  63. }
  64. /* Layout */
  65. .wrapper {
  66. -premailer-cellpadding: 0;
  67. -premailer-cellspacing: 0;
  68. -premailer-width: 100%;
  69. background-color: #edf2f7;
  70. margin: 0;
  71. padding: 0;
  72. width: 100%;
  73. }
  74. .content {
  75. -premailer-cellpadding: 0;
  76. -premailer-cellspacing: 0;
  77. -premailer-width: 100%;
  78. margin: 0;
  79. padding: 0;
  80. width: 100%;
  81. }
  82. /* Header */
  83. .header {
  84. padding: 25px 0;
  85. text-align: center;
  86. }
  87. .header a {
  88. color: #3d4852;
  89. font-size: 19px;
  90. font-weight: bold;
  91. text-decoration: none;
  92. }
  93. /* Logo */
  94. .logo {
  95. height: 75px;
  96. width: 75px;
  97. }
  98. /* Body */
  99. .body {
  100. -premailer-cellpadding: 0;
  101. -premailer-cellspacing: 0;
  102. -premailer-width: 100%;
  103. background-color: #edf2f7;
  104. border-bottom: 1px solid #edf2f7;
  105. border-top: 1px solid #edf2f7;
  106. margin: 0;
  107. padding: 0;
  108. width: 100%;
  109. }
  110. .inner-body {
  111. -premailer-cellpadding: 0;
  112. -premailer-cellspacing: 0;
  113. -premailer-width: 570px;
  114. background-color: #ffffff;
  115. border-color: #e8e5ef;
  116. border-radius: 2px;
  117. border-width: 1px;
  118. box-shadow: 0 2px 0 rgba(0, 0, 150, 0.025), 2px 4px 0 rgba(0, 0, 150, 0.015);
  119. margin: 0 auto;
  120. padding: 0;
  121. width: 570px;
  122. }
  123. /* Subcopy */
  124. .subcopy {
  125. border-top: 1px solid #e8e5ef;
  126. margin-top: 25px;
  127. padding-top: 25px;
  128. }
  129. .subcopy p {
  130. font-size: 14px;
  131. }
  132. /* Footer */
  133. .footer {
  134. -premailer-cellpadding: 0;
  135. -premailer-cellspacing: 0;
  136. -premailer-width: 570px;
  137. margin: 0 auto;
  138. padding: 0;
  139. text-align: center;
  140. width: 570px;
  141. }
  142. .footer p {
  143. color: #b0adc5;
  144. font-size: 12px;
  145. text-align: center;
  146. }
  147. .footer a {
  148. color: #b0adc5;
  149. text-decoration: underline;
  150. }
  151. /* Tables */
  152. .table table {
  153. -premailer-cellpadding: 0;
  154. -premailer-cellspacing: 0;
  155. -premailer-width: 100%;
  156. margin: 30px auto;
  157. width: 100%;
  158. }
  159. .table th {
  160. border-bottom: 1px solid #edeff2;
  161. margin: 0;
  162. padding-bottom: 8px;
  163. }
  164. .table td {
  165. color: #74787e;
  166. font-size: 15px;
  167. line-height: 18px;
  168. margin: 0;
  169. padding: 10px 0;
  170. }
  171. .content-cell {
  172. max-width: 100vw;
  173. padding: 32px;
  174. }
  175. /* Buttons */
  176. .action {
  177. -premailer-cellpadding: 0;
  178. -premailer-cellspacing: 0;
  179. -premailer-width: 100%;
  180. margin: 30px auto;
  181. padding: 0;
  182. text-align: center;
  183. width: 100%;
  184. }
  185. .button {
  186. -webkit-text-size-adjust: none;
  187. border-radius: 4px;
  188. color: #fff;
  189. display: inline-block;
  190. overflow: hidden;
  191. text-decoration: none;
  192. }
  193. .button-blue,
  194. .button-primary {
  195. background-color: #2d3748;
  196. border-bottom: 8px solid #2d3748;
  197. border-left: 18px solid #2d3748;
  198. border-right: 18px solid #2d3748;
  199. border-top: 8px solid #2d3748;
  200. }
  201. .button-green,
  202. .button-success {
  203. background-color: #48bb78;
  204. border-bottom: 8px solid #48bb78;
  205. border-left: 18px solid #48bb78;
  206. border-right: 18px solid #48bb78;
  207. border-top: 8px solid #48bb78;
  208. }
  209. .button-red,
  210. .button-error {
  211. background-color: #e53e3e;
  212. border-bottom: 8px solid #e53e3e;
  213. border-left: 18px solid #e53e3e;
  214. border-right: 18px solid #e53e3e;
  215. border-top: 8px solid #e53e3e;
  216. }
  217. /* Panels */
  218. .panel {
  219. border-left: #2d3748 solid 4px;
  220. margin: 21px 0;
  221. }
  222. .panel-content {
  223. background-color: #edf2f7;
  224. color: #718096;
  225. padding: 16px;
  226. }
  227. .panel-content p {
  228. color: #718096;
  229. }
  230. .panel-item {
  231. padding: 0;
  232. }
  233. .panel-item p:last-of-type {
  234. margin-bottom: 0;
  235. padding-bottom: 0;
  236. }
  237. /* Utilities */
  238. .break-all {
  239. word-break: break-all;
  240. }