Files
website/html/css/golf.css
2021-12-29 13:43:48 -05:00

22 lines
347 B
CSS
Executable File

.card-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.card-container > input[type='image'] {
width: min(18vh, 50%);
border-width: 10px;
margin: 0px;
border-radius: 20px;
}
.card-container :not(.highlight){
border-color: black;
}
.highlight {
border-color: green;
border-style: solid;
}