Spaces:
Running
Running
Create style.css
Browse files
style.css
CHANGED
|
@@ -1,28 +1,37 @@
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
margin-top: 0;
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
|
|
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
| 2 |
+
|
| 3 |
body {
|
| 4 |
+
font-family: 'Inter', sans-serif;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
/* Animation for security elements */
|
| 8 |
+
@keyframes pulse {
|
| 9 |
+
0%, 100% {
|
| 10 |
+
opacity: 1;
|
| 11 |
+
}
|
| 12 |
+
50% {
|
| 13 |
+
opacity: 0.7;
|
| 14 |
+
}
|
| 15 |
}
|
| 16 |
|
| 17 |
+
.animate-pulse-slow {
|
| 18 |
+
animation: pulse 3s infinite;
|
|
|
|
| 19 |
}
|
| 20 |
|
| 21 |
+
/* Custom scrollbar */
|
| 22 |
+
::-webkit-scrollbar {
|
| 23 |
+
width: 8px;
|
|
|
|
|
|
|
| 24 |
}
|
| 25 |
|
| 26 |
+
::-webkit-scrollbar-track {
|
| 27 |
+
background: #1f2937;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
}
|
| 29 |
|
| 30 |
+
::-webkit-scrollbar-thumb {
|
| 31 |
+
background: #4f46e5;
|
| 32 |
+
border-radius: 4px;
|
| 33 |
}
|
| 34 |
+
|
| 35 |
+
::-webkit-scrollbar-thumb:hover {
|
| 36 |
+
background: #6366f1;
|
| 37 |
+
}
|