Files
ShooterHub/templates/base.html

81 lines
2.0 KiB
HTML
Raw Normal View History

2026-03-16 16:09:19 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ballistic Analyzer</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: system-ui, sans-serif;
background: #f4f5f7;
color: #222;
min-height: 100vh;
padding: 2rem 1rem;
}
.container {
max-width: 960px;
margin: 0 auto;
background: #fff;
border-radius: 8px;
padding: 2rem 2.5rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
h1 { font-size: 1.8rem; margin-bottom: 1.5rem; color: #1a1a2e; }
h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; color: #1a1a2e; border-bottom: 2px solid #e0e0e0; padding-bottom: 0.3rem; }
h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: #333; }
a { color: #1f77b4; text-decoration: none; }
a:hover { text-decoration: underline; }
.error {
background: #fff0f0;
border-left: 4px solid #e74c3c;
padding: 0.75rem 1rem;
border-radius: 4px;
margin-bottom: 1.25rem;
color: #c0392b;
}
table {
border-collapse: collapse;
width: 100%;
margin-bottom: 1rem;
}
th, td {
text-align: left;
padding: 0.55rem 0.9rem;
border-bottom: 1px solid #e8e8e8;
font-size: 0.92rem;
}
th {
background: #f0f4ff;
font-weight: 600;
color: #444;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fafbff; }
.group-section {
border: 1px solid #e0e0e0;
border-radius: 6px;
padding: 1.25rem 1.5rem;
margin-bottom: 1.5rem;
}
.group-meta {
font-size: 0.88rem;
color: #666;
margin-bottom: 0.75rem;
}
.chart-img {
width: 100%;
max-width: 860px;
display: block;
margin-top: 1rem;
border-radius: 4px;
}
</style>
</head>
<body>
<div class="container">
{% block content %}{% endblock %}
</div>
</body>
</html>