Added basic responsive layout

This commit is contained in:
Arunavo Ray
2025-07-07 17:34:54 +05:30
parent 6155e39360
commit 24bd0aefe6
10 changed files with 715 additions and 538 deletions

View File

@@ -146,3 +146,13 @@
.dark ::-webkit-scrollbar-thumb:hover {
background-color: oklch(0.6 0 0);
}
/* ===== Animations ===== */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}