la-chariotte/la_chariotte/templates/mail/base_mail.html

71 lines
No EOL
1.1 KiB
HTML

{% load i18n static %}
<html lang="fr">
<head>
<meta charset="UTF-8">
<style type="text/css">
* {
font-family: sans-serif;
}
body {
background-color: f5f5f5;
}
.content {
padding: 1rem 2rem;
width: 80vw;
margin: 0 auto;
background-color: white;
}
p.title {
font-weight: 300;
color: #A52951;
font-size: 2rem;
}
.buttons {
margin-top: 30px;
margin-bottom: 10px;
display: flex;
align-items: center;
}
a {
color: #A52951;
}
a.button {
margin: 0 auto;
padding: 8px 25px;
border-radius: 4px;
text-align: center;
text-decoration: none;
white-space: normal;
border: #A52951 1px solid;
}
img.logo {
width: 200px;
margin: 0 auto;
display: block;
}
</style>
</head>
<body>
<div class="content">
<a href="{{ base_url }}{% url 'dashboard' %}">
<img class="logo" src="{{ base_url }}{% static 'img/logos/logo_la_chariotte.png' %}">
</a>
{% block content %}
{% endblock %}
</div>
</body>
</html>