Add files via upload

This commit is contained in:
Hamidreza Eidy
2024-05-01 09:57:54 +03:30
committed by GitHub
parent a02fbb8249
commit a6947c37a6
40 changed files with 13633 additions and 1 deletions
+41
View File
@@ -0,0 +1,41 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: 'Iransans';
src: url('/public/fonts/IRANSansWebFaNum.woff2');
}
body{
direction: rtl;
font-family: 'Iransans';
background-color: #FAF6F9;
max-width: 100vw;
overflow-x: hidden !important;
}
.animate{
-webkit-animation:spin 0.5s linear infinite;
-moz-animation:spin 0.5s linear infinite;
animation:spin 0.3s linear infinite;
}
.line2{
stroke: black;
}
.header {
background-image: url("/public/images/headerImg.jpg");
width: 100%;
background-repeat: no-repeat;
background-size: cover;
}
@media (min-width: 1024px) {
.header{
background-position: center;
}
}
.test{
background-image: linear-gradient(to bottom, rgba(255,255,255,0), #FAF6F9 70%);
width: 100%;
height: 150px;
margin-top: -130px;
}