first commit

This commit is contained in:
brusnitsyn
2025-10-31 16:48:05 +09:00
commit 8b650558e2
143 changed files with 24664 additions and 0 deletions

62
resources/css/app.css Normal file
View File

@@ -0,0 +1,62 @@
@import 'tailwindcss';
@reference "tailwindcss";
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';
@plugin 'tailwind-scrollbar';
@font-face {
font-family: "Golos Sans";
font-weight: 400;
src: url("/assets/fonts/Golos-Text_Regular.woff2");
}
@font-face {
font-family: "Golos Sans";
font-weight: 500;
src: url("/assets/fonts/Golos-Text_Medium.woff2");
}
@font-face {
font-family: "Golos Sans";
font-weight: 600;
src: url("/assets/fonts/Golos-Text_DemiBold.woff2");
}
@font-face {
font-family: "Golos Sans";
font-weight: 700;
src: url("/assets/fonts/Golos-Text_Bold.woff2");
}
@font-face {
font-family: "Golos Sans";
font-weight: 800;
src: url("../fonts/Golos-Text_Black.woff2");
}
@theme {
--font-sans: 'Golos Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol', 'Noto Color Emoji';
}
/*hover:border-zinc-950/20 dark:border-white/10 dark:hover:border-white/20 bg-transparent dark:bg-white/5*/
*::-webkit-scrollbar {
@apply w-2;
}
*::-webkit-scrollbar-track {
@apply bg-transparent;
}
*::-webkit-scrollbar-thumb {
@apply bg-white/10 dark:bg-white/10 rounded-lg;
}
*::-webkit-scrollbar-thumb:hover {
@apply bg-white/10 dark:bg-white/10 rounded-lg;
}