111 lines
2.9 KiB
HTML
111 lines
2.9 KiB
HTML
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html>
|
|
<head>
|
|
<meta name="description" content="{{config('DESCRIPTION')}}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<title></title>
|
|
<style type="text/css" rel="stylesheet" media="all">
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
background-color: #ffffff;
|
|
border-radius: 5px;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
h1 {
|
|
text-align: center;
|
|
color: #333333;
|
|
}
|
|
p {
|
|
margin-bottom: 10px;
|
|
color: #333333;
|
|
line-height: 1.25rem;
|
|
}
|
|
.button-container {
|
|
text-align: center;
|
|
margin-top: 30px;
|
|
margin-bottom: 40px;
|
|
}
|
|
.button {
|
|
display: inline-block;
|
|
background-color: #1a6187;
|
|
color: #ffffff;
|
|
padding: 10px 20px;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
}
|
|
.raw-link {
|
|
display: block;
|
|
margin-top: 10px;
|
|
font-size: 14px;
|
|
text-align: left;
|
|
color: #777777;
|
|
word-wrap: break-word;
|
|
}
|
|
.reference-text {
|
|
margin-top: 20px;
|
|
font-size: 14px;
|
|
line-height: 1rem;
|
|
}
|
|
.user-info {
|
|
font-size: 14px;
|
|
color: #333333;
|
|
}
|
|
.user-info p {
|
|
margin-left: 20px;
|
|
line-height: 1rem;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #222222;
|
|
color: #ffffff;
|
|
}
|
|
h1 {
|
|
color: #ffffff;
|
|
}
|
|
p {
|
|
color: #cccccc;
|
|
}
|
|
.container {
|
|
background-color: #1d323d;
|
|
}
|
|
.button {
|
|
background-color: #2280B3;
|
|
}
|
|
.raw-link {
|
|
color: #cccccc;
|
|
}
|
|
.reference-text {
|
|
color: #cccccc;
|
|
}
|
|
.user-info {
|
|
color: #cccccc;
|
|
}
|
|
}
|
|
@media screen and (max-width: 600px) {
|
|
.container {
|
|
padding: 10px;
|
|
}
|
|
h1 {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>{% block title %}{% endblock %}</h1>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|