-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (74 loc) · 1.92 KB
/
Copy pathstyle.css
File metadata and controls
86 lines (74 loc) · 1.92 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
:root{
--bg: #f5f7fa;
--card: #ffffff;
--text: #0f172a;
--muted: #6b7280;
--primary: blue;
--primary-600: #5aa158;
--danger: #ef4444;
--radius: 12px;
--shadow: 0 10px 30px rgba(2, 8, 23, 0.08);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
margin:0;
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
background: var(--bg);
color: var(--text);
}
.container{
max-width: 840px;
margin: 32px auto;
padding: 0 16px;
}
.app-title{
text-align:center;
margin: 8px 0 20px;
font-size: 32px;
letter-spacing: 0.5px;
}
.card{
background: var(--card);
border-radius: var(--radius);
padding: 20px;
box-shadow: var(--shadow);
margin-bottom: 20px;
}
.grid{
display:grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
}
.field{display:flex;flex-direction:column;gap:8px}
.field-full{grid-column: 1 / -1}
.label{font-weight:600;font-size:14px}
input{
border:1px solid #e5e7eb;
border-radius:10px;
padding:12px 14px;
outline:none;
font-size:14px;
}
input:focus{border-color:#c7d2fe; box-shadow: 0 0 0 3px rgba(99,102,241,.15)}
.btn{
border:none;
border-radius: 10px;
padding: 10px 14px;
background:#e5e7eb;
cursor:pointer;
}
.btn.small{padding:6px 10px;font-size:13px}
.btn.primary{background: var(--primary); color:white; width:100%; margin-top:12px}
.btn.primary:hover{background: var(--primary-600)}
.btn.danger{background: var(--danger); color:#fff}
.filters{display:flex; gap:12px; flex-wrap:wrap}
.table-wrap{overflow:auto}
.table{width:100%; border-collapse: collapse; margin-top:12px}
.table th, .table td{padding:12px 10px; text-align:left; border-bottom:1px solid #f1f5f9}
.table thead th{background:#f8fafc; font-weight:700}
.table .actions{white-space:nowrap}
.total{text-align:right; font-weight:800}
@media (max-width: 640px){
.grid{grid-template-columns: 1fr}
}