top-danesh / styles.css
humanvprojectceo's picture
Update styles.css
80a65e4 verified
Raw
History Blame Contribute Delete
837 Bytes
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700;900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
font-family: 'Vazirmatn', sans-serif;
direction: rtl;
text-align: right;
background-color: #f8fafc;
margin: 0;
padding: 0;
-webkit-tap-highlight-color: transparent;
user-select: none;
}
@keyframes screenSlideIn {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-screen {
animation: screenSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}