Files
Backend-Api/ServiceHost/Pages/Shared/_LayoutError.cshtml
2024-07-05 21:36:15 +03:30

91 lines
1.8 KiB
Plaintext

@using Microsoft.AspNetCore.Razor.Language.Intermediate
@using Version = _0_Framework.Application.Version
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="~/AssetsClient/images/favicon.ico">
<link href="~/AssetsClient/css/style.css?ver=@Version.StyleVersion" rel="stylesheet" />
<title>@ViewData["Title"] - گزارشگیر </title>
@RenderSection("head", false)
<style>
*{
transition: all 0.6s;
}
html {
height: 100%;
}
body{
font-family: 'Lato', sans-serif;
color: #888;
margin: 0;
}
#main{
display: table;
width: 100%;
height: 100vh;
text-align: center;
}
.fof{
display: table-cell;
vertical-align: middle;
}
.fof h1{
font-size: 50px;
display: inline-block;
padding-right: 12px;
animation: type .5s alternate infinite;
}
@@keyframes type{
from{box-shadow: inset -3px 0px 0px #888;}
to{box-shadow: inset -3px 0px 0px transparent;}
}
.btn-back {
padding: 6px 16px;
background: #1e293b;
color: #fff;
font-size: 16px;
cursor: pointer;
transition: all .3s ease;
}
.btn-back:hover {
background: #0f172a;
}
</style>
</head>
<body>
<!-- Begin page -->
<div id="main">
<div class="fof">
@RenderBody()
</div>
</div>
</body>
</html>
<script src="~/AssetsClient/js/bootstrap.bundle.min.js"></script>
@RenderSection("Script", false)