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
+61
View File
@@ -0,0 +1,61 @@
body {
margin: 0;
}
.searchbar {
overflow: hidden;
background-color: #272727;
position: fixed;
top: 0;
width: 100%;
font-weight: bold;
text-align: center;
line-height: 30px;
z-index: 1;
}
.main {
padding: 16px;
margin-top: 20px;
text-align: center;
}
.banbox {
position: relative;
width: 90%;
display: table;
flex-direction: column;
border: 1px solid #161616;
margin-right: auto;
margin-left: auto;
margin-bottom: 10px;
border-radius: 3px;
}
.header {
width: 100%;
background-color:rgba(0,0,0,0.3);
}
.container {
display: table;
width: 100%;
}
.reason {
display: table-cell;
width: 90%;
}
.edit {
display: table-cell;
width: 10%;
}
.banned {
background-color:#ff5555;
}
.unbanned {
background-color:#00b75c;
}
+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;
}