Files
backend/resources/views/errors/minimal.blade.php
2024-02-24 10:40:20 +00:00

108 lines
3.1 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="../dist/images/fav.ico" type="image/ico" sizes="16x16">
<title>@yield('title')</title>
<!-- Fonts -->
<link rel="stylesheet" href="../plugins/fontawesome-free/css/all.min.css" />
<link rel="stylesheet" href="../dist/css/fontiran.css" />
<!-- Styles -->
<style>
html, body {
background-color: #fff;
color: #636b6f;
font-family: IRANSansFaNum, sans-serif;
font-weight: 100;
height: 100vh;
margin: 0;
}
.full-height {
height: 100vh;
}
.flex-center {
align-items: center;
display: flex;
justify-content: center;
}
.flex-column {
flex-direction: column;
}
.position-ref {
position: relative;
}
.code {
border-right: 2px solid;
font-size: 26px;
padding: 0 15px 0 15px;
text-align: center;
font-weight: bold;
}
.message {
font-size: 18px;
text-align: center;
font-weight: bold;
}
.btn {
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding: 0.5rem 1rem;
font-size: 1.25rem;
line-height: 1.5;
border-radius: 0.3rem;
}
.home-btn {
font-family: IRANSansFaNum, sans-serif;
font-weight: bold;
font-size: 15px;
background-color: #2c343f;
border: none;
transition: 0.2s all;
}
.home-btn:hover {
background-color: #ff5c0f;
border-color: #ff5c0f;
}
.home-btn a {
color: #fff;
text-decoration: none;
}
.mt-3{
margin-top: 1rem;
}
</style>
</head>
<body>
<div class="flex-center flex-column position-ref full-height">
<div class="flex-center">
<div class="code">
@yield('code')
</div>
<div class="message" style="padding: 10px;">
@yield('message')
</div>
</div>
<div class="mt-3">
<button class="home-btn btn"><a href="/">بازگشت به صفحه اصلی</a></button>
</div>
</div>
</body>
</html>