Files
vgstation13/html/browser/chem_master.css
ShiftyRail b71b7b6d06 Back to the drawing board (#37538)
* Revert "May fix the login failure issue on 516 (#37537)"

This reverts commit 6071b0a21e.

* Revert "516 compatibility PR 2: the revenge of Node.js (#37501)"

This reverts commit 875eca8b71.
2025-05-06 04:52:45 -05:00

44 lines
834 B
CSS

table{
width: 100%;
border-collapse: collapse;
}
.column1{
width: 100%;
overflow: hidden;
}
.column2{
white-space: nowrap;
}
.li{
padding: 0px 0px 4px;
}
.pillIconsContainer {
text-align: center
}
.pillIconWrapper{
display: inline-block;
padding:0px 4px 0px 4px;
margin:0 2px 2px 0;
}
.pillIcon {
/* The pill image will be enlarged to 64x64, the box that contains it will remain 32x32 though. Essentially cropping it out. */
width: 32px;
height: 32px;
/* Since we can't really crop shit we're just hiding the rest */
overflow: hidden;
}
.pillIcon img {
/* Blow it up baby */
width: 64px;
height: 64px;
/* "Center" it, since we can only crop out the top-left */
margin: -16px -16px -16px -16px;
/* Remove antialias to prevent cataracts */
-ms-interpolation-mode: nearest-neighbor;
}