blob: c8abfde3c1d170d6d6b6858cc20e6724f9e74354 [file] [log] [blame]
<template>
<div>
<navbar />
<div class="page-main">
<div class="page-content single-page container-fluid row flex-xl-nowrap">
<sidebar />
<div class="bd-content col-sm-7 pl-sm-2 col-12">
<div class="post-content content">
<nuxt />
</div>
</div>
</div>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.1/styles/github.min.css">
</div>
</div>
</template>
<script lang="ts">
import Sidebar from '~/components/partials/Sidebar.vue'
import Navbar from '~/components/partials/Navbar.vue'
export default {
components: {
Sidebar,
Navbar
},
mounted: function () {
// This help scroll to the hash
const hash = location.hash;
location.hash = '';
location.hash = hash;
},
computed: {
// posts(): string {
// return this.$store.state.posts.zh;
// }
},
methods: {
}
}
</script>
<style lang="scss">
.handbook-content {
margin-top: 50px;
}
.post-content {
margin-bottom: 80px;
}
#toc {
position: fixed;
left: 77%;
width: 21%;
top: 80px;
background-color: transparent;
border-left: 1px solid #e3e3e3;
padding: 10px;
color: #888;
height: auto;
@media (max-width: 768px) {
& {
position: relative;
width: 100%;
left: 0;
top: 0;
padding: 10px 20px;
margin: 0 0 20px 0;
}
}
ol {
padding-left: 30px;
margin-bottom: 0;
ol {
padding-left: 10px;
margin-bottom: 10px;
li {
list-style: lower-alpha;
}
ol {
li {
list-style: circle;
}
}
}
}
a {
color: #888;
transition: 0.5s;
&:hover {
color: #555;
}
}
}
.post-inner {
margin: 20px 0 80px 0;
h1 {
margin-bottom: 20px;
font-size: 36px;
color: #222;
}
h2 {
margin: 70px 0 20px 0;
padding-bottom: 10px;
font-size: 26px;
color: #666;
border-bottom: 1px solid #ddd;
}
h1+h2 {
margin-top: 30px;
}
h3 {
margin: 30px 0 20px 0;
font-size: 22px;
color: #444;
}
h4 {
margin: 25px 0 20px 0;
font-size: 18px;
color: #222;
}
h5 {
font-size: 16px;
color: #222;
}
h6 {
font-size: 14px;
color: #222;
}
.permalink {
display: none;
}
h1, h2, h3, h4, h5, h6 {
&:hover .permalink {
display: inline-block;
}
}
blockquote {
margin: 15px 0;
padding: 15px;
border-left: 4px solid #ccc;
background-color: #f3f3f3;
}
blockquote :last-child {
margin-bottom: 0;
}
pre code {
padding: 10px 15px !important;
border-radius: 5px;
}
iframe {
border: 1px solid #ddd;
margin: 10px 0;
}
p {
line-height: 1.8em;
}
}
.post-contributors {
padding-top: 10px;
border-top: 1px solid #ddd;
.post-contributor {
display: inline-block;
margin-right: 15px;
border: 1px solid #eee;
border-radius: 5px;
color: #777;
&:hover {
text-decoration: none;
}
img {
width: 30px;
height: 30px;
border-radius: 5px;
display: inline-block;
}
span {
display: inline-block;
margin: 0 8px 0 5px;
position: relative;
top: 2px;
}
}
}
.post-edit {
margin: 10px 0;
}
</style>