Files
Blog/styles/BlogList.module.css
2022-02-15 09:17:52 -05:00

88 lines
1.6 KiB
CSS

.blog__link {
opacity: 0.7;
}
.blog__link:hover {
opacity: 1;
}
.blog__link:hover li div.hero_image img {
opacity: 0.8;
transition: opacity 0.3s ease;
}
.blog__link:hover li .blog__info h2,
.blog__link:hover li .blog__info h3,
.blog__link:hover li .blog__info p {
transform: translateX(10px);
transition: transform 0.5s ease-out;
}
.hero_image {
width: 100%;
height: 33vh;
overflow: hidden;
background-color: #000;
}
.hero_image img {
object-fit: cover;
object-position: 50% 50%;
opacity: 1;
transition: opacity 0.3s ease;
min-height: 100%;
}
.blog__info {
display: flex;
flex-direction: column;
justify-content: center;
padding: 1.5rem 1.25rem;
transform: translateX(0px);
transition: transform 0.3s ease-in;
border-bottom: 1px solid #ebebeb;
}
.blog__info h2,
.blog__info h3,
.blog__info p {
transform: translateX(0px);
transition: transform 0.5s ease-out;
}
.blog__link li {
opacity: inherit;
display: flex;
justify-content: center;
flex-direction: column;
min-height: 38vh;
margin-bottom: 0;
}
.blog__info h2 {
margin-bottom: 0.5rem;
}
.blog__info h3 {
margin-bottom: 1rem;
}
.blog__info p {
max-width: 900px;
}
@media (min-width: 768px) {
.blog__link li {
min-height: 250px;
height: 33.333vh;
flex-direction: row;
}
.hero_image {
height: 100%;
}
.hero_image img {
min-width: 100%;
height: 100%;
width: auto;
min-height: 0;
}
.blog__info {
min-width: 70%;
}
}
@media (min-width: 1280px) {
.blog__info {
padding: 3rem;
}
.blog__info h3 {
margin-bottom: 1.2rem;
}
}