-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathstyles.css
266 lines (220 loc) · 5.88 KB
/
styles.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
.container {
width: 80%;
margin-top: -40px;
margin-bottom: -40px;
margin-right: 0px;
margin-left: 0px;
}
/*
#navbar {
background: linear-gradient(
135deg,
#61155c1a 7%,
#ba2cb01a 50%,
#d037c51a 300%
);
}
*/
.text {
display: inline-block;
}
.icon {
display: inline;
height: 30px;
margin-top: 0px;
margin-bottom: 0px;
}
.diagram {
}
.screenshot_full_screen {
border: 1px solid transparent; /* Set image border style */
border-radius: 10px; /* Give images rounded edge */
border-color: #EDEEF3; /* Image border color */
/* Force image to keep original width and height */
width: auto;
height: auto;
/* Center the image */
display: block;
margin: auto;
}
.screenshot_nav_bar {
border: 1px solid transparent; /* Set image border style */
border-radius: 10px; /* Give images rounded edge */
border-color: #EDEEF3; /* Image border color */
/* Force image to keep original width and height */
width: 180px;
height: auto;
/* Center the image */
display: block;
margin: auto;
}
.screenshot_modal {
border: 1px solid transparent; /* Set image border style */
border-radius: 10px; /* Give images rounded edge */
border-color: #EDEEF3; /* Image border color */
/* Force image to keep original width and height */
width: 450px;
height: auto;
/* Center the image */
display: block;
margin: auto;
}
/*.screenshot {
border: 1px solid transparent; *//* Set image border style *//*
border-radius: 10px; *//* Give images rounded edge *//*
border-color: #EDEEF3; *//* Image border color *//*
*//* Force image to keep original width and height *//*
width: 400px;
height: auto;
*//* Center the image *//*
display: block;
margin: auto;
}*/
/*.container_for_screenshot {
display: grid;
place-items: center;
}*/
/*
table {
border-collapse: collapse;
width: 100%;
}
table, th, td {
border: 1px solid #A9A9A9;
}
th, td {
padding: 8px;
display: table-cell;
}
table tr:first-child th {
font-weight: bold;
vertical-align: middle; */
/* Center vertically *//*
text-align: center;
}
table tr td:first-child {
font-weight: bold;
vertical-align: middle; */
/* Center vertically *//*
text-align: center;
}*/
table {
border-collapse: collapse;
width: 100%;
table-layout: fixed;
}
table th, table td {
width: auto;
min-width: 230px; /*Ajustable, avoid columns to be too narrow */
border: 1px solid #ddd;
padding: 12px;
text-align: left;
vertical-align: middle;
word-wrap: break-word;
}
.six-columns th, .six-columns td {
min-width: 100px; /* for six-column tables */
}
.six-columns-fixed-first-row-cn {
display: block;
max-height: 500px; /* Adjust this value based on your needs */
width: 100%;
font-size: 11px; /* Reduced font size from 13px to 11px */
}
.six-columns-fixed-first-row-cn table {
width: 100%;
table-layout: auto; /* Changed to auto for more flexible layout */
}
.six-columns-fixed-first-row-cn thead,
.six-columns-fixed-first-row-cn tr:first-child {
position: sticky;
top: 0;
z-index: 1;
}
.six-columns-fixed-first-row-cn th, .six-columns-fixed-first-row-cn td {
min-width: 50px; /* Further reduced minimum width */
padding: 6px; /* Further reduced padding */
white-space: normal;
word-wrap: break-word;
background-color: inherit;
font-size: inherit;
text-align: left;
}
.six-columns-fixed-first-row-cn td:first-child,
.six-columns-fixed-first-row-cn th:first-child,
.six-columns-fixed-first-row-cn td:nth-child(2),
.six-columns-fixed-first-row-cn th:nth-child(2),
.six-columns-fixed-first-row-cn td:nth-child(3),
.six-columns-fixed-first-row-cn th:nth-child(3) {
min-width: 60px; /* Make first three columns narrower */
max-width: 70px;
}
.six-columns-fixed-first-row-cn td:nth-child(n+4),
.six-columns-fixed-first-row-cn th:nth-child(n+4) {
min-width: 71px; /* Make the remaining columns wider */
max-width: 90px;
}
.six-columns-fixed-first-row-cn td,
.six-columns-fixed-first-row-cn th {
overflow-wrap: break-word;
hyphens: auto;
}
.six-columns-fixed-first-row-cn tr:first-child th {
background-color: #1F32D6; /* Cobo Blue */
}
.four-columns th, .four-columns td {
min-width: 150px; /* for four-column tables */
}
/* Style the header */
table th {
height: 37px;
background-color: #1F32D6; /* Cobo Blue */
color: white !important;
font-weight: bold;
vertical-align: middle;
}
/* Add left padding to the first column */
table:not(.six-columns-fixed-first-row-cn):not(.six-columns-fixed-first-row) th:first-child,
table:not(.six-columns-fixed-first-row-cn):not(.six-columns-fixed-first-row) td:first-child {
padding-left: 8px;
}
.six-columns-fixed-first-row {
display: block;
max-height: 500px; /* Adjust this value based on your needs */
width: 100%;
font-size: 11px; /* Further reduced font size */
overflow-x: auto; /* Add horizontal scroll when needed */
}
.six-columns-fixed-first-row table {
width: 100%;
table-layout: fixed; /* Changed back to fixed for better control */
}
.six-columns-fixed-first-row thead,
.six-columns-fixed-first-row tr:first-child {
position: sticky;
top: 0;
z-index: 1;
}
.six-columns-fixed-first-row th, .six-columns-fixed-first-row td {
min-width: 40px; /* Further reduced minimum width */
max-width: 100px; /* Reduced maximum width */
padding: 4px; /* Further reduced padding */
white-space: normal;
word-wrap: break-word;
background-color: inherit;
font-size: inherit;
text-align: left;
}
.six-columns-fixed-first-row td:first-child,
.six-columns-fixed-first-row th:first-child {
min-width: 80px; /* Reduced first column width */
max-width: 120px; /* Added max-width for first column */
}
.six-columns-fixed-first-row td,
.six-columns-fixed-first-row th {
overflow-wrap: break-word;
hyphens: auto;
}
.six-columns-fixed-first-row tr:first-child th {
background-color: #1F32D6; /* Cobo Blue */
}