Spaces:
Running
Running
add google fonts vazirmatn for all body that applying to all tesxt
Browse files
style.css
CHANGED
|
@@ -1,13 +1,36 @@
|
|
| 1 |
|
| 2 |
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;300;400;500;700;900&display=swap');
|
| 3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
* {
|
| 5 |
font-family: 'Vazirmatn', sans-serif;
|
|
|
|
|
|
|
|
|
|
| 6 |
}
|
| 7 |
|
| 8 |
body {
|
| 9 |
-
background-color:
|
| 10 |
-
color:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
}
|
| 12 |
/* Custom scrollbar */
|
| 13 |
::-webkit-scrollbar {
|
|
@@ -15,18 +38,17 @@ body {
|
|
| 15 |
}
|
| 16 |
|
| 17 |
::-webkit-scrollbar-track {
|
| 18 |
-
background:
|
| 19 |
}
|
| 20 |
|
| 21 |
::-webkit-scrollbar-thumb {
|
| 22 |
-
background: #
|
| 23 |
border-radius: 4px;
|
| 24 |
}
|
| 25 |
|
| 26 |
::-webkit-scrollbar-thumb:hover {
|
| 27 |
-
background: #
|
| 28 |
}
|
| 29 |
-
|
| 30 |
/* Animation classes */
|
| 31 |
.fade-in {
|
| 32 |
animation: fadeIn 0.8s ease-in-out;
|
|
|
|
| 1 |
|
| 2 |
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;300;400;500;700;900&display=swap');
|
| 3 |
|
| 4 |
+
:root {
|
| 5 |
+
--bg-color: #000000;
|
| 6 |
+
--text-color: #f8f8f8;
|
| 7 |
+
--border-color: #333333;
|
| 8 |
+
--highlight-color: #06b6d4;
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
* {
|
| 12 |
font-family: 'Vazirmatn', sans-serif;
|
| 13 |
+
margin: 0;
|
| 14 |
+
padding: 0;
|
| 15 |
+
box-sizing: border-box;
|
| 16 |
}
|
| 17 |
|
| 18 |
body {
|
| 19 |
+
background-color: var(--bg-color) !important;
|
| 20 |
+
color: var(--text-color) !important;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
h1, h2, h3, h4, h5, h6 {
|
| 24 |
+
color: var(--text-color);
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
a {
|
| 28 |
+
color: var(--highlight-color);
|
| 29 |
+
text-decoration: none;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
input, textarea, select, button {
|
| 33 |
+
font-family: 'Vazirmatn', sans-serif;
|
| 34 |
}
|
| 35 |
/* Custom scrollbar */
|
| 36 |
::-webkit-scrollbar {
|
|
|
|
| 38 |
}
|
| 39 |
|
| 40 |
::-webkit-scrollbar-track {
|
| 41 |
+
background: var(--bg-color);
|
| 42 |
}
|
| 43 |
|
| 44 |
::-webkit-scrollbar-thumb {
|
| 45 |
+
background: #333333;
|
| 46 |
border-radius: 4px;
|
| 47 |
}
|
| 48 |
|
| 49 |
::-webkit-scrollbar-thumb:hover {
|
| 50 |
+
background: #444444;
|
| 51 |
}
|
|
|
|
| 52 |
/* Animation classes */
|
| 53 |
.fade-in {
|
| 54 |
animation: fadeIn 0.8s ease-in-out;
|