secure-sco-shield / style.css
transformered's picture
add google fonts vazirmatn for all body that applying to all tesxt
a9b8b44 verified
raw
history blame
1.44 kB
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;300;400;500;700;900&display=swap');
:root {
--bg-color: #000000;
--text-color: #f8f8f8;
--border-color: #333333;
--highlight-color: #06b6d4;
}
* {
font-family: 'Vazirmatn', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--bg-color) !important;
color: var(--text-color) !important;
}
h1, h2, h3, h4, h5, h6 {
color: var(--text-color);
}
a {
color: var(--highlight-color);
text-decoration: none;
}
input, textarea, select, button {
font-family: 'Vazirmatn', sans-serif;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
background: #333333;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #444444;
}
/* Animation classes */
.fade-in {
animation: fadeIn 0.8s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.slide-in-left {
animation: slideInLeft 0.6s ease-out;
}
@keyframes slideInLeft {
from { transform: translateX(-50px); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
/* Gradient text */
.gradient-text {
background-clip: text;
-webkit-background-clip: text;
color: transparent;
}