arudradey commited on
Commit
0e76c6e
·
verified ·
1 Parent(s): 882fa5a

Create src/app/globals.css

Browse files
Files changed (1) hide show
  1. src/app/globals.css +91 -0
src/app/globals.css ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
6
+
7
+ * {
8
+ box-sizing: border-box;
9
+ margin: 0;
10
+ padding: 0;
11
+ }
12
+
13
+ html,
14
+ body {
15
+ background: #0f0f13;
16
+ color: #e2e2f0;
17
+ font-family: "Inter", sans-serif;
18
+ height: 100%;
19
+ }
20
+
21
+ ::-webkit-scrollbar {
22
+ width: 6px;
23
+ height: 6px;
24
+ }
25
+ ::-webkit-scrollbar-track {
26
+ background: #1a1a24;
27
+ }
28
+ ::-webkit-scrollbar-thumb {
29
+ background: #3a3a52;
30
+ border-radius: 3px;
31
+ }
32
+
33
+ .highlight-overlay {
34
+ position: absolute;
35
+ border: 2px solid #6366f1;
36
+ border-radius: 4px;
37
+ background: rgba(99, 102, 241, 0.1);
38
+ pointer-events: none;
39
+ transition: all 0.2s ease;
40
+ animation: pulse-border 1.5s infinite;
41
+ }
42
+
43
+ @keyframes pulse-border {
44
+ 0%,
45
+ 100% {
46
+ border-color: #6366f1;
47
+ box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
48
+ }
49
+ 50% {
50
+ border-color: #818cf8;
51
+ box-shadow: 0 0 0 4px rgba(99, 102, 241, 0);
52
+ }
53
+ }
54
+
55
+ .screenshot-container {
56
+ position: relative;
57
+ overflow: hidden;
58
+ border-radius: 8px;
59
+ border: 1px solid #2a2a3a;
60
+ }
61
+
62
+ .action-badge {
63
+ display: inline-flex;
64
+ align-items: center;
65
+ gap: 4px;
66
+ padding: 2px 8px;
67
+ border-radius: 999px;
68
+ font-size: 11px;
69
+ font-weight: 600;
70
+ letter-spacing: 0.04em;
71
+ text-transform: uppercase;
72
+ }
73
+
74
+ .loading-dots::after {
75
+ content: "";
76
+ animation: dots 1.4s infinite;
77
+ }
78
+
79
+ @keyframes dots {
80
+ 0%,
81
+ 20% {
82
+ content: ".";
83
+ }
84
+ 40% {
85
+ content: "..";
86
+ }
87
+ 60%,
88
+ 100% {
89
+ content: "...";
90
+ }
91
+ }