-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (45 loc) · 998 Bytes
/
style.css
File metadata and controls
53 lines (45 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
body {
background-color: #f9fafb;
}
.font-inter {
font-family: 'Inter', sans-serif;
}
/* Drop zone */
.drop-zone {
border: 2px dashed #cbd5e1;
border-radius: 1rem; /* rounder */
padding: 2rem;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
}
.drop-zone:hover,
.drop-zone.drag-over {
border-color: #3b82f6;
background-color: #eff6ff;
}
.file-input {
display: none;
}
/* Button */
.submit-btn {
width: 100%;
background-color: #2563eb;
color: white;
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: 0.75rem; /* rounder */
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
transition: background-color 0.2s ease;
}
.submit-btn:hover {
background-color: #1d4ed8;
}
/* Status animation */
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}