/* Place a custom css file in your own project to use this. */
:root {
  --gap: 24px;
  --content-gap: 40px;
  --nav-width: 1024px;
  --main-width: 720px;
  --header-height: 60px;
  --footer-height: 60px;
  --radius: 8px;

  --theme: #fff;
  --entry: #fff;
  --primary: rgba(0, 0, 0, 0.88);
  --secondary: rgba(0, 0, 0, 0.56);
  --tertiary: rgba(0, 0, 0, 0.16);
  --content: rgba(0, 0, 0, 0.88);

  --hljs-bg: #1c1d21;
  --code-bg: #f5f5f5;
  --border: #eee;
}
.dark {
  --theme: #1d1e20;
  --entry: #2e2e33;
  --primary: rgba(255, 255, 255, 0.84);
  --secondary: rgba(255, 255, 255, 0.56);
  --tertiary: rgba(255, 255, 255, 0.16);
  --content: rgba(255, 255, 255, 0.64);

  --hljs-bg: #2e2e33;
  --code-bg: #37383e;
  --border: #5b5d67;
}
.post-content pre {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 32px;
  /* background: var(--hljs-bg) !important; */
  border-radius: var(--radius);
}
.post-content .highlight,
.post-content pre {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 32px;
  /* background: var(--hljs-bg) !important; */
  border-radius: var(--radius);
}
.post-content blockquote {
  margin: 0 0 0 0;
  padding: 0 0 0 21px;
  border-left: 3px solid var(--primary);
}
.post-meta {
  color: var(--secondary);
  font-size: 14px;
  margin-top: 10px;
}
.post-footer {
  margin-top: 56px;
  margin-bottom: 56px;
}
article hr {
  /* background-color: #fff; */
  /* border-top: 2px dashed #8c8b8b; */
  /* border-top: 3px double #8c8b8b; */
  border-top: 1px dotted #8c8b8b;
}
.page-header {
  margin-bottom: 80px;
}
.page-header h1 {
  font-size: 40px;
}
