155 lines
2.3 KiB
CSS
155 lines
2.3 KiB
CSS
body {
|
|
--bs-gutter-x: 0;
|
|
background: black !important;
|
|
}
|
|
|
|
#screenRow {
|
|
gap: 0 !important;
|
|
margin: 0;
|
|
text-transform: uppercase;
|
|
letter-spacing: .1em;
|
|
}
|
|
|
|
#screenRow {
|
|
--bs-gutter-x: 0;
|
|
}
|
|
|
|
.card {
|
|
background: black;
|
|
border: none;
|
|
border-radius: 0;
|
|
margin-bottom: 0.5em !important;
|
|
}
|
|
|
|
.card-header,
|
|
.card-header th{
|
|
background: transparent;
|
|
font-weight: 400 !important;
|
|
font-size: 1.3em;
|
|
border: none;
|
|
}
|
|
|
|
#screenRow .table {
|
|
--bs-border-width: 0;
|
|
}
|
|
|
|
#holdTable {
|
|
margin: 0 0 0 auto !important;
|
|
}
|
|
|
|
#holdTable,
|
|
#nextTable {
|
|
border-bottom: 2px solid white;
|
|
}
|
|
|
|
#statsTable {
|
|
margin-right: 1.5em;
|
|
}
|
|
|
|
#statsTable tr {
|
|
display: flex;
|
|
flex-flow: column;
|
|
align-items: center;
|
|
}
|
|
|
|
#statsTable td,
|
|
#statsTable th {
|
|
margin: 0;
|
|
padding: 0 !important;
|
|
width: auto;
|
|
height: auto;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
#statsTable th {
|
|
display: inline;
|
|
flex-flow: row;
|
|
font-size: 0.8em;
|
|
text-align: center;
|
|
width: 200%;
|
|
}
|
|
|
|
#statsTable td {
|
|
font-size: 1.3em;
|
|
font-weight: 600;
|
|
color: white;
|
|
}
|
|
|
|
#matrixCard {
|
|
background: transparent;
|
|
border-top: none;
|
|
border-left: 4px solid white;
|
|
border-right: 4px solid white;
|
|
border-bottom: 4px solid white;
|
|
}
|
|
|
|
.mino {
|
|
padding: 0;
|
|
opacity: 100%;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
}
|
|
|
|
.I.mino {
|
|
background-color: #42AFE1;
|
|
border-color: #6CEAFF;
|
|
}
|
|
|
|
.J.mino {
|
|
background-color: #1165B5;
|
|
border-color: #339BFF;
|
|
}
|
|
|
|
.L.mino {
|
|
background-color: #F38927;
|
|
border-color: #FFBA59;
|
|
}
|
|
|
|
.O.mino {
|
|
background-color: #F6D03C;
|
|
border-color: #FFFF7F;
|
|
}
|
|
|
|
.S.mino {
|
|
background-color: #32ee3e;
|
|
border-color: #84F880;
|
|
}
|
|
|
|
.T.mino {
|
|
background-color: #9739A2;
|
|
border-color: #D958E9;
|
|
}
|
|
|
|
.Z.mino {
|
|
background-color: #EB4F65;
|
|
border-color: #FF7F79;
|
|
}
|
|
|
|
.ghost.mino {
|
|
background-color: #fff4;
|
|
border-color: #fff8;
|
|
}
|
|
|
|
.moving.mino {
|
|
filter: saturate(80%) brightness(150%);
|
|
}
|
|
|
|
.locking.mino {
|
|
filter: saturate(50%) brightness(200%);
|
|
}
|
|
|
|
.disabled.mino {
|
|
filter: brightness(50%) contrast(80%);
|
|
opacity: 70%;
|
|
}
|
|
|
|
@keyframes locked-animation {
|
|
from {
|
|
filter: saturate(50%) brightness(400%);
|
|
}
|
|
}
|
|
|
|
.locked.mino {
|
|
animation: locked-animation;
|
|
animation-duration: 0.2s;
|
|
} |