-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
46 lines (39 loc) · 680 Bytes
/
Copy pathstyles.css
File metadata and controls
46 lines (39 loc) · 680 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
body {
font-family: 'Segoe UI', system-ui;
margin: 2rem;
background: #f5f7fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
h1 {
color: #2c3e50;
margin-bottom: 2rem;
}
#csvFile {
margin-bottom: 2rem;
padding: 0.5rem;
border: 2px solid #3498db;
border-radius: 5px;
}
.hidden {
display: none;
}
.error {
color: #e74c3c;
padding: 1rem;
margin: 1rem 0;
border: 1px solid #e74c3c;
border-radius: 5px;
}
.dataTables_wrapper {
margin-top: 1rem;
}
td.dt-body-right {
text-align: right;
}