-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (56 loc) · 1.27 KB
/
Copy pathstyles.css
File metadata and controls
66 lines (56 loc) · 1.27 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
body {
font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.input {
border: 1px solid #cbd5f5;
border-radius: 0.375rem;
padding: 0.25rem 0.5rem;
transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.input:focus {
outline: none;
border-color: #34d399;
box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.35);
}
.btn-primary,
.btn-secondary,
.btn-danger {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.5rem 0.75rem;
border-radius: 0.5rem;
font-weight: 600;
transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
border: none;
}
.btn-primary {
background-color: #10b981;
color: #ffffff;
box-shadow: 0 6px 18px rgba(16, 185, 129, 0.25);
}
.btn-primary:hover {
background-color: #059669;
transform: translateY(-1px);
}
.btn-secondary {
background-color: #e2e8f0;
color: #1e293b;
box-shadow: 0 4px 12px rgba(30, 41, 59, 0.1);
}
.btn-secondary:hover {
background-color: #cbd5f5;
transform: translateY(-1px);
}
.btn-danger {
background-color: #f43f5e;
color: #ffffff;
box-shadow: 0 6px 18px rgba(244, 63, 94, 0.25);
}
.btn-danger:hover {
background-color: #e11d48;
transform: translateY(-1px);
}
canvas {
image-rendering: pixelated;
}