2019-08-19 23:12:16 +02:00
|
|
|
/*
|
|
|
|
* Paper
|
|
|
|
* A simple, clean, flexible Hugo theme
|
|
|
|
* https://github.com/nanxiaobei/hugo-paper
|
|
|
|
* Designed by MR.LEE (https://mrlee.me/)
|
2019-10-16 21:02:52 +02:00
|
|
|
* Updated in 2019.10.17
|
2019-08-19 23:12:16 +02:00
|
|
|
*/
|
|
|
|
|
2019-10-14 19:31:07 +02:00
|
|
|
/* Theme
|
2019-08-19 23:12:16 +02:00
|
|
|
-------------------------------------------------- */
|
|
|
|
:root {
|
|
|
|
--gap: 24px;
|
|
|
|
--content-gap: 40px;
|
|
|
|
--nav-width: 1024px;
|
|
|
|
--main-width: 640px;
|
|
|
|
--header-height: 60px;
|
|
|
|
--footer-height: 60px;
|
|
|
|
--radius: 8px;
|
|
|
|
|
2019-10-14 19:31:07 +02:00
|
|
|
--theme: #fff;
|
2019-08-19 23:12:16 +02:00
|
|
|
--primary: rgba(0, 0, 0, 0.88);
|
|
|
|
--secondary: rgba(0, 0, 0, 0.56);
|
|
|
|
--tertiary: rgba(0, 0, 0, 0.16);
|
|
|
|
|
2019-08-22 21:50:12 +02:00
|
|
|
--hljs-bg: #1c1d21;
|
|
|
|
--code-bg: #f5f5f5;
|
2019-08-19 23:12:16 +02:00
|
|
|
--border: #eee;
|
|
|
|
}
|
2019-10-14 19:31:07 +02:00
|
|
|
.dark {
|
|
|
|
--theme: #3c3c3c;
|
|
|
|
--primary: rgba(255, 255, 255, 0.88);
|
|
|
|
--secondary: rgba(255, 255, 255, 0.56);
|
|
|
|
--tertiary: rgba(255, 255, 255, 0.16);
|
|
|
|
|
|
|
|
--hljs-bg: #2a2a2a;
|
|
|
|
--code-bg: #4f4f4f;
|
|
|
|
--border: #5f5f5f;
|
|
|
|
}
|
|
|
|
.list {
|
2019-10-16 21:02:52 +02:00
|
|
|
background: linear-gradient(135deg, #ddd, #f5f5f5, #d5d5d5);
|
2019-10-14 19:31:07 +02:00
|
|
|
}
|
|
|
|
.dark.list {
|
|
|
|
background: linear-gradient(135deg, #1c1c1c, #2a2a2a, #000);
|
|
|
|
}
|
2019-08-19 23:12:16 +02:00
|
|
|
/* Reset
|
|
|
|
-------------------------------------------------- */
|
|
|
|
*,
|
|
|
|
*::before,
|
|
|
|
*::after {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
html {
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
color: var(--primary);
|
2019-09-15 00:55:37 +02:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
|
|
'Open Sans', 'Helvetica Neue', sans-serif;
|
2019-08-19 23:12:16 +02:00
|
|
|
font-size: 18px;
|
|
|
|
line-height: 1.8;
|
2019-08-22 21:50:12 +02:00
|
|
|
word-break: break-word;
|
2019-10-14 19:31:07 +02:00
|
|
|
background: var(--theme);
|
2019-08-19 23:12:16 +02:00
|
|
|
}
|
|
|
|
article,
|
|
|
|
aside,
|
|
|
|
figcaption,
|
|
|
|
figure,
|
|
|
|
footer,
|
|
|
|
header,
|
|
|
|
hgroup,
|
|
|
|
main,
|
|
|
|
nav,
|
|
|
|
section {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
strong,
|
|
|
|
b {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: var(--primary);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
figure {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
table {
|
2019-08-22 21:50:12 +02:00
|
|
|
width: 100%;
|
2019-08-19 23:12:16 +02:00
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
|
|
|
button,
|
|
|
|
input,
|
|
|
|
textarea {
|
|
|
|
padding: 0;
|
|
|
|
font: inherit;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
}
|
|
|
|
button,
|
2019-09-15 00:55:37 +02:00
|
|
|
input[type='button'],
|
|
|
|
input[type='submit'] {
|
2019-08-19 23:12:16 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
input,
|
|
|
|
textarea {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
input:-webkit-autofill,
|
|
|
|
textarea:-webkit-autofill {
|
2019-10-14 19:31:07 +02:00
|
|
|
box-shadow: 0 0 0 50px var(--theme) inset;
|
2019-08-19 23:12:16 +02:00
|
|
|
}
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
/* Header
|
|
|
|
-------------------------------------------------- */
|
|
|
|
.nav {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
max-width: calc(var(--nav-width) + var(--gap) * 2);
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
.nav a {
|
|
|
|
display: block;
|
|
|
|
line-height: var(--header-height);
|
|
|
|
}
|
|
|
|
.logo,
|
|
|
|
.menu {
|
|
|
|
margin-left: var(--gap);
|
|
|
|
margin-right: var(--gap);
|
|
|
|
}
|
|
|
|
.logo a {
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
.menu {
|
|
|
|
display: flex;
|
|
|
|
list-style: none;
|
2019-08-22 21:50:12 +02:00
|
|
|
word-break: keep-all;
|
2019-08-19 23:12:16 +02:00
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
.menu li + li {
|
|
|
|
margin-left: var(--gap);
|
|
|
|
}
|
2019-08-21 04:59:34 +02:00
|
|
|
.menu a {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
2019-08-19 23:12:16 +02:00
|
|
|
/* Main
|
|
|
|
-------------------------------------------------- */
|
|
|
|
.main {
|
|
|
|
position: relative;
|
|
|
|
min-height: calc(100vh - var(--header-height) - var(--footer-height));
|
|
|
|
max-width: calc(var(--main-width) + var(--gap) * 2);
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
padding: var(--gap);
|
|
|
|
}
|
|
|
|
.page-header {
|
2019-08-21 04:59:34 +02:00
|
|
|
margin-bottom: 24px;
|
2019-08-19 23:12:16 +02:00
|
|
|
}
|
|
|
|
.page-header h1 {
|
2019-08-21 10:17:00 +02:00
|
|
|
font-size: 40px;
|
2019-08-19 23:12:16 +02:00
|
|
|
}
|
|
|
|
.pagination {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.pagination a {
|
2019-10-14 19:31:07 +02:00
|
|
|
color: var(--theme);
|
2019-08-19 23:12:16 +02:00
|
|
|
font-size: 13px;
|
|
|
|
line-height: 36px;
|
|
|
|
background: var(--primary);
|
|
|
|
border-radius: calc(36px / 2);
|
|
|
|
}
|
|
|
|
.pagination .prev {
|
|
|
|
padding-left: 16px;
|
|
|
|
padding-right: 18px;
|
|
|
|
}
|
|
|
|
.pagination .next {
|
|
|
|
margin-left: auto;
|
|
|
|
padding-left: 18px;
|
|
|
|
padding-right: 16px;
|
|
|
|
}
|
|
|
|
/* Post entry
|
|
|
|
-------------------------------------------------- */
|
|
|
|
.first-entry {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
height: 320px;
|
|
|
|
margin-bottom: var(--header-height);
|
2019-08-22 21:50:12 +02:00
|
|
|
}
|
|
|
|
.first-entry .entry-header {
|
2019-08-19 23:12:16 +02:00
|
|
|
overflow: hidden;
|
2019-08-22 21:50:12 +02:00
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 3;
|
2019-08-19 23:12:16 +02:00
|
|
|
}
|
|
|
|
.first-entry .entry-header h2 {
|
|
|
|
font-size: 40px;
|
|
|
|
}
|
|
|
|
.first-entry .entry-content {
|
|
|
|
margin-top: 14px;
|
|
|
|
margin-bottom: 14px;
|
|
|
|
font-size: 16px;
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
}
|
|
|
|
.first-entry .entry-footer {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.post-entry {
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: var(--gap);
|
|
|
|
padding: var(--gap);
|
2019-10-14 19:31:07 +02:00
|
|
|
background: var(--theme);
|
2019-08-19 23:12:16 +02:00
|
|
|
border-radius: var(--radius);
|
2019-08-22 21:50:12 +02:00
|
|
|
transition: transform 0.1s;
|
2019-08-19 23:12:16 +02:00
|
|
|
}
|
|
|
|
.post-entry:active {
|
|
|
|
transform: scale(0.96);
|
|
|
|
}
|
2020-03-09 16:57:05 +01:00
|
|
|
.tag-entry .entry-content,
|
|
|
|
.tag-entry .entry-footer {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-08-19 23:12:16 +02:00
|
|
|
.entry-header h2 {
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
.entry-content {
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
color: var(--secondary);
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.6;
|
|
|
|
overflow: hidden;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
}
|
|
|
|
.entry-footer {
|
|
|
|
color: var(--secondary);
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
.entry-link {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
/* Post single
|
|
|
|
-------------------------------------------------- */
|
|
|
|
.post-header {
|
|
|
|
margin-top: 24px;
|
2019-08-21 04:59:34 +02:00
|
|
|
margin-bottom: var(--content-gap);
|
2019-08-19 23:12:16 +02:00
|
|
|
}
|
|
|
|
.post-title {
|
2019-08-21 04:59:34 +02:00
|
|
|
margin-bottom: 2px;
|
2019-08-19 23:12:16 +02:00
|
|
|
font-size: 40px;
|
2019-08-21 04:59:34 +02:00
|
|
|
transform: translateX(-2px);
|
2019-08-19 23:12:16 +02:00
|
|
|
}
|
|
|
|
.post-meta {
|
|
|
|
color: var(--secondary);
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.post-content h1 {
|
|
|
|
margin-top: 40px;
|
|
|
|
margin-bottom: 32px;
|
|
|
|
}
|
|
|
|
.post-content h2 {
|
|
|
|
margin-top: 32px;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
.post-content h3,
|
|
|
|
.post-content h4,
|
|
|
|
.post-content h5,
|
|
|
|
.post-content h6 {
|
|
|
|
margin-top: 24px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
.post-content h1 {
|
|
|
|
font-size: 40px;
|
|
|
|
}
|
|
|
|
.post-content h2 {
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
.post-content h3 {
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
.post-content h4 {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
.post-content h5 {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.post-content h6 {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
.post-content a {
|
|
|
|
box-shadow: 0 1px 0 var(--primary);
|
|
|
|
}
|
|
|
|
.post-content a code {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: 0 -1px 0 var(--primary) inset;
|
|
|
|
}
|
|
|
|
.post-content del {
|
|
|
|
text-decoration: none;
|
2019-09-15 00:55:37 +02:00
|
|
|
background: linear-gradient(to right, var(--primary) 100%, transparent 0) 0 50% / 1px 1px repeat-x;
|
2019-08-19 23:12:16 +02:00
|
|
|
}
|
|
|
|
.post-content p,
|
|
|
|
.post-content ul,
|
|
|
|
.post-content ol,
|
|
|
|
.post-content dl {
|
|
|
|
margin-bottom: var(--content-gap);
|
|
|
|
}
|
|
|
|
.post-content ul,
|
|
|
|
.post-content ol {
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
.post-content li {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
.post-content li p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.post-content dl {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.post-content dt {
|
|
|
|
width: 25%;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
.post-content dd {
|
|
|
|
width: 75%;
|
|
|
|
margin-left: 0;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
.post-content dt ~ dt,
|
|
|
|
.post-content dd ~ dd {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.post-content table {
|
|
|
|
margin-bottom: 32px;
|
|
|
|
}
|
2019-08-22 21:50:12 +02:00
|
|
|
.post-content table th,
|
|
|
|
.post-content table:not(.highlighttable) td {
|
2019-08-19 23:12:16 +02:00
|
|
|
min-width: 80px;
|
|
|
|
padding: 12px 8px;
|
|
|
|
line-height: 1.5;
|
|
|
|
border-bottom: 1px solid var(--border);
|
|
|
|
}
|
2019-08-22 21:50:12 +02:00
|
|
|
.post-content table th {
|
2019-08-19 23:12:16 +02:00
|
|
|
font-size: 14px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2019-08-22 21:50:12 +02:00
|
|
|
.post-content table:not(.highlighttable) td code:only-child {
|
2019-08-19 23:12:16 +02:00
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2019-08-22 21:50:12 +02:00
|
|
|
.post-content .highlight,
|
|
|
|
.post-content pre {
|
|
|
|
margin-left: calc(var(--gap) * -1);
|
|
|
|
margin-right: calc(var(--gap) * -1);
|
|
|
|
margin-bottom: 32px;
|
|
|
|
background: var(--hljs-bg) !important;
|
2019-08-19 23:12:16 +02:00
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
2019-09-13 15:54:47 +02:00
|
|
|
.post-content ul pre {
|
|
|
|
margin-left: calc(var(--gap) * -2);
|
|
|
|
}
|
2019-08-22 21:50:12 +02:00
|
|
|
.post-content .highlight pre {
|
2019-08-19 23:12:16 +02:00
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
2019-08-22 21:50:12 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
/* table */
|
|
|
|
.post-content .highlighttable {
|
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
.post-content .highlighttable td:first-child {
|
|
|
|
width: 40px;
|
|
|
|
}
|
|
|
|
.post-content .highlighttable td .linenodiv {
|
|
|
|
padding-right: 0 !important;
|
|
|
|
}
|
|
|
|
.post-content .highlighttable td .linenodiv pre,
|
|
|
|
.post-content .highlighttable td .highlight {
|
|
|
|
margin-bottom: 0;
|
2019-08-19 23:12:16 +02:00
|
|
|
}
|
2019-08-22 21:50:12 +02:00
|
|
|
.post-content .highlighttable td .highlight pre code::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
/* inline */
|
|
|
|
.post-content .highlight span {
|
|
|
|
background: transparent !important;
|
|
|
|
}
|
|
|
|
|
2019-08-19 23:12:16 +02:00
|
|
|
.post-content code {
|
|
|
|
margin-left: 4px;
|
|
|
|
margin-right: 4px;
|
|
|
|
padding: 4px 6px;
|
2019-09-15 00:55:37 +02:00
|
|
|
font-family: Menlo, Monaco, 'Courier New', Courier, monospace;
|
2019-08-19 23:12:16 +02:00
|
|
|
font-size: 0.78em;
|
|
|
|
line-height: 1.5;
|
2019-08-22 21:50:12 +02:00
|
|
|
background: var(--code-bg);
|
2019-08-19 23:12:16 +02:00
|
|
|
border-radius: 2px;
|
|
|
|
}
|
2019-08-22 21:50:12 +02:00
|
|
|
.post-content pre code {
|
|
|
|
display: block;
|
2019-08-19 23:12:16 +02:00
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
2019-08-22 21:50:12 +02:00
|
|
|
padding: var(--gap);
|
|
|
|
color: rgba(255, 255, 255, 0.8);
|
|
|
|
background: transparent;
|
|
|
|
border-radius: 0;
|
2019-08-19 23:12:16 +02:00
|
|
|
}
|
|
|
|
.post-content blockquote {
|
|
|
|
margin: 0 0 0 calc(var(--gap) * -1);
|
|
|
|
padding: 0 0 0 21px;
|
|
|
|
border-left: 3px solid var(--primary);
|
|
|
|
}
|
|
|
|
.post-content hr {
|
|
|
|
height: 1px;
|
2019-08-21 04:59:34 +02:00
|
|
|
margin-top: 56px;
|
|
|
|
margin-bottom: 56px;
|
2019-08-19 23:12:16 +02:00
|
|
|
background: var(--tertiary);
|
|
|
|
border-top: 0;
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
.post-content iframe {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
.post-footer {
|
|
|
|
margin-top: 56px;
|
|
|
|
}
|
|
|
|
.post-tags li {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.post-tags li + li {
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
.post-tags a {
|
|
|
|
display: block;
|
|
|
|
padding-left: 14px;
|
|
|
|
padding-right: 14px;
|
|
|
|
color: var(--secondary);
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 34px;
|
2019-08-22 21:50:12 +02:00
|
|
|
background: var(--code-bg);
|
2019-08-19 23:12:16 +02:00
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
.post-tags a:hover {
|
|
|
|
background: var(--border);
|
|
|
|
}
|
|
|
|
/* Footer
|
|
|
|
-------------------------------------------------- */
|
|
|
|
.footer {
|
|
|
|
max-width: calc(var(--main-width) + var(--gap) * 2);
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
padding: calc((var(--footer-height) - var(--gap)) / 2) var(--gap);
|
|
|
|
color: var(--secondary);
|
|
|
|
font-size: 12px;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
.footer span {
|
|
|
|
margin-left: 1px;
|
|
|
|
margin-right: 1px;
|
|
|
|
}
|
|
|
|
.footer a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
.footer a:hover {
|
|
|
|
color: var(--primary);
|
|
|
|
border-bottom: 1px solid var(--primary);
|
|
|
|
}
|
|
|
|
/* 404
|
|
|
|
-------------------------------------------------- */
|
|
|
|
.not-found {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 80%;
|
|
|
|
font-size: 160px;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|