more mobile friendly blogposts
This commit is contained in:
parent
a98dbf4713
commit
138c2823e9
2 changed files with 18 additions and 11 deletions
|
@ -2,24 +2,31 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
#table-of-contents {
|
#table-of-contents {
|
||||||
@include from($tablet) {
|
@include tablet {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 100%;
|
left: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include until($tablet) {
|
@include mobile {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#markdown-toc {
|
#markdown-toc {
|
||||||
@extend .menu-list;
|
@extend .menu-list;
|
||||||
|
|
||||||
&, ul {
|
&, ul {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-text {
|
||||||
|
// Larger text when on tablet
|
||||||
|
@include tablet {
|
||||||
|
font-size: $size-medium;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$sel: '';
|
$sel: '';
|
||||||
|
@ -57,7 +64,7 @@ dl {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
@include from($tablet) {
|
@include tablet {
|
||||||
font-size: 4rem;
|
font-size: 4rem;
|
||||||
}
|
}
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<div class="content is-medium" markdown="1">
|
<div class="main-text content" markdown="1">
|
||||||
<%= yield %>
|
<%= yield %>
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
|
|
Loading…
Reference in a new issue