hugo-PaperMod/static/css/style.css

551 lines
9.3 KiB
CSS
Raw Normal View History

2018-01-08 17:28:39 +01:00
/*
2019-04-28 12:25:41 +02:00
* Paper
2019-03-31 14:32:06 +02:00
* A simple, clean, flexible Hugo theme.
2019-04-01 10:16:48 +02:00
* Designed by MR.LEE (https://mrlee.me/)
2019-04-28 12:25:41 +02:00
* Updated in 2019.4.28
2018-01-08 17:28:39 +01:00
*/
/* Reset
2019-04-01 10:01:16 +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);
2019-04-01 10:01:16 +02:00
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
'Open Sans', 'Helvetica Neue', sans-serif;
2019-03-31 14:32:06 +02:00
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,
2019-04-01 10:01:16 +02:00
hgroup,
2019-03-31 14:32:06 +02:00
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,
2019-04-01 10:01:16 +02:00
h6 {
margin-top: 0;
margin-bottom: 0;
}
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 {
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
}
2019-04-01 10:01:16 +02:00
/* Body
-------------------------------------------------- */
.list {
background: #f5f5f5;
}
2018-01-08 17:28:39 +01:00
/* Header
2019-04-01 10:01:16 +02:00
-------------------------------------------------- */
2018-01-08 17:28:39 +01:00
.header {
height: 65px;
2018-07-05 20:45:58 +02:00
}
2019-03-31 14:32:06 +02:00
.header .wrap {
display: flex;
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;
2019-04-02 05:22:12 +02:00
line-height: 65px;
2018-01-08 17:28:39 +01:00
}
.menu-toggle {
2019-03-31 14:32:06 +02:00
position: relative;
width: 68px;
2019-04-02 05:22:12 +02:00
height: 65px;
margin-left: auto;
2019-03-31 14:32:06 +02:00
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
2019-04-02 05:22:12 +02:00
.no-scroll .header {
position: fixed;
z-index: 10;
top: 0;
left: 0;
right: 0;
2019-04-25 23:29:28 +02:00
background: #fff;
2019-04-02 05:22:12 +02:00
}
.no-scroll .logo {
display: none;
2018-07-05 20:45:58 +02:00
}
2019-04-25 23:29:28 +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);
2019-04-01 10:01:16 +02:00
}
2019-04-02 05:22:12 +02:00
.no-scroll .menu {
display: flex;
}
2019-04-25 23:29:28 +02:00
.no-scroll .main {
margin-top: 65px;
}
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
bottom: 0;
left: 0;
2019-04-01 10:01:16 +02:00
right: 0;
2018-07-05 20:45:58 +02:00
justify-content: center;
flex-direction: column;
2019-04-28 12:25:41 +02:00
padding-bottom: 180px;
2019-04-01 10:01:16 +02:00
text-align: center;
2019-04-25 23:29:28 +02:00
background: #fff;
list-style: none;
2018-01-08 17:28:39 +01:00
}
2019-04-01 10:01:16 +02:00
.menu li + li {
margin-top: 12px;
2018-07-05 20:45:58 +02:00
}
.menu a {
2019-04-01 10:01:16 +02:00
font-size: 48px;
2019-04-02 05:22:12 +02:00
font-weight: 700;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
/* Main
-------------------------------------------------- */
.main {
2019-04-01 10:01:16 +02:00
position: relative;
2019-03-31 14:32:06 +02:00
min-height: calc(100vh - 65px - 60px);
2019-04-01 10:01:16 +02:00
max-width: 640px;
margin-left: auto;
margin-right: auto;
2019-03-31 14:32:06 +02:00
padding: 24px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.page-header {
2019-04-02 05:22:12 +02:00
margin-bottom: 40px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.page-header h1 {
2019-04-02 05:22:12 +02:00
font-size: 32px;
2019-04-28 12:25:41 +02:00
font-weight: 400;
2018-08-15 19:22:33 +02:00
}
2019-04-01 10:01:16 +02:00
.pagination {
2019-03-31 14:32:06 +02:00
display: flex;
2018-01-08 17:28:39 +01:00
}
2019-04-01 10:01:16 +02:00
.pagination a {
color: #fff;
font-size: 13px;
2019-04-02 05:22:12 +02:00
line-height: 34px;
2019-04-01 10:01:16 +02:00
background: rgba(0, 0, 0, 0.9);
2019-04-02 05:22:12 +02:00
border-radius: 34px;
2019-04-01 10:01:16 +02:00
}
.pagination .prev {
padding-left: 16px;
padding-right: 18px;
}
.pagination .next {
2019-03-31 14:32:06 +02:00
margin-left: auto;
2019-04-01 10:01:16 +02:00
padding-left: 18px;
padding-right: 16px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
/* Post entry
-------------------------------------------------- */
2019-04-01 10:01:16 +02:00
.first-entry {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
height: 320px;
2019-04-21 20:22:15 +02:00
margin-bottom: 64px;
overflow: hidden;
2019-04-01 10:01:16 +02:00
}
.first-entry .entry-header h2 {
font-size: 40px;
}
.first-entry .entry-content {
2019-04-21 20:22:15 +02:00
max-height: 81px;
2019-04-01 10:01:16 +02:00
margin-top: 12px;
margin-bottom: 20px;
font-size: 16px;
2019-04-21 20:22:15 +02:00
overflow: hidden;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
display: -webkit-box;
text-overflow: ellipsis;
2019-04-01 10:01:16 +02:00
}
.first-entry .entry-footer {
font-size: 14px;
}
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 {
2019-04-01 10:01:16 +02:00
font-size: 24px;
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;
2019-04-01 10:01:16 +02:00
letter-spacing: 0.5px;
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;
2019-04-01 10:01:16 +02:00
transform: translateX(-1px);
2019-03-31 14:32:06 +02:00
}
.post-meta {
color: rgba(0, 0, 0, 0.6);
2019-04-01 10:01:16 +02:00
font-size: 13px;
letter-spacing: 0.5px;
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;
}
.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;
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-04-01 10:01:16 +02:00
.post-content h1 {
font-size: 36px;
}
.post-content h2 {
font-size: 28px;
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;
2019-04-01 10:01:16 +02:00
background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 100%, transparent 0) 0 50% / 1px 1px
2019-03-31 14:32:06 +02:00
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
}
2019-04-21 20:22:15 +02:00
.post-content pre,
.post-content table {
margin-bottom: 32px;
}
2018-01-08 17:28:39 +01:00
.post-content ul,
.post-content ol {
padding-left: 20px;
}
.post-content li {
2019-04-01 10:01:16 +02:00
margin-top: 5px;
2018-01-08 17:28:39 +01:00
}
2019-04-01 10:01:16 +02:00
.post-content li p {
2018-01-08 17:28:39 +01:00
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 {
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;
}
2019-04-21 20:22:15 +02:00
.post-content pre {
margin-top: 0;
background: transparent !important;
line-height: 1.7;
}
.post-content pre code {
margin-left: 0;
margin-right: 0;
2019-04-28 12:25:41 +02:00
padding: 20px;
2019-04-21 20:22:15 +02:00
white-space: inherit;
}
2018-01-08 17:28:39 +01:00
.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;
2019-04-28 12:25:41 +02:00
font-size: 0.82em;
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);
}
2019-04-21 20:22:15 +02:00
.post-content .highlight {
margin-bottom: 32px;
background: rgba(0, 0, 0, 0.04);
overflow-x: auto;
2019-03-31 14:32:06 +02:00
}
2019-04-21 20:22:15 +02:00
.post-content .highlight table,
.post-content .highlight pre {
margin-bottom: 0;
}
.post-content .highlight code {
background: transparent;
2018-01-08 17:28:39 +01:00
}
2019-04-04 21:03:54 +02:00
.post-content .highlight table {
2019-04-21 20:22:15 +02:00
width: auto;
2019-04-04 21:03:54 +02:00
}
.post-content .highlight table td {
padding: 0;
border-bottom: 0;
}
.post-content .highlight table td:first-child pre code {
2019-04-28 12:25:41 +02:00
padding-right: 16px;
2019-04-04 21:03:54 +02:00
color: rgba(0, 0, 0, 0.2);
2019-04-21 20:22:15 +02:00
text-align: right;
2019-04-04 21:03:54 +02:00
}
.post-content .highlight table td:last-child pre code {
padding-left: 0;
}
.post-content .highlight .ln {
2019-04-28 12:25:41 +02:00
margin-right: 16px;
2019-04-04 21:03:54 +02:00
color: rgba(0, 0, 0, 0.2);
}
2019-04-21 20:22:15 +02:00
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;
2019-04-01 10:01:16 +02:00
transform: translate(10px, -36px);
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-04-01 10:01:16 +02:00
.post-tags li {
2018-01-08 17:28:39 +01:00
display: inline-block;
}
2019-04-01 10:01:16 +02:00
.post-tags li + li {
2018-01-08 17:28:39 +01:00
margin-left: 3px;
}
2019-04-01 10:01:16 +02:00
.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-04-01 10:01:16 +02:00
.post-tags a:hover {
background: #eee;
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-04-01 10:01:16 +02:00
max-width: 640px;
margin-left: auto;
margin-right: auto;
2019-03-31 14:32:06 +02:00
padding-left: 24px;
padding-right: 24px;
color: rgba(0, 0, 0, 0.6);
2019-04-01 10:01:16 +02:00
font-size: 12px;
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 {
2019-04-01 10:01:16 +02:00
margin-left: 1px;
margin-right: 1px;
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.footer a {
2019-04-02 05:22:12 +02:00
display: inline-flex;
align-items: center;
2019-03-31 14:32:06 +02:00
color: inherit;
}
2019-04-01 10:01:16 +02:00
.footer a:hover {
color: rgba(0, 0, 0, 0.9);
}
2019-04-02 05:22:12 +02:00
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;
2019-04-01 10:01:16 +02:00
height: 80%;
2019-04-01 10:26:40 +02:00
font-size: 160px;
2019-03-31 14:32:06 +02:00
font-weight: 700;
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);
}