mapmerge update + mats properly work

This commit is contained in:
Letter N
2021-03-05 15:38:35 +08:00
parent a0020c6fdf
commit 2542fe05e9
35 changed files with 552 additions and 765 deletions
+9 -7
View File
@@ -3,7 +3,7 @@ body {
font-size: 9pt;
}
.value {
font-family: "consolas", monospace; /* consolas is better!! (was "Courier New") */
font-family: "Courier New", monospace;
font-size: 8pt;
display: inline-block;
}
@@ -12,24 +12,26 @@ table.matrix {
border-collapse: collapse; border-spacing: 0;
font-size: 7pt;
}
table.matrix td{
.matrix td{
text-align: center;
padding: 0 1ex 0ex 1ex;
}
table.matrixbrak {
border-collapse: collapse; border-spacing: 0;
}
table.matrixbrak td.lbrak, table.matrixbrak td.rbrak{
table.matrixbrak td.lbrak {
width: 0.8ex;
font-size: 50%;
border-top: solid 0.25ex black;
border-bottom: solid 0.25ex black;
}
table.matrixbrak td.lbrak {
border-left: solid 0.5ex black;
border-right: none;
}
table.matrixbrak td.rbrak {
border-right: solid 0.5ex black;
border-left: none;
width: 0.8ex;
font-size: 50%;
border-top: solid 0.25ex black;
border-bottom: solid 0.25ex black;
border-right: solid 0.5ex black;
border-left: none;
}