You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
1.3 KiB
94 lines
1.3 KiB
3 years ago
|
.blog__content {
|
||
|
section {
|
||
|
margin-bottom: 1.765rem;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.blog__featured-post {
|
||
|
margin: 0 0 1.765rem;
|
||
|
img {
|
||
|
margin: 0 0 1rem;
|
||
|
box-shadow: 1px 1px $gray-2;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.blog__image {
|
||
|
border: 1px solid $gray-2;
|
||
|
box-shadow: 1px 1px $gray-2;
|
||
|
}
|
||
|
|
||
|
.blog__title {
|
||
|
margin-top: 1.765rem;
|
||
|
letter-spacing: 1px;
|
||
|
font-size: $blog__title-font-size;
|
||
|
}
|
||
|
|
||
|
%subtitle {
|
||
|
font-style: $blog__subtitle-font-style;
|
||
|
color: $blog__subtitle-color;
|
||
|
display: block;
|
||
|
margin-top: 0.5rem;
|
||
|
margin: 0 0 1rem;
|
||
|
}
|
||
|
|
||
|
.blog__subtitle-big {
|
||
|
@extend %subtitle;
|
||
|
font-size: $blog__subtitle-font-size-big;
|
||
|
}
|
||
|
|
||
|
.blog__subtitle-small {
|
||
|
@extend %subtitle;
|
||
|
font-size: $blog__subtitle-font-size-small;
|
||
|
}
|
||
|
|
||
|
.blog__featured-image {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.blog__summary {
|
||
|
margin-bottom: 1.765rem;
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.divider {
|
||
|
margin-bottom: 3.5rem;
|
||
|
}
|
||
|
.row-space {
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
|
||
|
// only needs some pieces from Bootstrap
|
||
|
%col_extend {
|
||
|
min-height: 1px;
|
||
|
padding-left: 15px;
|
||
|
padding-right: 15px;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.row {
|
||
|
margin-left: -15px;
|
||
|
margin-right: -15px;
|
||
|
}
|
||
|
.col-xs-12 {
|
||
|
width: 100%;
|
||
|
@extend %col_extend;
|
||
|
}
|
||
|
.col-sm-4 {
|
||
|
@extend %col_extend;
|
||
|
}
|
||
|
.col-md-4 {
|
||
|
@extend %col_extend;
|
||
|
}
|
||
|
.col-sm-8 {
|
||
|
@extend %col_extend;
|
||
|
}
|
||
|
.col-md-8 {
|
||
|
@extend %col_extend;
|
||
|
}
|
||
|
|
||
|
.img-responsive {
|
||
|
display: block;
|
||
|
max-width: 100%;
|
||
|
height: auto;
|
||
|
}
|