styles.php in Fluent Support – Helpdesk & Customer Support Ticket System 1.10.0, at app/Views/emails/styles.php
| 1 | .fs_comment { |
| 2 | color: #2b2e2f; |
| 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; |
| 4 | font-size: 16px; |
| 5 | line-height: 25px; |
| 6 | margin: 15px 0; |
| 7 | } |
| 8 | |
| 9 | .rtl-align { |
| 10 | text-align: right; |
| 11 | } |
| 12 | |
| 13 | .alignleft { |
| 14 | float: left; |
| 15 | } |
| 16 | .alignright { |
| 17 | float: right; |
| 18 | } |
| 19 | .aligncenter { |
| 20 | display: block; |
| 21 | margin-left: auto; |
| 22 | margin-right: auto; |
| 23 | } |
| 24 | .alignnone { |
| 25 | margin: 0; |
| 26 | } |
| 27 | |
| 28 | p { |
| 29 | font-size: 16px; |
| 30 | line-height: 25px; |
| 31 | margin: 15px 0; |
| 32 | } |
| 33 | |
| 34 | h1, h2, h3, h4, h5, h6 { |
| 35 | margin: 10px 0px; |
| 36 | } |
| 37 | h1 { |
| 38 | font-size: 20px; |
| 39 | } |
| 40 | h2 { |
| 41 | font-size: 18px; |
| 42 | } |
| 43 | h3 { |
| 44 | font-size: 16px; |
| 45 | } |
| 46 | h4, h5, h6 { |
| 47 | font-size: 15px; |
| 48 | font-weight: 500; |
| 49 | } |
| 50 | |
| 51 | img, iframe, * { |
| 52 | max-width: 100%; |
| 53 | } |
| 54 | ul { |
| 55 | list-style: disc; |
| 56 | padding: 0; |
| 57 | margin: 15px 0 0; |
| 58 | li { |
| 59 | font-size: 14px; |
| 60 | margin-left: 30px; |
| 61 | padding-left: 7px; |
| 62 | } |
| 63 | } |
| 64 | pre, code { |
| 65 | background: #e1ebee; |
| 66 | font-family: "Courier 10 Pitch", Courier, monospace; |
| 67 | font-size: 0.9375rem; |
| 68 | line-height: 1.6; |
| 69 | max-width: 100%; |
| 70 | overflow: auto; |
| 71 | padding: 1.5em; |
| 72 | white-space: pre-wrap; |
| 73 | } |
| 74 |