-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
156 lines (132 loc) · 2.58 KB
/
Copy pathstyles.css
File metadata and controls
156 lines (132 loc) · 2.58 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
}
body {
margin: 0;
font-family: "Segoe UI", Tahoma, sans-serif;
background: #f3f6fb;
color: #1a1a1a;
}
.page {
min-height: 100vh;
display: flex;
flex-direction: column;
padding: 2rem 3vw;
gap: 1.5rem;
}
.page__header {
display: flex;
flex-direction: column;
gap: 0.5rem;
max-width: 960px;
}
.page__header h1 {
margin: 0;
font-size: clamp(1.8rem, 4vw, 2.5rem);
color: #005ca5;
}
.page__description {
margin: 0;
font-size: 1rem;
color: #404b5a;
}
.table-section {
flex: 1;
display: flex;
flex-direction: column;
gap: 1rem;
}
.status-message {
min-height: 1.5rem;
color: #404b5a;
font-size: 0.95rem;
}
.status-message--error {
color: #c62828;
}
.table-wrapper {
flex: 1;
overflow: auto;
background: #fff;
border-radius: 0.75rem;
box-shadow: 0 10px 30px rgba(6, 34, 68, 0.08);
border: 1px solid rgba(0, 92, 165, 0.12);
}
.data-table {
width: 100%;
border-collapse: collapse;
min-width: 960px;
}
.data-table thead {
position: sticky;
top: 0;
background: linear-gradient(90deg, rgba(0, 92, 165, 0.9), rgba(0, 123, 193, 0.9));
color: #fff;
text-align: left;
z-index: 1;
}
.data-table th,
.data-table td {
padding: 0.75rem 1rem;
border-bottom: 1px solid rgba(0, 92, 165, 0.15);
font-size: 0.95rem;
}
.data-table tbody tr:nth-child(odd) {
background: rgba(0, 92, 165, 0.05);
}
.data-table tbody tr:hover {
background: rgba(0, 92, 165, 0.12);
}
.data-table td {
color: #1f2933;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
max-width: 240px;
}
.data-table td:nth-child(1),
.data-table td:nth-child(2) {
max-width: 320px;
}
.pagination {
display: flex;
align-items: center;
gap: 0.75rem;
flex-wrap: wrap;
justify-content: center;
}
.pagination__button {
padding: 0.5rem 1rem;
border-radius: 999px;
border: none;
background: #005ca5;
color: #fff;
cursor: pointer;
font-size: 0.95rem;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pagination__button:hover:not(:disabled) {
transform: translateY(-1px);
box-shadow: 0 6px 20px rgba(0, 92, 165, 0.25);
}
.pagination__button:disabled {
background: rgba(0, 92, 165, 0.35);
cursor: not-allowed;
box-shadow: none;
}
.pagination__status {
font-size: 0.95rem;
color: #1a1a1a;
}
@media (max-width: 768px) {
.page {
padding: 1.5rem 4vw;
}
.data-table {
min-width: 720px;
}
}