29 lines
820 B
Handlebars
29 lines
820 B
Handlebars
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>2weekmail - Temporary Email Service</title>
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Font Awesome for icons -->
|
|
<link rel="stylesheet" href="/css/all.min.css">
|
|
<style>
|
|
body {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.content {
|
|
flex: 1;
|
|
}
|
|
.card {
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.footer {
|
|
margin-top: auto;
|
|
}
|
|
</style>
|
|
</head> |