2023-07-05 23:21:43 +02:00
|
|
|
#searchBar {
|
|
|
|
background-image: url('/images/search.svg');
|
|
|
|
background-position: 16px 16px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 16px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
padding: 12px 20px 12px 40px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-06-02 00:12:55 +02:00
|
|
|
.features-container {
|
|
|
|
display: grid;
|
2023-08-20 22:57:19 +02:00
|
|
|
grid-template-columns: repeat(auto-fill, minmax(15rem, 3fr));
|
2023-06-02 00:12:55 +02:00
|
|
|
gap: 25px 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-card {
|
|
|
|
border: 2px solid rgba(0, 0, 0, .25);
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
padding: 1.25rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
background: rgba(13, 110, 253, 0.05);
|
|
|
|
transition: transform 0.3s, border 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-card a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-card .card-text {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-card:hover {
|
|
|
|
border: 1px solid rgba(0, 0, 0, .5);
|
|
|
|
cursor: pointer;
|
|
|
|
transform: scale(1.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-card:hover .card-title {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
.card-title.text-primary {
|
|
|
|
color: #000; /* Replace with your desired shade of blue */
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-card-icon {
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
transform: translateY(-5px);
|
|
|
|
}
|
|
|
|
.home-card-icon-colour {
|
|
|
|
filter: invert(0.2) sepia(2) saturate(50) hue-rotate(190deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.favorite-icon {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Only show the favorite icons when the parent card is being hovered over */
|
|
|
|
.feature-card:hover .favorite-icon {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.favorite-icon img {
|
|
|
|
filter: brightness(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.jumbotron {
|
|
|
|
padding: 3rem 3rem; /* Reduce vertical padding */
|
|
|
|
}
|