2024-09-16 23:10:08 +02:00
|
|
|
{{ define "style" }}
|
|
|
|
|
<style>
|
2025-02-19 13:54:36 +01:00
|
|
|
/* Reset styles for email clients */
|
|
|
|
|
body, table, td, p, a {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
font-size: 100%;
|
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
}
|
|
|
|
|
body {
|
|
|
|
|
background-color: #f0f0f0;
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
.container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 600px;
|
|
|
|
|
margin: 40px auto;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
|
|
|
padding: 32px;
|
|
|
|
|
}
|
|
|
|
|
.header {
|
|
|
|
|
display: flex;
|
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
}
|
|
|
|
|
.header .logo img {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
.header h1 {
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
.warning {
|
|
|
|
|
background-color: #ffd966;
|
|
|
|
|
color: #7f6000;
|
|
|
|
|
padding: 4px 12px;
|
|
|
|
|
border-radius: 50px;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
margin: auto 0 auto auto;
|
|
|
|
|
}
|
|
|
|
|
.content {
|
|
|
|
|
background-color: #fafafa;
|
|
|
|
|
padding: 24px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
}
|
|
|
|
|
.content h2 {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
.grid {
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
.grid td {
|
|
|
|
|
width: 50%;
|
|
|
|
|
padding-bottom: 8px;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
.label {
|
|
|
|
|
color: #888;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
}
|
|
|
|
|
.message {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
.button {
|
|
|
|
|
background-color: #000000;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
padding: 0.7rem 1.5rem;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-top: 24px;
|
|
|
|
|
}
|
|
|
|
|
.button-container {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2024-09-16 23:10:08 +02:00
|
|
|
</style>
|
|
|
|
|
{{ end }}
|