-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.css
More file actions
100 lines (100 loc) · 1.81 KB
/
Copy pathdata.css
File metadata and controls
100 lines (100 loc) · 1.81 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
body {
background-color: #f8f9fa;
color: #212529;
transition: background-color 0.3s, color 0.3s;
}
body.dark-mode {
background-color: #212529;
color: #f8f9fa;
}
#toggleSidebar {
background: transparent;
border: none;
color: white;
font-size: 24px;
transition: transform 0.2s;
}
#toggleSidebar:hover {
transform: scale(1.1);
}
.sidebar {
height: 100vh;
position: fixed;
left: -250px;
top: 0;
bottom: 0;
z-index: 100;
padding: 48px 0 0;
background-color: #343a40;
transition: left 0.3s ease;
}
.sidebar.active {
left: 0;
}
.sidebar a {
color: white;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: none;
z-index: 50;
}
.content {
transition: margin-left 0.3s ease;
margin-left: 0;
}
.content.shifted {
margin-left: 250px;
}
header {
padding: 1px 20px;
position: sticky;
top: 0;
z-index: 10;
}
.dark-mode-toggle {
background: none;
border: none;
color: inherit;
cursor: pointer;
}
body.dark-mode .card {
background-color: #343a40;
color: #f8f9fa;
}
body.dark-mode table {
color: #f8f9fa;
}
.table {
width: 100%;
table-layout: auto;
}
.table thead th {
position: sticky;
top: 0;
background-color: rgba(255, 255, 255, 0.7);
color: #212529;
z-index: 10;
backdrop-filter: blur(5px);
}
.table tbody tr:hover {
background-color: rgba(0, 123, 255, 0.2);
cursor: pointer;
}
#downloadBtn {
margin-left: auto;
padding: 10px 15px;
}
@media (max-width: 576px) {
.table {
font-size: 0.55rem;
}
.table th, .table td {
white-space: nowrap;
}
}