I have this css in the customizer from the Clinic site library.
/* GeneratePress Site CSS */
/* Comment button */
.form-submit .submit {
border-radius: 9999px;
}
/* Text highlight */
mark.gb-highlight {
border-bottom: 2px solid var(--contrast);
}
.box-shadow {
box-shadow: 0px 0px 50px -10px rgba(45,54,99,0.3);
}
/* Blog featured post */
@media (min-width: 768px) and (max-width: 1024px) {
.featured-column {
width: 100% !important;
}
}
/* Right sidebar */
.sidebar aside {
border-radius: 8px;
border: 1px solid var(--base-2);
}
@media (max-width: 768px) {
.sidebar {
margin-top: 5em;
}
}
/* End GeneratePress Site CSS */
I’m assuming that’s what makes the box around the latest or stickied post.
But how do I make that box around all of the posts on the blog page?