Files
MyX/public/assets/sass/framework/_blog.scss
2024-08-11 16:14:28 +02:00

30 lines
691 B
SCSS

.blog-post{
.title{
padding: 0px 16px;
margin: 0 0 10px 0;
}
.post-header{
font-size: $fontSizeCaption;
padding: 10px 0;
margin: 16px 16px;
color: $colorLight;
display: flex;
align-items: center;
justify-content: space-between;
border-top: 1px solid $colorLine;
border-bottom: 1px solid $colorLine;
a{
color: $colorHeading;
font-weight: $bold;
}
}
.post-body{
padding: 0 16px;
img{
width: calc(100% + 32px);
height: auto;
margin: 0px -16px;
margin-bottom: 16px;
}
}
}