47 lines
1 KiB
SCSS
47 lines
1 KiB
SCSS
.rep {
|
|
aspect-ratio: 2/0.955;
|
|
border-radius: $card-corner;
|
|
display: grid;
|
|
grid-template-columns: 1fr 3.39fr; /* left column takes up 1 fraction, right column takes up 3 fractions */
|
|
grid-gap: $unit-half; /* add a gap of 8px between grid items */
|
|
height: $rep-height;
|
|
transition: $duration-opacity-fade opacity ease-in;
|
|
opacity: 0.5;
|
|
|
|
.mainhand,
|
|
.weapon {
|
|
background: var(--card-bg);
|
|
border-radius: 4px;
|
|
|
|
img[src*='jpg'] {
|
|
border-radius: 4px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.mainhand {
|
|
aspect-ratio: 73/153;
|
|
display: grid;
|
|
grid-column: 1 / 2; /* spans one column */
|
|
}
|
|
|
|
.weapons {
|
|
display: grid; /* make the right-images container a grid */
|
|
grid-template-columns: repeat(
|
|
3,
|
|
1fr
|
|
); /* create 3 columns, each taking up 1 fraction */
|
|
grid-template-rows: repeat(
|
|
3,
|
|
1fr
|
|
); /* create 3 rows, each taking up 1 fraction */
|
|
gap: $unit-half;
|
|
// column-gap: $unit;
|
|
// row-gap: $unit-2x;
|
|
}
|
|
|
|
.weapon {
|
|
aspect-ratio: 280 / 160;
|
|
display: grid;
|
|
}
|
|
}
|