21 lines
424 B
CSS
21 lines
424 B
CSS
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
|
|
}
|
|
|
|
.grid-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 4px;
|
|
border-radius: 8px;
|
|
background-color: gainsboro;
|
|
/* transition: background-color 0.5s ease; */
|
|
}
|
|
|
|
.grid-item:hover {
|
|
/* background-color: aquamarine; */
|
|
/* transition: background-color 0.5s ease; */
|
|
}
|