-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathDocumentUploadPage.module.css
More file actions
105 lines (90 loc) · 1.55 KB
/
DocumentUploadPage.module.css
File metadata and controls
105 lines (90 loc) · 1.55 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
.wrapper {
padding: 24px 0 48px;
}
.hero {
margin-bottom: 20px;
padding: 20px;
border-radius: 12px;
background: linear-gradient(135deg, #f4f9ff 0%, #e7fff7 100%);
border: 1px solid #d7ecff;
}
.title {
margin: 0;
font-size: 1.9rem;
font-weight: 700;
color: #183153;
}
.subtitle {
margin: 8px 0 0;
color: #2c4e71;
max-width: 780px;
}
.controlRow {
display: grid;
grid-template-columns: 110px 1fr auto;
gap: 10px;
align-items: center;
margin-bottom: 16px;
}
.label {
margin: 0;
font-weight: 600;
}
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
}
.card {
background: #fff;
border: 1px solid #e4ebf3;
border-radius: 12px;
padding: 16px;
}
.tableCard {
background: #fff;
border: 1px solid #e4ebf3;
border-radius: 12px;
padding: 16px;
margin-top: 16px;
}
.cardTitle {
margin-bottom: 14px;
font-size: 1.1rem;
font-weight: 700;
}
.tableHead {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.countBadge {
display: inline-flex;
align-items: center;
padding: 4px 10px;
border-radius: 999px;
background: #edf4ff;
color: #1d4e89;
font-weight: 600;
font-size: 0.85rem;
}
.hashCell {
max-width: 240px;
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.emptyState {
margin: 0;
color: #4d6379;
}
@media (width <= 900px) {
.grid {
grid-template-columns: 1fr;
}
.controlRow {
grid-template-columns: 1fr;
}
}