radfusion/resources/views/staff/studies/viewer.blade.php
2025-01-08 12:42:38 +06:00

67 lines
1.7 KiB
PHP

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ $title }} | {{ config('app.name') }}</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300@75&display=swap');
body {
margin: 0;
font-family: Inter, Arial, Helvetica, sans-serif;
font-size: 0.75rem;
font-weight: 400;
color: #9fa1b8;
}
.container {
display: grid;
grid-template-areas:
"header"
"content";
background-color: rgb(57, 57, 67);
grid-template-columns: 1fr;
gap: 3px;
padding: 3px;
}
.container > * {
background-color: rgb(48, 51, 78);
}
.container > .header {
grid-area: header;
height: 2vh;
display: flex;
justify-content: space-between;
align-items: center;
}
.container > .header > p {
text-align: center;
}
.container > .header > img {
width: 24px;
}
.container > div.content {
grid-area: content;
height: 97vh;
}
</style>
</head>
<body style="background-color:black;">
<div class="container">
<header class="header">
<img src="https://placehold.co/24">
<p>{{ $title }}</p>
</header>
<div class="content">
<iframe src="{{ $url }}" frameborder="0" width="100%" height="100%"
allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true">
</iframe>
</div>
</div>
</body>
</html>