-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (66 loc) · 1.23 KB
/
styles.css
File metadata and controls
81 lines (66 loc) · 1.23 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
/* ========================
GLOBAL PAGE STYLE
======================== */
body {
font-family: Arial, sans-serif;
padding: 20px;
background: #f5f5f5;
}
h1 {
margin-bottom: 20px;
}
/* ========================
FILTER TOOLBAR
======================== */
#filters {
display: flex;
align-items: center;
gap: 12px;
padding: 12px;
margin-top: 20px;
margin-bottom: 20px;
background: #ffffff;
border: 1px solid #ddd;
border-radius: 6px;
box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
#filters input,
#filters select {
padding: 6px 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
/* ========================
TABLE
======================== */
table {
border-collapse: collapse;
width: 100%;
background: white;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
th, td {
border: 1px solid #ccc;
padding: 6px 10px;
text-align: left;
}
th {
cursor: pointer;
user-select: none;
background: #f2f2f2;
}
/* Sticky header so column names stay visible */
thead tr {
position: sticky;
top: 0;
background: #f2f2f2;
z-index: 5;
}
/* Highlight sorted column */
th.sorted {
background: #e6f0ff !important;
}
/* Zebra striping for readability */
tbody tr:nth-child(odd) {
background: #fafafa;
}