StarlioX/web/static/style/gallery.css

22 lines
378 B
CSS
Raw Normal View History

2022-09-18 19:27:23 +03:00
.card {
2022-09-19 13:25:26 +03:00
border-radius: 2%;
min-width: 350px;
max-width: 400px;
2022-09-18 19:27:23 +03:00
height: 200px;
overflow: hidden;
margin: 10px;
background-color: #131313;
}
2022-09-19 02:08:05 +03:00
.header-row {
flex-wrap: wrap;
2022-09-18 19:27:23 +03:00
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
}
2022-09-19 13:25:26 +03:00
.card-img-top {
object-fit: none;
object-position: center;
2022-09-19 02:08:05 +03:00
}