Changeset View
Changeset View
Standalone View
Standalone View
subscriptions/templates/email_layout.html
| <!DOCTYPE html> | <!DOCTYPE html> | ||||
| <html> | <html> | ||||
| <head> | <head> | ||||
| <title>{% block title %}{{ subject }}{% endblock %}</title> | <title>{% block title %}{{ subject }}{% endblock %}</title> | ||||
| <style> | <style> | ||||
| html, body { | html, body { | ||||
| background-color: white; | background-color: white; | ||||
| color: black; | color: black; | ||||
| font-family: 'Roboto', 'Noto Sans', sans-serif; | font-family: 'Roboto', 'Noto Sans', sans-serif; | ||||
| font-size: 10pt; | font-size: 10pt; | ||||
| } | } | ||||
| body { | body { | ||||
| max-width: 100%; | max-width: 100%; | ||||
| width: 60ex; | width: 60ex; | ||||
| margin-right: auto; | margin-right: auto; | ||||
| padding: 0.5em 1em; | padding: 0.5em 1em; | ||||
| } | } | ||||
| p { | p { | ||||
| line-height: 150%; | line-height: 150%; | ||||
| } | } | ||||
| p.closing { | p.closing { | ||||
| margin-top: 3.5em; | margin-top: 3.5em; | ||||
| } | } | ||||
| section.about { | section.about { | ||||
| margin-top: 2em; | margin-top: 2em; | ||||
| color: #888; | color: #888; | ||||
| } | } | ||||
| </style> | </style> | ||||
| </head> | </head> | ||||
| <body>{% block body %}{% endblock %} | <body>{% block body %}{% endblock %} | ||||
| <p class="closing">Kind regards,</p> | <p class="closing">Kind regards,</p> | ||||
| <p>Blender Foundation</p> | <p>Blender Foundation</p> | ||||
| </body> | </body> | ||||
| </html> | </html> | ||||