default.css 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  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. max-height: 75px;
  97. width: 75px;
  98. }
  99. /* Body */
  100. .body {
  101. -premailer-cellpadding: 0;
  102. -premailer-cellspacing: 0;
  103. -premailer-width: 100%;
  104. background-color: #edf2f7;
  105. border-bottom: 1px solid #edf2f7;
  106. border-top: 1px solid #edf2f7;
  107. margin: 0;
  108. padding: 0;
  109. width: 100%;
  110. }
  111. .inner-body {
  112. -premailer-cellpadding: 0;
  113. -premailer-cellspacing: 0;
  114. -premailer-width: 570px;
  115. background-color: #ffffff;
  116. border-color: #e8e5ef;
  117. border-radius: 2px;
  118. border-width: 1px;
  119. box-shadow: 0 2px 0 rgba(0, 0, 150, 0.025), 2px 4px 0 rgba(0, 0, 150, 0.015);
  120. margin: 0 auto;
  121. padding: 0;
  122. width: 570px;
  123. }
  124. .inner-body a {
  125. word-break: break-all;
  126. }
  127. /* Subcopy */
  128. .subcopy {
  129. border-top: 1px solid #e8e5ef;
  130. margin-top: 25px;
  131. padding-top: 25px;
  132. }
  133. .subcopy p {
  134. font-size: 14px;
  135. }
  136. /* Footer */
  137. .footer {
  138. -premailer-cellpadding: 0;
  139. -premailer-cellspacing: 0;
  140. -premailer-width: 570px;
  141. margin: 0 auto;
  142. padding: 0;
  143. text-align: center;
  144. width: 570px;
  145. }
  146. .footer p {
  147. color: #b0adc5;
  148. font-size: 12px;
  149. text-align: center;
  150. }
  151. .footer a {
  152. color: #b0adc5;
  153. text-decoration: underline;
  154. }
  155. /* Tables */
  156. .table table {
  157. -premailer-cellpadding: 0;
  158. -premailer-cellspacing: 0;
  159. -premailer-width: 100%;
  160. margin: 30px auto;
  161. width: 100%;
  162. }
  163. .table th {
  164. border-bottom: 1px solid #edeff2;
  165. margin: 0;
  166. padding-bottom: 8px;
  167. }
  168. .table td {
  169. color: #74787e;
  170. font-size: 15px;
  171. line-height: 18px;
  172. margin: 0;
  173. padding: 10px 0;
  174. }
  175. .content-cell {
  176. max-width: 100vw;
  177. padding: 32px;
  178. }
  179. /* Buttons */
  180. .action {
  181. -premailer-cellpadding: 0;
  182. -premailer-cellspacing: 0;
  183. -premailer-width: 100%;
  184. margin: 30px auto;
  185. padding: 0;
  186. text-align: center;
  187. width: 100%;
  188. float: unset;
  189. }
  190. .button {
  191. -webkit-text-size-adjust: none;
  192. border-radius: 4px;
  193. color: #fff;
  194. display: inline-block;
  195. overflow: hidden;
  196. text-decoration: none;
  197. }
  198. .button-blue,
  199. .button-primary {
  200. background-color: #2d3748;
  201. border-bottom: 8px solid #2d3748;
  202. border-left: 18px solid #2d3748;
  203. border-right: 18px solid #2d3748;
  204. border-top: 8px solid #2d3748;
  205. }
  206. .button-green,
  207. .button-success {
  208. background-color: #48bb78;
  209. border-bottom: 8px solid #48bb78;
  210. border-left: 18px solid #48bb78;
  211. border-right: 18px solid #48bb78;
  212. border-top: 8px solid #48bb78;
  213. }
  214. .button-red,
  215. .button-error {
  216. background-color: #e53e3e;
  217. border-bottom: 8px solid #e53e3e;
  218. border-left: 18px solid #e53e3e;
  219. border-right: 18px solid #e53e3e;
  220. border-top: 8px solid #e53e3e;
  221. }
  222. /* Panels */
  223. .panel {
  224. border-left: #2d3748 solid 4px;
  225. margin: 21px 0;
  226. }
  227. .panel-content {
  228. background-color: #edf2f7;
  229. color: #718096;
  230. padding: 16px;
  231. }
  232. .panel-content p {
  233. color: #718096;
  234. }
  235. .panel-item {
  236. padding: 0;
  237. }
  238. .panel-item p:last-of-type {
  239. margin-bottom: 0;
  240. padding-bottom: 0;
  241. }
  242. /* Utilities */
  243. .break-all {
  244. word-break: break-all;
  245. }