This commit is contained in:
m.pourmohamadi
2025-08-24 19:39:07 +03:30
parent 95f479aa92
commit 5400c170ee
9 changed files with 259 additions and 0 deletions
+61
View File
@@ -0,0 +1,61 @@
@font-face {
font-family: 'IRAN SANS';
src: url('../font/IRAN SANS.TTF') format("truetype");
}
@font-face {
font-family: 'Lato-Regular';
src: url('../font/Lato-Regular.ttf') format("truetype");
}
html body {
position: relative;
min-height: 100%;
font-family: "Lato-Regular";
font-size: 16px;
color: #505050;
margin: 0;
}
html:focus,
body:focus,
*:focus {
outline: unset;
}
* {
box-sizing: border-box;
}
ul {
padding: 0;
margin: 0;
}
li {
list-style: none;
}
ul , li , h1 , h2 , h3 , h4 , h5 , h6 , p ,strong , span{
margin: 0;
padding: 0;
}
html body button {
cursor: pointer;
}
html body a {
color: #505050;
}
html body a:hover {
text-decoration: none;
color: #505050;
}
::-webkit-scrollbar {
width: 7.5px;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 15px;
}
::-webkit-scrollbar-thumb {
background: #a0a0a0;
border-radius: 15px;
}
::-webkit-scrollbar-thumb:hover {
background: #a0a0a0;
}