설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.css 5.0KB

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