caustino commited on
Commit
ccdf712
·
verified ·
1 Parent(s): b0e18b9

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +27 -18
style.css CHANGED
@@ -1,28 +1,37 @@
 
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
 
 
 
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
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
+ }