1
0
mirror of https://gitlab.com/Anson-Projects/zine.git synced 2025-06-15 13:16:39 +00:00
zine/output/style.css

42 lines
652 B
CSS

.featured main {
display: inline-block;
vertical-align: top;
}
.featured hgroup {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.featured header {
display: flex;
align-items: center;
}
.featured img {
width: auto;
height: auto;
max-width: 40%;
max-height: 30vh;
}
.featured hgroup {
flex-grow: 1;
padding-left: 20px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.featured header {
flex-direction: column;
align-items: center;
}
.featured hgroup {
padding-left: 0;
padding-top: 20px;
}
}