Последняя версия с сервера прошлого разработчика

This commit is contained in:
2025-07-10 04:35:51 +00:00
commit c731570032
1174 changed files with 134314 additions and 0 deletions

3
resources/css/app.css vendored Executable file
View File

@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

206
resources/css/common.css vendored Executable file
View File

@@ -0,0 +1,206 @@
:root {
--swiper-theme-color: #ff5722 !important;
}
.grid-auto {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-auto-flow: row dense;
}
.button-default,
button.default {
background-color: transparent;
border: transparent;
}
.contain {
contain: layout;
}
.contain-content {
contain: content;
}
.drop-shadow-custom {
filter: drop-shadow(1px 1px 10px black);
}
.mediaCount2 {
@apply grid;
@apply gap-3;
@apply grid-cols-2;
}
.mediaCount3 {
@apply grid;
@apply gap-3;
@apply grid-cols-3;
}
.gradient-profile::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
content: "";
background: linear-gradient(180deg, rgb(44 34 54 / 30%) 0%, rgb(44 34 54 / 30%) 100%);
}
.btn-spinner,
.btn-spinner::after {
width: 1.5em;
height: 1.5em;
border-radius: 50%;
}
.btn-spinner {
position: relative;
font-size: 10px;
text-indent: -9999em;
border-top: 0.2em solid white;
border-right: 0.2em solid white;
border-bottom: 0.2em solid white;
border-left: 0.2em solid transparent;
transform: translateZ(0);
animation: spinning 1s infinite linear;
}
#nprogress .bar {
height: 5px !important;
}
@keyframes spinning {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.custom-input-range {
height: 22px;
appearance: none;
background: transparent;
}
.custom-input-range:focus {
outline: none;
}
.custom-input-range::-webkit-slider-runnable-track {
width: 100%;
height: 5px;
cursor: pointer;
background: #2c2236;
border: 0 solid #000;
border-radius: 10px;
box-shadow: 0 0 0 #000;
animate: 0.2s;
}
.custom-input-range::-webkit-slider-thumb {
width: 15px;
height: 15px;
margin-top: -5.5px;
cursor: pointer;
background: #f26627;
border: 1px solid #f26627;
border-radius: 25px;
box-shadow: 0 0 0 #000;
appearance: none;
}
.custom-input-range:focus::-webkit-slider-runnable-track {
background: #2c2236;
}
.custom-input-range::-moz-range-track {
width: 100%;
height: 5px;
cursor: pointer;
background: #2c2236;
border: 0 solid #000;
border-radius: 10px;
box-shadow: 0 0 0 #000;
animate: 0.2s;
}
.custom-input-range::-moz-range-thumb {
width: 15px;
height: 15px;
cursor: pointer;
background: #f26627;
border: 1px solid #f26627;
border-radius: 25px;
box-shadow: 0 0 0 #000;
}
.custom-input-range::-ms-track {
width: 100%;
height: 5px;
color: transparent;
cursor: pointer;
background: transparent;
border-color: transparent;
animate: 0.2s;
}
.custom-input-range::-ms-fill-lower {
background: #2c2236;
border: 0 solid #000;
border-radius: 20px;
box-shadow: 0 0 0 #000;
}
.custom-input-range::-ms-fill-upper {
background: #2c2236;
border: 0 solid #000;
border-radius: 20px;
box-shadow: 0 0 0 #000;
}
.custom-input-range::-ms-thumb {
width: 15px;
height: 15px;
margin-top: 1px;
cursor: pointer;
background: #f26627;
border: 1px solid #f26627;
border-radius: 25px;
box-shadow: 0 0 0 #000;
}
.custom-input-range:focus::-ms-fill-lower {
background: #2c2236;
}
.custom-input-range:focus::-ms-fill-upper {
background: #2c2236;
}
/* .modal-media-height{
max-height: calc(100vh - 25px);
} */
@screen md {
.modal-media-height {
max-height: calc(100vh - 90px);
}
}
.messsage-height {
max-height: calc(100vh - 100px);
}
.min-h-screen-header {
/* min-height: calc(100vh - 88px); */
min-height: 100vh;
}
.modal-footer .paid-feed-msg {
width: 100% !important;
margin-right: 0;
text-align: center;
}