You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
441 B
CSS
32 lines
441 B
CSS
3 years ago
|
* {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.cards {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
margin: 0;
|
||
|
pointer-events: all;
|
||
|
}
|
||
|
|
||
|
.cards > * {
|
||
|
flex: 1;
|
||
|
margin: 0 1vw;
|
||
|
max-width: 20vw;
|
||
|
object-fit: contain;
|
||
|
}
|
||
|
|
||
|
.cards > *:hover {
|
||
|
transform: scale(1.1);
|
||
|
}
|
||
|
|
||
|
.header--categories {
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
.header--categories > * {
|
||
|
pointer-events: all;
|
||
|
}
|