mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00

* Timespinner: Add "no hell spiders" enemy rando option that is present in upstream settings * Timespinner: Prism Break support tweaks (including tracker support) * Timespinner: Add support for upstream Lock Key Amadeus flag * Timespinner: Add support for upstream Risky Warps flag * Timespinner: Add support for upstream Pyramid Start flag * Timespinner: fix error in lab connectivity logic * Timespinner: use has_all to simplify one check Per PR suggestion. Co-authored-by: Scipio Wright <scipiowright@gmail.com> * Timespinner: fix apparent logic error inherited from in-rando logic * Timespinner: adjust "Origins" location logic slightly further to account for a Risky Warps case * Timespinner: remove the backward compat options for the recent flag additions * Timespinner: add newly added Gate Keep option from rando * Timespinner: adjust the laser access colours in the tracker * Timespinner: fix an item description in the tracker * Timespinner: based on testing feedback, put Laser Access items in their own category * Timespinner: add support for new upstream flag Royal Roadblock * Timespinner: also ensure the new flag gets put in slot data * Timespinner: fix bug in universal tracker support indicating castle basement is accessible at the lower Rising Tides flooding level * Timespinner: exclude Talaria Attachment and Timespinner Wheel from pyramid start starter progression items * Timespinner: fix region logic for the left pyramid warp * Timespinner: fix main Gyre access logic when Risky Warps warps you behind the lasers * Timespinner: apply suggested spacing fix Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com> --------- Co-authored-by: sgrunt <sgrunt1987@gmail.com> Co-authored-by: Scipio Wright <scipiowright@gmail.com>
217 lines
4.2 KiB
CSS
217 lines
4.2 KiB
CSS
#player-tracker-wrapper{
|
|
margin: 0;
|
|
}
|
|
|
|
#inventory-table{
|
|
border-top: 2px solid #000000;
|
|
border-left: 2px solid #000000;
|
|
border-right: 2px solid #000000;
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
padding: 3px 3px 10px;
|
|
width: 374px;
|
|
background-color: #8d60a7;
|
|
|
|
display: grid;
|
|
grid-template-rows: repeat(5, 48px);
|
|
}
|
|
|
|
#inventory-table img{
|
|
display: block;
|
|
}
|
|
|
|
#inventory-table div.table-row{
|
|
display: grid;
|
|
grid-template-columns: repeat(5, 1fr);
|
|
}
|
|
|
|
#inventory-table div.C1{
|
|
grid-column: 1;
|
|
place-content: center;
|
|
place-items: center;
|
|
display: flex;
|
|
}
|
|
#inventory-table div.C2{
|
|
grid-column: 2;
|
|
place-content: center;
|
|
place-items: center;
|
|
display: flex;
|
|
}
|
|
#inventory-table div.C3{
|
|
grid-column: 3;
|
|
place-content: center;
|
|
place-items: center;
|
|
display: flex;
|
|
}
|
|
#inventory-table div.C4{
|
|
grid-column: 4;
|
|
place-content: center;
|
|
place-items: center;
|
|
display: flex;
|
|
}
|
|
#inventory-table div.C5{
|
|
grid-column: 5;
|
|
place-content: center;
|
|
place-items: center;
|
|
display: flex;
|
|
}
|
|
|
|
#inventory-table img{
|
|
max-width: 40px;
|
|
max-height: 40px;
|
|
filter: grayscale(100%) contrast(75%) brightness(30%);
|
|
}
|
|
|
|
#inventory-table img.acquired{
|
|
filter: none;
|
|
}
|
|
|
|
#inventory-table img.acquired.purple{ /*00FFFF*/
|
|
filter: hue-rotate(270deg) saturate(6) brightness(0.8);
|
|
}
|
|
#inventory-table img.acquired.cyan{ /*FF00FF*/
|
|
filter: hue-rotate(138deg) saturate(10) brightness(0.8);
|
|
}
|
|
#inventory-table img.acquired.green{ /*32CD32*/
|
|
filter: hue-rotate(84deg) saturate(10) brightness(0.7);
|
|
}
|
|
#inventory-table img.acquired.hotpink{ /*FF69B4*/
|
|
filter: sepia(100%) hue-rotate(300deg) saturate(10);
|
|
}
|
|
#inventory-table img.acquired.lightsalmon{ /*FFA07A*/
|
|
filter: sepia(100%) hue-rotate(347deg) saturate(10);
|
|
}
|
|
#inventory-table img.acquired.crimson{ /*DB143B*/
|
|
filter: sepia(100%) hue-rotate(318deg) saturate(10) brightness(0.86);
|
|
}
|
|
|
|
#inventory-table span{
|
|
color: #B4B4A0;
|
|
font-size: 40px;
|
|
max-width: 40px;
|
|
max-height: 40px;
|
|
filter: grayscale(100%) contrast(75%) brightness(30%);
|
|
}
|
|
|
|
#inventory-table span.acquired{
|
|
filter: none;
|
|
}
|
|
|
|
#inventory-table div.image-stack{
|
|
display: grid;
|
|
position: relative;
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: 1fr;
|
|
}
|
|
|
|
#inventory-table div.image-stack div.stack-back{
|
|
grid-column: 1;
|
|
grid-row: 1;
|
|
}
|
|
|
|
#inventory-table div.image-stack div.stack-front{
|
|
grid-column: 1;
|
|
grid-row: 1;
|
|
display: grid;
|
|
grid-template-columns: 20px 20px;
|
|
grid-template-rows: 20px 20px;
|
|
}
|
|
|
|
#inventory-table div.image-stack div.stack-top-left{
|
|
grid-column: 1;
|
|
grid-row: 1;
|
|
z-index: 1;
|
|
}
|
|
|
|
#inventory-table div.image-stack div.stack-top-right{
|
|
grid-column: 2;
|
|
grid-row: 1;
|
|
z-index: 1;
|
|
}
|
|
|
|
#inventory-table div.image-stack div.stack-bottum-left{
|
|
grid-column: 1;
|
|
grid-row: 2;
|
|
z-index: 1;
|
|
}
|
|
|
|
#inventory-table div.image-stack div.stack-bottum-right{
|
|
grid-column: 2;
|
|
grid-row: 2;
|
|
z-index: 1;
|
|
}
|
|
|
|
#inventory-table div.image-stack div.stack-front img{
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
#inventory-table div.counted-item{
|
|
position: relative;
|
|
}
|
|
|
|
#inventory-table div.item-count{
|
|
position: absolute;
|
|
color: white;
|
|
font-family: "Minecraftia", monospace;
|
|
font-weight: bold;
|
|
bottom: 0;
|
|
right: 0;
|
|
}
|
|
|
|
#location-table{
|
|
width: 384px;
|
|
border-left: 2px solid #000000;
|
|
border-right: 2px solid #000000;
|
|
border-bottom: 2px solid #000000;
|
|
border-bottom-left-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
background-color: #8d60a7;
|
|
padding: 0 3px 3px;
|
|
font-size: 14px;
|
|
cursor: default;
|
|
}
|
|
|
|
#location-table th{
|
|
vertical-align: middle;
|
|
text-align: left;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
#location-table td{
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
#location-table td.counter{
|
|
text-align: right;
|
|
font-size: 14px;
|
|
}
|
|
|
|
#location-table td.toggle-arrow{
|
|
text-align: right;
|
|
}
|
|
|
|
#location-table tr#Total-header{
|
|
font-weight: bold;
|
|
}
|
|
|
|
#location-table img{
|
|
height: 100%;
|
|
max-width: 30px;
|
|
max-height: 30px;
|
|
}
|
|
|
|
#location-table tbody.locations{
|
|
font-size: 12px;
|
|
}
|
|
|
|
#location-table td.location-name{
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.hide{
|
|
display: none;
|
|
}
|