mirror of
https://github.com/ngthanhvu/kr-phim.git
synced 2026-08-10 18:27:46 +00:00
81 lines
1.5 KiB
CSS
81 lines
1.5 KiB
CSS
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800;900&display=swap");
|
|
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--font-sans: "Be Vietnam Pro", ui-sans-serif, system-ui, sans-serif;
|
|
--color-cinek-50: #fefce8;
|
|
--color-cinek-100: #fef9c3;
|
|
--color-cinek-300: #fde047;
|
|
--color-cinek-400: #facc15;
|
|
--color-cinek-500: #eab308;
|
|
--color-cinek-950: #422006;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
min-width: 320px;
|
|
background:
|
|
radial-gradient(circle at 15% 0%, rgba(234, 179, 8, 0.22), transparent 34rem),
|
|
linear-gradient(135deg, #201a05 0%, #17130a 46%, #020617 100%);
|
|
color: #f8fbff;
|
|
}
|
|
|
|
body,
|
|
button,
|
|
input {
|
|
font-family: "Be Vietnam Pro", ui-sans-serif, system-ui, sans-serif;
|
|
}
|
|
|
|
button:not(:disabled),
|
|
a[href],
|
|
[role="button"],
|
|
input[type="button"]:not(:disabled),
|
|
input[type="submit"]:not(:disabled),
|
|
input[type="reset"]:not(:disabled),
|
|
label[for],
|
|
select:not(:disabled) {
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:disabled,
|
|
input:disabled,
|
|
select:disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
height: 0.7rem;
|
|
width: 0.7rem;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: rgba(234, 179, 8, 0.68);
|
|
border-radius: 999px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: rgba(2, 6, 23, 0.72);
|
|
}
|
|
|
|
.hero-fade-enter-active,
|
|
.hero-fade-leave-active {
|
|
transition: opacity 700ms ease, transform 900ms ease;
|
|
}
|
|
|
|
.hero-fade-enter-from,
|
|
.hero-fade-leave-to {
|
|
opacity: 0;
|
|
transform: scale(1.03);
|
|
}
|
|
|
|
.no-scrollbar {
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
display: none;
|
|
}
|