12345678910111213141516171819202122232425262728293031323334353637 |
- .collections {
- background-color: #f7f6f3;
- &-main {
- display: flex;
- flex-direction: column;
- gap: 20px;
- padding: 40px;
- }
- &-card {
- position: relative;
- border-radius: 10px;
- overflow: hidden;
- p {
- position: absolute;
- top: 50%;
- left: 50%;
- font-size: 48px;
- font-weight: bold;
- color: white;
- white-space: nowrap;
- transform: translate(-50%, -50%);
- z-index: 2;
- }
- &::after {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba($color: #000000, $alpha: 0.6);
- z-index: 1;
- }
- }
- }
|