40 lines
684 B
CSS
40 lines
684 B
CSS
|
|
body {
|
|
font-family: 'Nunito', sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.pecs-card {
|
|
border-radius: 0.5rem;
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.pecs-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.pecs-card.active {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
|
|
border: 2px solid #4285F4;
|
|
}
|
|
|
|
.card-img-top {
|
|
width: 100%;
|
|
height: 150px;
|
|
object-fit: cover;
|
|
background-color: #e9ecef;
|
|
}
|
|
|
|
.card-title {
|
|
font-size: 1.1rem;
|
|
font-weight: bold;
|
|
}
|