Files
ahrommag/resources/views/components/layouts/panel/master.blade.php
2025-11-16 12:43:07 +03:30

251 lines
6.6 KiB
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow">
<link rel="icon" type="image/png" href="{{asset('image/logo.png')}}">
<title>{{ $title ?? 'Page Title' }}</title>
<script data-navigate-once src="{{ asset('ckeditor/ckeditor.js') }}"></script>
<script data-navigate-once src="{{asset('js/tailwind.js')}}"></script>
@vite(['resources/css/app.css', 'resources/js/app.js'])
<style type="text/tailwindcss">
@layer utilities {
.content-auto {
content-visibility: auto;
}
}
</style>
<style>
@font-face {
font-family: iransans;
font-style: normal;
font-weight: bold;
src: url('{{asset('fonts/IRANSansX-Bold.woff')}}') format('woff'),
}
#nprogress .bar , .spinner{
z-index: 3000 !important;
}
@font-face {
font-family: iransans;
font-style: normal;
font-weight: normal;
src: url('{{asset('fonts/IRANSansXV.woff')}}') format('woff'),
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.bg-ahrom {
background-color: rgb(8, 70, 66) !important;
}
.bg-preveBackQuiz {
background-color: rgb(223, 229, 231) !important;
}
.position-fixed {
position: fixed !important;
top: 0 !important;
}
.trans_all {
transition: all ease .4s;
}
.animation-open {
transform: translateY(-32px);
}
svg {
pointer-events: none;
}
.items-center {
align-items: center !important;
}
.animation-open2 {
transform: translateY(1px);
}
.btn {
height: 3.25rem;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
border-radius: 1rem;
padding-left: 2rem;
padding-right: 2rem;
font-size: .875rem;
line-height: 1.25rem;
font-weight: 500 !important;
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
transition-duration: .3s;
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.font-semibold {
font-weight: 500 !important;
}
.text-red-800 {
color: #f43f5e !important;
}
.bg-gradiant-slide {
background: rgb(66, 0, 0);
background: linear-gradient(135deg, rgba(66, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 53%, rgba(0, 51, 42, 1) 100%);
}
.split-button {
position: relative;
display: inline-block;
width: 100px;
height: 30px;
background: linear-gradient(135deg, #F65555 50%, #00B88A 50%);
color: white;
font-size: 13px;
font-weight: bold;
text-align: center;
line-height: 50px;
border-radius: 8px;
overflow: hidden;
}
.split-button::before {
content: "فروش";
position: absolute;
top: 0;
left: 0;
padding-right: 4px;
padding-left: 4px;
width: 50%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
}
.split-button::after {
content: "خرید";
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
}
.hoverCancel {
pointer-events: none;
}
.rectangleTest {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to right, green 0%, yellow 12.5%, orange 25%, red 37.5%, rgb(126, 4, 4) 50%, rgb(61, 2, 2) 75%, rgb(12, 0, 0) 100%);
}
.rectangle {
width: 100%;
height: 40px;
border-radius: 10px;
position: relative;
overflow: hidden;
}
.tooltip-box {
position: relative;
display: inline-block;
background-color: #000;
color: white;
text-align: center;
padding: 3px 7px;
border-radius: .25rem;
margin-bottom: 15px;
font-size: 14px;
}
.text-red-800 {
color: #F65555 !important;
}
.text-green-800 {
color: #00B88A !important;
}
@media (min-width: 1023px) and (max-width: 10000px) {
.lg\:bg-hr {
background-color: #f4f7fb !important;
}
}
</style>
<style>
.fade-out {
overflow: hidden;
height: 4.5em;
transition: all .4s ease !important;
position: relative;
}
.fade-out:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1.5em;
transition: all .4s ease !important;
background: linear-gradient(to bottom, transparent, white);
}
.hidden {
display: none;
}
</style>
<style>
.cke_dialog_ui_input_file{
height: max-content !important;
}
.cke_notification {
display: none !important;
}
</style>
@stack('style_css')
@livewireStyles
</head>
<body dir="rtl">
<x-layouts.panel.partial.header/>
{{ $slot }}
@stack('script_js')
@livewireScriptConfig
</body>
</html>