30 lines
800 B
PHP
30 lines
800 B
PHP
<?php
|
|
// Basic layout start.
|
|
?><!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>3D-Druck Materialmatrix</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<style>
|
|
body {
|
|
background: radial-gradient(circle at top, #e2e8f0 0%, #f8fafc 45%, #e2e8f0 90%);
|
|
}
|
|
thead th {
|
|
position: sticky;
|
|
top: 0;
|
|
backdrop-filter: blur(4px);
|
|
}
|
|
th[data-printer],
|
|
td[data-printer] {
|
|
background: rgba(148, 163, 184, 0.05);
|
|
}
|
|
#disclaimer {
|
|
box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.25);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="bg-slate-100 min-h-screen">
|
|
<?php require __DIR__ . '/nav.php'; ?>
|