Upgrade to Gatsby v2

This commit is contained in:
alxshelepenok
2018-11-09 20:08:48 +03:00
parent e83dfc6dff
commit 8b92891329
204 changed files with 18708 additions and 3904 deletions

View File

@@ -0,0 +1,104 @@
@import '../../../assets/scss/variables';
@import '../../../assets/scss/mixins';
.content {
max-width: $layout-post-single-width;
padding: 0 15px;
margin: 0 auto;
&__title {
font-size: $typographic-base-font-size * 2;
max-width: $layout-post-width;
margin-left: auto;
margin-right: auto;
font-weight: 600;
text-align: center;
@include line-height(1.65);
@include margin-top(1);
@include margin-bottom(0)
}
&__body {
& figure {
@include margin-bottom(1);
& blockquote {
font-style: italic;
text-align: center;
margin-top: 0;
@include padding(1, 0);
& p {
max-width: $layout-post-width;
font-size: $typographic-base-font-size * 1.6817;
margin-top: 0;
@include margin-bottom(1);
@include line-height(1.5)
}
}
}
& a {
text-decoration: underline
}
& .gatsby-highlight {
max-width: $layout-post-width;
margin-left: 15px;
margin-right: 15px;
@include margin-bottom(1)
}
& *:not(div) {
max-width: $layout-post-width;
margin-left: auto;
margin-right: auto
}
}
}
@include breakpoint-sm {
.content {
&__body {
& .gatsby-highlight {
margin-left: auto;
margin-right: auto
}
}
}
}
@include breakpoint-md {
.content {
padding: 0;
&__title {
font-size: $typographic-base-font-size * 3;
@include line-height(2.25);
@include margin-top(2.25);
@include margin-bottom(1.5)
}
&__body {
font-size: $typographic-base-font-size * 1.125;
@include line-height(1.125);
@include margin-bottom(1.125);
& p {
font-size: $typographic-base-font-size * 1.125;
@include line-height(1.125);
@include margin-bottom(1.125)
}
}
}
}