New version
This commit is contained in:
@@ -1,29 +1,14 @@
|
||||
<?php
|
||||
// Basic layout start.
|
||||
?><!doctype html>
|
||||
/** @var \App\App $app */
|
||||
$app = app();
|
||||
?>
|
||||
<!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'; ?>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title><?= htmlspecialchars(t('common.title'), ENT_QUOTES) ?></title>
|
||||
<?php asset_styles(); ?>
|
||||
<?php asset_scripts('header'); ?>
|
||||
</head>
|
||||
<body class="app-body">
|
||||
|
||||
Reference in New Issue
Block a user