523 lines
8.8 KiB
CSS
523 lines
8.8 KiB
CSS
/*
|
|
* Paper v3.0
|
|
* A simple, clean, flexible Hugo theme.
|
|
* Designed by MR.LEE (https://mrlee.me/)
|
|
* Updated in 2019.4.1
|
|
*/
|
|
|
|
/* Reset
|
|
-------------------------------------------------- */
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
html {
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
color: rgba(0, 0, 0, 0.9);
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
'Open Sans', 'Helvetica Neue', sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
article,
|
|
aside,
|
|
figcaption,
|
|
figure,
|
|
footer,
|
|
header,
|
|
hgroup,
|
|
main,
|
|
nav,
|
|
section {
|
|
display: block;
|
|
}
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
p {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
strong,
|
|
b {
|
|
font-weight: 500;
|
|
}
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
a {
|
|
color: rgba(0, 0, 0, 0.9);
|
|
text-decoration: none;
|
|
}
|
|
figure {
|
|
margin: 0;
|
|
}
|
|
table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
}
|
|
button,
|
|
input,
|
|
textarea {
|
|
padding: 0;
|
|
font: inherit;
|
|
background: transparent;
|
|
border: 0;
|
|
-webkit-appearance: none;
|
|
}
|
|
button,
|
|
input[type='button'],
|
|
input[type='submit'] {
|
|
cursor: pointer;
|
|
}
|
|
input,
|
|
textarea {
|
|
padding: 0;
|
|
border: 0;
|
|
outline: 0;
|
|
}
|
|
input:-webkit-autofill,
|
|
textarea:-webkit-autofill {
|
|
box-shadow: 0 0 0 50px #fff inset;
|
|
}
|
|
img {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
/* Body
|
|
-------------------------------------------------- */
|
|
.list {
|
|
background: #f5f5f5;
|
|
}
|
|
/* Header
|
|
-------------------------------------------------- */
|
|
.header {
|
|
height: 65px;
|
|
line-height: 65px;
|
|
}
|
|
.header .wrap {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
max-width: 1024px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
.logo a,
|
|
.menu-toggle {
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
}
|
|
.logo a {
|
|
display: block;
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
}
|
|
.menu-toggle {
|
|
position: relative;
|
|
width: 68px;
|
|
outline: 0;
|
|
}
|
|
.menu-toggle::before,
|
|
.menu-toggle::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 20px;
|
|
height: 2px;
|
|
background: #000;
|
|
transition: transform 0.2s;
|
|
}
|
|
.menu-toggle::before {
|
|
transform: translate3d(-50%, -5px, 0);
|
|
}
|
|
.menu-toggle::after {
|
|
transform: translate3d(-50%, 5px, 0);
|
|
}
|
|
|
|
.no-scroll .header {
|
|
position: fixed;
|
|
z-index: 10;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: rgba(0, 0, 0, 0.9);
|
|
}
|
|
.no-scroll .logo a {
|
|
color: #888;
|
|
}
|
|
.no-scroll .menu-toggle::before,
|
|
.no-scroll .menu-toggle::after {
|
|
background: #888;
|
|
}
|
|
.no-scroll .menu-toggle::before {
|
|
transform: translate3d(-50%, -1px, 0) rotateZ(135deg);
|
|
}
|
|
.no-scroll .menu-toggle::after {
|
|
transform: translate3d(-50%, -1px, 0) rotateZ(-135deg);
|
|
}
|
|
.no-scroll .menu {
|
|
display: flex;
|
|
}
|
|
.no-scroll .main,
|
|
.no-scroll .footer {
|
|
filter: blur(12px);
|
|
}
|
|
|
|
.menu {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 10;
|
|
top: 65px;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
padding-bottom: 130px;
|
|
text-align: center;
|
|
background: rgba(0, 0, 0, 0.9);
|
|
}
|
|
.menu li + li {
|
|
margin-top: 12px;
|
|
}
|
|
.menu a {
|
|
color: #fff;
|
|
font-size: 48px;
|
|
letter-spacing: 1px;
|
|
}
|
|
/* Main
|
|
-------------------------------------------------- */
|
|
.main {
|
|
position: relative;
|
|
min-height: calc(100vh - 65px - 60px);
|
|
max-width: 640px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 24px;
|
|
}
|
|
.page-header {
|
|
margin-bottom: 36px;
|
|
}
|
|
.page-header .tagged {
|
|
margin-bottom: 2px;
|
|
color: rgba(0, 0, 0, 0.6);
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1.5px;
|
|
transform: scale(0.9);
|
|
transform-origin: left center;
|
|
}
|
|
.page-header h1 {
|
|
font-size: 36px;
|
|
font-weight: 400;
|
|
}
|
|
.pagination {
|
|
display: flex;
|
|
}
|
|
.pagination a {
|
|
height: 34px;
|
|
color: #fff;
|
|
font-size: 13px;
|
|
line-height: 33px;
|
|
background: rgba(0, 0, 0, 0.9);
|
|
border-radius: 36px;
|
|
}
|
|
.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: 24px;
|
|
padding-bottom: 40px;
|
|
}
|
|
.first-entry .entry-header h2 {
|
|
font-size: 40px;
|
|
}
|
|
.first-entry .entry-content {
|
|
margin-top: 12px;
|
|
margin-bottom: 20px;
|
|
font-size: 16px;
|
|
}
|
|
.first-entry .entry-footer {
|
|
font-size: 14px;
|
|
}
|
|
.post-entry {
|
|
position: relative;
|
|
margin-bottom: 24px;
|
|
padding: 24px;
|
|
background: #fff;
|
|
transition: box-shadow 0.2s;
|
|
}
|
|
.post-entry:hover {
|
|
box-shadow: 0 10px 80px rgba(0, 0, 0, 0.15);
|
|
}
|
|
.post-entry:active {
|
|
transform: scale(0.98);
|
|
transition: transform 0.1s;
|
|
}
|
|
.entry-header h2 {
|
|
font-size: 24px;
|
|
}
|
|
.entry-content {
|
|
margin-top: 8px;
|
|
margin-bottom: 14px;
|
|
color: rgba(0, 0, 0, 0.6);
|
|
font-size: 14px;
|
|
line-height: 1.7;
|
|
}
|
|
.entry-footer {
|
|
font-size: 12px;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
.entry-link {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
/* Post single
|
|
-------------------------------------------------- */
|
|
.post-header {
|
|
margin-top: 12px;
|
|
margin-bottom: 36px;
|
|
}
|
|
.post-title {
|
|
margin-bottom: 8px;
|
|
font-size: 36px;
|
|
transform: translateX(-1px);
|
|
}
|
|
.post-meta {
|
|
color: rgba(0, 0, 0, 0.6);
|
|
font-size: 13px;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
.post-content {
|
|
font-size: 17px;
|
|
line-height: 1.9;
|
|
}
|
|
.post-content h1 {
|
|
margin-top: 48px;
|
|
margin-bottom: 36px;
|
|
}
|
|
.post-content h2 {
|
|
margin-top: 36px;
|
|
margin-bottom: 24px;
|
|
}
|
|
.post-content h3,
|
|
.post-content h4,
|
|
.post-content h5,
|
|
.post-content h6 {
|
|
margin-top: 24px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.post-content h1 {
|
|
font-size: 36px;
|
|
}
|
|
.post-content h2 {
|
|
font-size: 28px;
|
|
}
|
|
.post-content h3 {
|
|
font-size: 22px;
|
|
}
|
|
.post-content h4 {
|
|
font-size: 18px;
|
|
}
|
|
.post-content h5 {
|
|
font-size: 16px;
|
|
}
|
|
.post-content h6 {
|
|
font-size: 14px;
|
|
}
|
|
.post-content a {
|
|
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.9);
|
|
}
|
|
.post-content del {
|
|
text-decoration: none;
|
|
background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 100%, transparent 0) 0 50% / 1px 1px
|
|
repeat-x;
|
|
}
|
|
.post-content p,
|
|
.post-content ul,
|
|
.post-content ol,
|
|
.post-content dl {
|
|
margin-bottom: 24px;
|
|
}
|
|
.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 pre,
|
|
.post-content table {
|
|
margin-top: 32px;
|
|
margin-bottom: 32px;
|
|
}
|
|
.post-content table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
}
|
|
.post-content th,
|
|
.post-content td {
|
|
padding: 10px;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
.post-content th {
|
|
font-size: 14px;
|
|
text-align: left;
|
|
}
|
|
.post-content code {
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
padding: 4px;
|
|
font-family: Menlo, Monaco, 'Courier New', Courier, monospace;
|
|
font-size: 0.8em;
|
|
white-space: pre-wrap;
|
|
background: rgba(0, 0, 0, 0.04);
|
|
}
|
|
.post-content pre {
|
|
background: transparent !important;
|
|
}
|
|
.post-content pre code {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
padding: 20px 22px;
|
|
line-height: 1.6;
|
|
border-radius: 2px;
|
|
}
|
|
.post-content blockquote {
|
|
margin: 0 0 0 -24px;
|
|
padding: 0 0 0 21px;
|
|
font-style: italic;
|
|
border-left: 3px solid rgba(0, 0, 0, 0.9);
|
|
}
|
|
.post-content hr {
|
|
height: 0;
|
|
margin-top: 72px;
|
|
margin-bottom: 72px;
|
|
text-align: center;
|
|
border: 0;
|
|
overflow: visible;
|
|
}
|
|
.post-content hr::before {
|
|
content: '...';
|
|
display: inline-block;
|
|
color: rgba(0, 0, 0, 0.9);
|
|
font-size: 32px;
|
|
letter-spacing: 20px;
|
|
transform: translate(10px, -36px);
|
|
}
|
|
.post-content iframe {
|
|
max-width: 100%;
|
|
}
|
|
.post-footer {
|
|
margin-top: 48px;
|
|
}
|
|
.post-tags li {
|
|
display: inline-block;
|
|
}
|
|
.post-tags li + li {
|
|
margin-left: 3px;
|
|
}
|
|
.post-tags a {
|
|
display: block;
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
color: rgba(0, 0, 0, 0.6);
|
|
font-size: 14px;
|
|
line-height: 32px;
|
|
background: #f5f5f5;
|
|
border-radius: 2px;
|
|
}
|
|
.post-tags a:hover {
|
|
background: #eee;
|
|
}
|
|
/* Footer
|
|
-------------------------------------------------- */
|
|
.footer {
|
|
max-width: 640px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
color: rgba(0, 0, 0, 0.6);
|
|
font-size: 12px;
|
|
text-align: center;
|
|
line-height: 60px;
|
|
}
|
|
.footer span {
|
|
margin-left: 1px;
|
|
margin-right: 1px;
|
|
}
|
|
.footer a {
|
|
color: inherit;
|
|
}
|
|
.footer a:hover {
|
|
color: rgba(0, 0, 0, 0.9);
|
|
}
|
|
/* 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;
|
|
}
|
|
/* InstantClick
|
|
-------------------------------------------------- */
|
|
#instantclick-bar {
|
|
background: linear-gradient(120deg, #7492e6, #8f72c3, #9c66b3, #ba4d95, #ba4d95, #dc3c75);
|
|
}
|