hugo-PaperMod/static/css/style.css

496 lines
8.4 KiB
CSS
Raw Normal View History

2018-01-08 17:28:39 +01:00
/*
2019-03-31 14:32:06 +02:00
* Paper v3.0
* A simple, clean, flexible Hugo theme.
2018-01-08 17:28:39 +01:00
* Designed by 21beats (http://21beats.com)
2019-03-31 14:32:06 +02:00
* Updated in 2019.3.31
2018-01-08 17:28:39 +01:00
*/
/* Reset
2019-03-31 14:32:06 +02:00
------------------------------------------------------------ */
2018-01-08 17:28:39 +01:00
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
-webkit-tap-highlight-color: transparent;
}
body {
margin: 0;
2019-03-31 14:32:06 +02:00
color: rgba(0, 0, 0, 0.9);
font-family: 'SF Pro Display', 'Microsoft Yahei', 'Helvetica Neue', 'Helvetica', 'Arial',
sans-serif;
font-size: 16px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
display: block;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
h1,
h2,
h3,
h4,
h5,
h6,
2018-01-08 17:28:39 +01:00
p {
margin-top: 0;
margin-bottom: 0;
}
2019-03-31 14:32:06 +02:00
strong,
b {
font-weight: 500;
}
2018-01-08 17:28:39 +01:00
ul {
2019-03-31 14:32:06 +02:00
list-style: none;
2018-01-08 17:28:39 +01:00
margin: 0;
padding: 0;
}
a {
2019-03-31 14:32:06 +02:00
color: rgba(0, 0, 0, 0.9);
2018-01-08 17:28:39 +01:00
text-decoration: none;
}
figure {
margin: 0;
}
2019-03-31 14:32:06 +02:00
table {
border-collapse: collapse;
border-spacing: 0;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
button,
input,
textarea {
2018-01-08 17:28:39 +01:00
padding: 0;
font: inherit;
background: transparent;
border: 0;
2019-03-31 14:32:06 +02:00
-webkit-appearance: none;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
button,
input[type='button'],
input[type='submit'] {
2018-01-08 17:28:39 +01:00
cursor: pointer;
}
2019-03-31 14:32:06 +02:00
input,
textarea {
padding: 0;
border: 0;
outline: 0;
}
input:-webkit-autofill,
textarea:-webkit-autofill {
box-shadow: 0 0 0 50px #fff inset;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
img {
display: block;
max-width: 100%;
2018-07-05 20:45:58 +02:00
}
2018-01-08 17:28:39 +01:00
/* Header
2019-03-31 14:32:06 +02:00
------------------------------------------------------------ */
2018-01-08 17:28:39 +01:00
.header {
height: 65px;
line-height: 65px;
2018-07-05 20:45:58 +02:00
}
2019-03-31 14:32:06 +02:00
.header .wrap {
display: flex;
justify-content: space-between;
max-width: 1024px;
margin-left: auto;
margin-right: auto;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.logo a,
.menu-toggle {
padding-left: 24px;
padding-right: 24px;
}
.logo a {
2018-01-08 17:28:39 +01:00
display: block;
2018-07-05 20:45:58 +02:00
font-size: 24px;
2018-01-08 17:28:39 +01:00
font-weight: 700;
}
.menu-toggle {
2019-03-31 14:32:06 +02:00
position: relative;
width: 68px;
outline: 0;
2018-01-08 17:28:39 +01:00
}
2018-07-05 20:45:58 +02:00
.menu-toggle::before,
.menu-toggle::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
2018-08-16 04:59:04 +02:00
width: 20px;
2018-07-05 20:45:58 +02:00
height: 2px;
background: #000;
2019-03-31 14:32:06 +02:00
transition: transform 0.2s;
2018-01-08 17:28:39 +01:00
}
2018-07-05 20:45:58 +02:00
.menu-toggle::before {
transform: translate3d(-50%, -5px, 0);
2018-01-08 17:28:39 +01:00
}
2018-07-05 20:45:58 +02:00
.menu-toggle::after {
2018-08-15 19:22:33 +02:00
transform: translate3d(-50%, 5px, 0);
2018-07-05 20:45:58 +02:00
}
2019-03-31 14:32:06 +02:00
.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 .header {
position: sticky;
top: 0;
z-index: 10;
background: #fff;
2018-07-05 20:45:58 +02:00
}
2019-03-31 14:32:06 +02:00
.no-scroll .menu {
display: flex;
2018-07-05 20:45:58 +02:00
}
2019-03-31 14:32:06 +02:00
2018-07-05 20:45:58 +02:00
.menu {
display: none;
position: fixed;
2019-03-31 14:32:06 +02:00
z-index: 10;
top: 65px;
2018-07-05 20:45:58 +02:00
right: 0;
bottom: 0;
left: 0;
background: #fff;
justify-content: center;
flex-direction: column;
text-align: center;
2019-03-31 14:32:06 +02:00
padding-bottom: 130px;
2018-01-08 17:28:39 +01:00
}
2018-07-05 20:45:58 +02:00
.menu li {
width: 100%;
margin-left: 0;
}
.menu a {
font-size: 20px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
/* List
-------------------------------------------------- */
.list {
background: #f5f5f5;
}
.main,
.footer {
max-width: 640px;
2018-01-08 17:28:39 +01:00
margin-left: auto;
margin-right: auto;
}
2019-03-31 14:32:06 +02:00
/* Main
-------------------------------------------------- */
.main {
min-height: calc(100vh - 65px - 60px);
padding: 24px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.page-header {
margin-bottom: 36px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.page-header .tagged {
margin-bottom: 2px;
color: rgba(0, 0, 0, 0.6);
2018-01-08 17:28:39 +01:00
font-size: 12px;
text-transform: uppercase;
2019-03-31 14:32:06 +02:00
letter-spacing: 1.5px;
transform: scale(0.9);
transform-origin: left center;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.page-header h1 {
font-size: 30px;
2018-08-15 19:22:33 +02:00
}
2019-03-31 14:32:06 +02:00
.page-footer .pagination {
display: flex;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.page-footer .pagination .next {
margin-left: auto;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
/* Post entry
-------------------------------------------------- */
2018-01-08 17:28:39 +01:00
.post-entry {
position: relative;
2019-03-31 14:32:06 +02:00
margin-bottom: 24px;
padding: 24px;
2018-01-08 17:28:39 +01:00
background: #fff;
2019-03-31 14:32:06 +02:00
transition: box-shadow 0.2s;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.post-entry:hover {
box-shadow: 0 10px 80px rgba(0, 0, 0, 0.15);
2018-07-05 20:45:58 +02:00
}
2019-03-31 14:32:06 +02:00
.post-entry:active {
transform: scale(0.98);
transition: transform 0.1s;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.entry-header h2 {
font-size: 22px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.entry-content {
margin-top: 8px;
margin-bottom: 14px;
color: rgba(0, 0, 0, 0.6);
font-size: 14px;
line-height: 1.7;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.entry-footer {
font-size: 12px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.entry-link {
2018-01-08 17:28:39 +01:00
position: absolute;
2019-03-31 14:32:06 +02:00
left: 0;
2018-01-08 17:28:39 +01:00
right: 0;
2019-03-31 14:32:06 +02:00
top: 0;
2018-01-08 17:28:39 +01:00
bottom: 0;
}
2019-03-31 14:32:06 +02:00
/* Post single
-------------------------------------------------- */
.post-header {
margin-top: 12px;
margin-bottom: 36px;
}
.post-title {
margin-bottom: 8px;
font-size: 36px;
transform: translateX(-2px);
}
.post-meta {
font-size: 13px;
color: rgba(0, 0, 0, 0.6);
2018-01-08 17:28:39 +01:00
}
.post-content {
2019-03-31 14:32:06 +02:00
font-size: 17px;
line-height: 1.9;
2018-01-08 17:28:39 +01:00
word-wrap: break-word;
}
2019-03-31 14:32:06 +02:00
.post-content .form-item-title .ant-input,
.post-content h1 {
font-size: 36px;
font-weight: 700;
transform: translateX(-1px);
}
.post-content h1 {
margin-top: 48px;
margin-bottom: 36px;
}
2018-01-08 17:28:39 +01:00
.post-content h2 {
2019-03-31 14:32:06 +02:00
margin-top: 36px;
margin-bottom: 24px;
font-size: 28px;
2018-01-08 17:28:39 +01:00
}
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
2019-03-31 14:32:06 +02:00
margin-top: 24px;
margin-bottom: 12px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.post-content h4,
2018-08-15 19:22:33 +02:00
.post-content h5,
.post-content h6 {
2019-03-31 14:32:06 +02:00
font-weight: 500;
2018-01-08 17:28:39 +01:00
}
.post-content h3 {
2019-03-31 14:32:06 +02:00
font-size: 22px;
2018-01-08 17:28:39 +01:00
}
.post-content h4 {
2019-03-31 14:32:06 +02:00
font-size: 18px;
2018-01-08 17:28:39 +01:00
}
.post-content h5 {
2019-03-31 14:32:06 +02:00
font-size: 16px;
2018-01-08 17:28:39 +01:00
}
.post-content h6 {
2019-03-31 14:32:06 +02:00
font-size: 14px;
2018-01-08 17:28:39 +01:00
}
.post-content a {
2019-03-31 14:32:06 +02:00
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% / 1.2px 1.2px
repeat-x;
2018-01-08 17:28:39 +01:00
}
.post-content p,
.post-content ul,
.post-content ol,
.post-content dl {
2019-03-31 14:32:06 +02:00
margin-bottom: 24px;
2018-01-08 17:28:39 +01:00
}
.post-content ul,
.post-content ol {
padding-left: 20px;
}
2019-03-31 14:32:06 +02:00
.post-content ul {
list-style: disc;
}
.post-content ul ul {
padding-left: 20px;
}
.post-content ol ol {
list-style: lower-roman;
}
.post-content ol {
list-style: decimal;
}
2018-01-08 17:28:39 +01:00
.post-content li {
2019-03-31 14:32:06 +02:00
margin-bottom: 5px;
2018-01-08 17:28:39 +01:00
}
.post-content li > ul,
.post-content li > ol {
margin-top: 10px;
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 {
2019-03-31 14:32:06 +02:00
margin-top: 32px;
margin-bottom: 32px;
2018-01-08 17:28:39 +01:00
}
.post-content table {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
}
.post-content th,
.post-content td {
2019-03-31 14:32:06 +02:00
padding: 10px;
border-bottom: 1px solid #eee;
2018-01-08 17:28:39 +01:00
}
.post-content th {
2019-03-31 14:32:06 +02:00
font-size: 14px;
2018-01-08 17:28:39 +01:00
text-align: left;
}
.post-content code {
2019-03-31 14:32:06 +02:00
margin-left: 4px;
margin-right: 4px;
padding: 4px;
font-family: Menlo, Monaco, 'Courier New', Courier, monospace;
font-size: 0.8em;
2018-08-15 19:22:33 +02:00
white-space: pre-wrap;
2019-03-31 14:32:06 +02:00
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.7;
border-radius: 2px;
2018-01-08 17:28:39 +01:00
}
.post-content blockquote {
2019-03-31 14:32:06 +02:00
margin: 0 0 0 -24px;
padding: 0 0 0 21px;
2018-01-08 17:28:39 +01:00
font-style: italic;
2019-03-31 14:32:06 +02:00
border-left: 3px solid rgba(0, 0, 0, 0.9);
2018-01-08 17:28:39 +01:00
}
.post-content hr {
2019-03-31 14:32:06 +02:00
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, -32px);
2018-01-08 17:28:39 +01:00
}
.post-content iframe {
max-width: 100%;
}
2019-03-31 14:32:06 +02:00
.post-footer {
margin-top: 48px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.post-footer .post-tags li {
2018-01-08 17:28:39 +01:00
display: inline-block;
}
2019-03-31 14:32:06 +02:00
.post-footer .post-tags li + li {
2018-01-08 17:28:39 +01:00
margin-left: 3px;
}
2019-03-31 14:32:06 +02:00
.post-footer .post-tags a {
2018-01-08 17:28:39 +01:00
display: block;
2019-03-31 14:32:06 +02:00
padding-left: 12px;
padding-right: 12px;
color: rgba(0, 0, 0, 0.6);
font-size: 14px;
line-height: 32px;
background: #f5f5f5;
border-radius: 2px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.post-footer .post-tags a:hover {
background: #f2f2f2;
2018-01-08 17:28:39 +01:00
}
/* Footer
2019-03-31 14:32:06 +02:00
-------------------------------------------------- */
2018-01-08 17:28:39 +01:00
.footer {
2019-03-31 14:32:06 +02:00
padding-left: 24px;
padding-right: 24px;
color: rgba(0, 0, 0, 0.6);
font-size: 13px;
2018-01-08 17:28:39 +01:00
text-align: center;
2019-03-31 14:32:06 +02:00
line-height: 60px;
2018-01-08 17:28:39 +01:00
}
.footer span {
margin-left: 2px;
margin-right: 2px;
}
2019-03-31 14:32:06 +02:00
.footer a {
color: inherit;
}
2019-03-31 14:32:06 +02:00
/* 404
-------------------------------------------------- */
.not-found {
position: absolute;
left: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
2019-03-31 14:32:06 +02:00
.not-found::before {
content: '404';
color: transparent;
background: linear-gradient(120deg, #7492e6, #8f72c3, #9c66b3, #ba4d95, #ba4d95, #dc3c75);
-webkit-background-clip: text;
position: relative;
display: inline-block;
font-size: 200px;
font-weight: 700;
letter-spacing: 10px;
transform: translate(5px, -80px);
2018-09-27 13:27:18 +02:00
}
2019-03-31 14:32:06 +02:00
/* InstantClick
-------------------------------------------------- */
#instantclick-bar {
background: linear-gradient(120deg, #7492e6, #8f72c3, #9c66b3, #ba4d95, #ba4d95, #dc3c75);
}