Нема описа

styles.hbs 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <style type="text/css">
  2. .mailpoet_text_block .mailpoet_content,
  3. .mailpoet_text_block .mailpoet_content p {
  4. color: {{ text.fontColor }};
  5. font-size: {{ text.fontSize }};
  6. font-family: {{fontWithFallback text.fontFamily }};
  7. line-height: {{ text.lineHeight }};
  8. }
  9. .mailpoet_text_block .mailpoet_content h1 {
  10. color: {{ h1.fontColor }};
  11. font-size: {{ h1.fontSize }};
  12. font-family: {{fontWithFallback h1.fontFamily }};
  13. line-height: {{ h1.lineHeight }};
  14. }
  15. .mailpoet_text_block .mailpoet_content h2 {
  16. color: {{ h2.fontColor }};
  17. font-size: {{ h2.fontSize }};
  18. font-family: {{fontWithFallback h2.fontFamily }};
  19. line-height: {{ h2.lineHeight }};
  20. }
  21. .mailpoet_text_block .mailpoet_content h3 {
  22. color: {{ h3.fontColor }};
  23. font-size: {{ h3.fontSize }};
  24. font-family: {{fontWithFallback h3.fontFamily }};
  25. line-height: {{ h3.lineHeight }};
  26. }
  27. .mailpoet_content a {
  28. color: {{ link.fontColor }};
  29. text-decoration: {{ link.textDecoration }};
  30. }
  31. .mailpoet_container_block, .mailpoet_container {
  32. background-color: {{ wrapper.backgroundColor }};
  33. }
  34. #mailpoet_editor_main_wrapper {
  35. background-color: {{ body.backgroundColor }};
  36. }
  37. {{#if isWoocommerceTransactional}}
  38. .mailpoet_woocommerce_heading {
  39. padding: 30px 20px;
  40. background: {{ woocommerce.brandingColor }};
  41. }
  42. .mailpoet_woocommerce_heading h1 {
  43. line-height: 1.2em;
  44. font-family: {{fontWithFallback text.fontFamily }};
  45. font-size: 36px;
  46. color: {{ woocommerce.headingFontColor }};
  47. margin: 0;
  48. }
  49. .mailpoet_woocommerce_content {
  50. color: {{ text.fontColor }};
  51. }
  52. .mailpoet_woocommerce_content a {
  53. color: {{ link.fontColor }};
  54. }
  55. .mailpoet_woocommerce_content h1,
  56. .mailpoet_woocommerce_content h2,
  57. .mailpoet_woocommerce_content h3 {
  58. color: {{ woocommerce.brandingColor }};
  59. }
  60. {{/if}}
  61. </style>