radfusion/resources/views/staff/reports/viewer/layout.blade.php
2025-01-12 13:17:35 +06:00

66 lines
2.2 KiB
PHP

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg=="
crossorigin="anonymous" referrerpolicy="no-referrer"/>
<title>{{ $title }}</title>
<style>
body {
height: 100%;
width: 100%;
font-family: "Inter", serif;
font-optical-sizing: auto;
background: #edf1f5;
}
.container-main {
margin-top: 30px;
margin-bottom: 10px;
padding: 8px 8px 30px 8px;
background: #fff;
border: 1px solid #d3cfcf;
border-radius: 8px;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-webkit-box-shadow: 0 0 14px rgba(0, 0, 0, .1);
-moz-box-shadow: 0 0 14px rgba(0, 0, 0, .1);
box-shadow: 0 0 14px rgba(0, 0, 0, .1);
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 40px;
line-height: 40px;
background-color: #f5f5f5;
}
.footer p, span {
text-align: center;
font-size: 12px;
}
</style>
@stack('header')
</head>
<body>
<nav class="navbar navbar-light bg-light">
<div class="container px-lg-2">
<span class="navbar-brand fw-semibold">{{ config('app.name') }}</span>
</div>
</nav>
@yield('content')
@stack('footer')
</body>
</html>