-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable_style.css
213 lines (181 loc) · 4.12 KB
/
table_style.css
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/* style.css */
/* Reset default margins and paddings */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Global body styling */
body {
font-family: Arial, sans-serif;
line-height: 1.3;
background-color: #fff;
color: #333;
padding: 15px;
}
/* Header styling */
header {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
padding: 10px 0;
}
/* Logo and header */
.header {
display: flex;
align-items: center;
padding: 10px;
width: 100%;
}
.logo-container,
.spacer {
flex: 0 0 min(350px, 30%);
}
.logo-container {
width: max(350px, 30vw);
margin-right: 5px;
text-align: left;
}
.logo-container img {
width: 100%;
height: auto;
}
.title-container {
flex: 1;
text-align: center;
}
.title-container h1 {
margin: 0;
word-wrap: break-word;
}
/* general header styling */
header h1 {
margin: 0;
flex: 1 1 auto;
font-size: 1.8em;
}
header nav a {
text-align: left;
margin: 0 15px;
text-decoration: none;
color: #357be6;
display: flex;
justify-content: flex-start;
}
nav {
text-align: left;
}
header nav a:hover {
text-decoration: underline;
}
/* Chart container styling */
#chartContainer {
width: 80%;
margin: 0 auto;
}
#bubbleChart {
width: 100% !important;
height: auto !important;
}
/* Table container for horizontal scrolling */
.table-container {
overflow-x: scroll;
overflow-y: visible;
margin-bottom: 20px;
scrollbar-width: auto; /* For Firefox */
-ms-overflow-style: scrollbar; /* For Internet Explorer and Edge */
}
/* Table styling */
table {
display: block;
overflow-y: visible;
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
font-size: 12px;
white-space: normal; /* Allow cells to wrap text */
}
input#search {
width: 100%;
padding: 12px; /* Increase vertical padding for a larger field */
font-size: 18px; /* Increase font size for better readability */
border: 1px solid #ccc;
border-radius: 4px;
margin-bottom: 20px;
}
table th,
table td {
border: 1px solid black;;
padding: 2px;
text-align: center;
overflow-wrap: break-word; /* Break long words */
word-wrap: break-word;
}
table th {
background-color: #f2f2f2;
cursor: pointer;
}
/* Sticky header row: all header cells will stick at the top */
thead {
position: sticky;
top: 0;
z-index: 10; /* Ensure it sits above table body cells */
background-color: #f2f2f2; /* Set a background so it doesn’t appear transparent */
}
thead th {
cursor: pointer;
}
th:first-child {
position: sticky;
left: 0;
background-color: #ebe0e0; /* Match your header color */
z-index: 3;
}
/* Style the first column cells (experiment name) */
td.experiment-name {
position: sticky;
left: 0;
background-color: #fff;
z-index: 2;
}
/* Experiment name and tooltip styling */
.experiment-name {
position: relative;
cursor: default;
}
.experiment-name .tooltip {
visibility: hidden;
opacity: 0;
position: absolute;
background-color: rgb(230, 226, 196);
border: 5px solid #5d8fbe;
padding: 5px;
color: #333;
font-size: 0.9em;
white-space: normal;
z-index: 100;
left: 105%;
top: 50%;
transform: translateY(-50%);
transition: opacity 0s;
/* Allow tooltip to expand horizontally, up to 40% of the viewport */
width: min(500px, 80vw);
word-wrap: break-word;
}
.experiment-name:hover .tooltip {
visibility: visible;
opacity: 1;
}
/* Apply a hash pattern over rows marked with the anomaly class */
tr.anomaly {
/* The repeating-linear-gradient creates diagonal stripes.
Adjust the colors and stripe widths as needed. */
background-image: repeating-linear-gradient(
45deg,
rgba(255, 255, 255, 0.068) 0,
rgba(214, 68, 32, 0.1) 5px,
transparent 5px,
transparent 10px
);
}