Files
soft_usite/resources/views/layouts/email.html
T
2025-02-06 14:22:29 -05:00

67 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<link rel="stylesheet" href="/css/vendor.css">
<link rel="stylesheet" href="/css/app.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.email-container {
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 600px;
margin: auto;
}
.email-header {
font-size: 24px;
font-weight: bold;
color: #333333;
margin-bottom: 10px;
}
.email-content {
font-size: 16px;
color: #555555;
line-height: 1.5;
}
.email-button {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
font-size: 16px;
color: #ffffff;
background-color: #007bff;
text-decoration: none;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s;
}
.email-button:hover {
background-color: #0056b3;
}
.footer-note {
margin-top: 20px;
font-size: 14px;
color: #999999;
}
</style>
<head>
<title>Main</title>
</head>
<body>
{{embed}}
</body>
</html>