first commit
This commit is contained in:
62
resources/css/app.css
Normal file
62
resources/css/app.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user