33 lines
480 B
CSS
33 lines
480 B
CSS
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
#pet-card {
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
height: 70vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.card-img-top {
|
|
width: 100%;
|
|
height: 75%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.card-body {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
#actions .btn {
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 50%;
|
|
margin: 0 20px;
|
|
font-size: 1.5rem;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|