first commit

This commit is contained in:
sajjadtalkhabi
2026-05-13 01:43:05 +03:30
commit d2a577f254
297 changed files with 36274 additions and 0 deletions
+58
View File
@@ -0,0 +1,58 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
margin: 0 !important;
padding: 0 !important;
font-family: var(--font-family-primary), sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
overflow-x: hidden;
}
.dir-rtl {
direction: rtl;
}
.scrollbar-thin {
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
scrollbar-color: #d1d5db transparent;
}
.scrollbar-thin::-webkit-scrollbar {
width: 3px;
height: 3px;
}
.scrollbar-thin::-webkit-scrollbar-track {
background: transparent;
border-radius: 10px;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
background: #d1d5db;
border-radius: 10px;
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
background: #9ca3af;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.animate-spin {
animation: spin 1s linear infinite;
transform-origin: center;
}