1
0
Fork 0
hugo-paper/static/css/style.css

570 lines
10 KiB
CSS
Raw Normal View History

2018-01-08 17:28:39 +01:00
/*
2019-04-28 12:25:41 +02:00
* Paper
2019-06-10 21:55:54 +02:00
* A simple, clean, flexible Hugo theme
* https://github.com/nanxiaobei/hugo-paper
2019-04-01 10:16:48 +02:00
* Designed by MR.LEE (https://mrlee.me/)
2019-06-10 21:55:54 +02:00
* Updated in 2019.6.11
2018-01-08 17:28:39 +01:00
*/
2019-06-10 00:52:05 +02:00
/* Variables
-------------------------------------------------- */
:root {
2019-06-10 21:55:54 +02:00
--gap: 24px;
--header-height: 64px;
--footer-height: 60px;
2019-06-10 00:52:05 +02:00
--primary: rgba(0, 0, 0, 0.88);
2019-06-10 21:55:54 +02:00
--secondary: rgba(0, 0, 0, 0.56);
2019-06-10 00:52:05 +02:00
--tertiary: rgba(0, 0, 0, 0.16);
2019-06-10 21:55:54 +02:00
--background: linear-gradient(120deg, #f0efee, #efeee6, #edeceb, #ebded7, #e0d5cf);
2019-06-10 00:52:05 +02:00
}
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-06-10 00:52:05 +02:00
color: var(--primary);
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-06-10 00:52:05 +02:00
color: var(--primary);
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-04-01 10:01:16 +02:00
-------------------------------------------------- */
2018-01-08 17:28:39 +01:00
.header {
2019-06-10 21:55:54 +02:00
height: var(--header-height);
2018-07-05 20:45:58 +02:00
}
2019-03-31 14:32:06 +02:00
.header .wrap {
display: flex;
2019-06-10 21:55:54 +02:00
max-width: calc(1024px + var(--gap) * 2);
2019-03-31 14:32:06 +02:00
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 {
2019-06-10 21:55:54 +02:00
padding-left: var(--gap);
padding-right: var(--gap);
2019-03-31 14:32:06 +02:00
}
.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-06-10 21:55:54 +02:00
line-height: var(--header-height);
2018-01-08 17:28:39 +01:00
}
.menu-toggle {
2019-03-31 14:32:06 +02:00
position: relative;
width: 68px;
2019-06-10 21:55:54 +02:00
height: var(--header-height);
2019-04-02 05:22:12 +02:00
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-06-10 21:55:54 +02:00
.blur .header {
2019-04-02 05:22:12 +02:00
position: fixed;
2019-06-10 21:55:54 +02:00
z-index: 20;
2019-04-02 05:22:12 +02:00
top: 0;
left: 0;
right: 0;
2018-07-05 20:45:58 +02:00
}
2019-06-10 21:55:54 +02:00
.blur .menu-toggle::before {
2019-04-25 23:29:28 +02:00
transform: translate3d(-50%, -1px, 0) rotateZ(135deg);
}
2019-06-10 21:55:54 +02:00
.blur .menu-toggle::after {
2019-04-25 23:29:28 +02:00
transform: translate3d(-50%, -1px, 0) rotateZ(-135deg);
2019-04-01 10:01:16 +02:00
}
2019-06-10 21:55:54 +02:00
.blur .menu {
top: 0;
2019-04-02 05:22:12 +02:00
}
2019-06-10 21:55:54 +02:00
.blur .logo,
.blur .main,
.blur .footer {
filter: blur(32px);
}
.blur .main {
margin-top: var(--header-height);
2019-04-25 23:29:28 +02:00
}
2019-03-31 14:32:06 +02:00
2018-07-05 20:45:58 +02:00
.menu {
position: fixed;
2019-03-31 14:32:06 +02:00
z-index: 10;
2019-06-10 21:55:54 +02:00
top: -100vh;
2018-07-05 20:45:58 +02:00
left: 0;
2019-06-10 21:55:54 +02:00
display: flex;
2018-07-05 20:45:58 +02:00
justify-content: center;
flex-direction: column;
2019-06-10 21:55:54 +02:00
width: 100vw;
height: 100vh;
padding-bottom: var(--header-height);
2019-04-01 10:01:16 +02:00
text-align: center;
2019-06-10 21:55:54 +02:00
background: rgba(255, 255, 255, 0.4);
list-style: none;
2018-01-08 17:28:39 +01:00
}
2018-07-05 20:45:58 +02:00
.menu a {
2019-04-01 10:01:16 +02:00
font-size: 48px;
2019-06-10 21:55:54 +02:00
line-height: 80px;
}
/* Body
-------------------------------------------------- */
.list {
background: var(--background);
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-06-10 21:55:54 +02:00
min-height: calc(100vh - var(--header-height) - var(--footer-height));
max-width: calc(640px + var(--gap) * 2);
2019-04-01 10:01:16 +02:00
margin-left: auto;
margin-right: auto;
2019-06-10 21:55:54 +02:00
padding: var(--gap);
2018-01-08 17:28:39 +01:00
}
2019-03-31 14:32:06 +02:00
.page-header {
2019-06-10 00:52:05 +02:00
margin-top: 8px;
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-06-10 00:52:05 +02:00
background: var(--primary);
2019-06-10 21:55:54 +02:00
border-radius: calc(34px / 2);
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-06-10 21:55:54 +02:00
margin-bottom: var(--header-height);
2019-04-21 20:22:15 +02:00
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;
2019-06-10 21:55:54 +02:00
margin-bottom: 18px;
2019-04-01 10:01:16 +02:00
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-06-10 21:55:54 +02:00
margin-bottom: var(--gap);
padding: var(--gap);
background: #fff;
box-shadow: 0 12px 0 -4px rgba(255, 255, 255, 0.4);
2019-06-10 00:52:05 +02:00
border-radius: 8px;
2019-06-10 09:50:54 +02:00
overflow: hidden;
2019-06-10 21:55:54 +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:active {
2019-06-10 00:52:05 +02:00
transform: scale(0.96);
2019-03-31 14:32:06 +02:00
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;
2019-06-10 21:55:54 +02:00
margin-bottom: 12px;
2019-06-10 00:52:05 +02:00
color: var(--secondary);
2019-03-31 14:32:06 +02:00
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 {
2019-06-10 21:55:54 +02:00
color: var(--secondary);
2019-03-31 14:32:06 +02:00
font-size: 12px;
2019-06-10 21:55:54 +02:00
font-weight: 500;
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 {
2019-06-10 00:52:05 +02:00
margin-top: 16px;
margin-bottom: 40px;
2019-03-31 14:32:06 +02:00
}
.post-title {
2019-06-10 21:55:54 +02:00
margin-bottom: 12px;
2019-06-10 00:52:05 +02:00
font-size: 40px;
2019-04-01 10:01:16 +02:00
transform: translateX(-1px);
2019-03-31 14:32:06 +02:00
}
.post-meta {
2019-06-10 00:52:05 +02:00
color: var(--secondary);
font-size: 14px;
2019-06-10 21:55:54 +02:00
font-weight: 500;
2019-04-01 10:01:16 +02:00
letter-spacing: 0.5px;
2018-01-08 17:28:39 +01:00
}
.post-content {
2019-06-10 00:52:05 +02:00
font-size: 18px;
2019-06-13 14:58:53 +02:00
line-height: 1.9;
2019-03-31 14:32:06 +02:00
}
.post-content h1 {
2019-06-10 21:55:54 +02:00
margin-top: 40px;
margin-bottom: 32px;
2019-03-31 14:32:06 +02:00
}
2018-01-08 17:28:39 +01:00
.post-content h2 {
2019-06-10 21:55:54 +02:00
margin-top: 32px;
2019-03-31 14:32:06 +02:00
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 {
2019-06-10 00:52:05 +02:00
font-size: 40px;
2019-04-01 10:01:16 +02:00
}
.post-content h2 {
2019-06-10 00:52:05 +02:00
font-size: 32px;
2018-01-08 17:28:39 +01:00
}
.post-content h3 {
2019-06-10 00:52:05 +02:00
font-size: 24px;
2018-01-08 17:28:39 +01:00
}
.post-content h4 {
2019-06-10 00:52:05 +02:00
font-size: 16px;
2018-01-08 17:28:39 +01:00
}
.post-content h5 {
2019-06-10 00:52:05 +02:00
font-size: 14px;
2018-01-08 17:28:39 +01:00
}
.post-content h6 {
2019-06-10 00:52:05 +02:00
font-size: 12px;
2018-01-08 17:28:39 +01:00
}
.post-content a {
2019-06-10 00:52:05 +02:00
box-shadow: 0 1px 0 var(--primary);
2019-03-31 14:32:06 +02:00
}
2019-06-10 21:55:54 +02:00
.post-content a code {
margin-left: 0;
margin-right: 0;
border-radius: 0;
box-shadow: 0 -1px 0 var(--primary) inset;
}
2019-03-31 14:32:06 +02:00
.post-content del {
text-decoration: none;
2019-06-10 00:52:05 +02:00
background: linear-gradient(to right, var(--primary) 100%, transparent 0) 0 50% / 1px 1px repeat-x;
2018-01-08 17:28:39 +01:00
}
.post-content p,
.post-content ul,
.post-content ol,
.post-content dl {
2019-06-10 21:55:54 +02:00
margin-bottom: var(--gap);
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;
2019-06-10 21:55:54 +02:00
padding: 4px 6px;
2019-03-31 14:32:06 +02:00
font-family: Menlo, Monaco, 'Courier New', Courier, monospace;
2019-06-10 00:52:05 +02:00
font-size: 0.8em;
2018-08-15 19:22:33 +02:00
white-space: pre-wrap;
2019-06-10 21:55:54 +02:00
background: #f7f7f8;
border-radius: 2px;
2019-03-31 14:32:06 +02:00
}
2019-04-21 20:22:15 +02:00
.post-content .highlight {
margin-bottom: 32px;
2019-06-10 21:55:54 +02:00
background: #f7f7f8;
border-radius: 2px;
2019-04-21 20:22:15 +02:00
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-06-10 00:52:05 +02:00
color: var(--tertiary);
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;
2019-06-10 21:55:54 +02:00
overflow: hidden;
2019-04-04 21:03:54 +02:00
}
.post-content .highlight .ln {
2019-04-28 12:25:41 +02:00
margin-right: 16px;
2019-06-10 00:52:05 +02:00
color: var(--tertiary);
2019-04-04 21:03:54 +02:00
}
2019-04-21 20:22:15 +02:00
2018-01-08 17:28:39 +01:00
.post-content blockquote {
2019-06-10 21:55:54 +02:00
margin: 0 0 0 calc(var(--gap) * -1);
2019-03-31 14:32:06 +02:00
padding: 0 0 0 21px;
2018-01-08 17:28:39 +01:00
font-style: italic;
2019-06-10 00:52:05 +02:00
border-left: 3px solid var(--primary);
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;
2019-06-10 21:55:54 +02:00
color: var(--secondary);
2019-03-31 14:32:06 +02:00
font-size: 32px;
letter-spacing: 20px;
2019-06-10 00:52:05 +02:00
transform: translate(10px, -40px);
2018-01-08 17:28:39 +01:00
}
.post-content iframe {
max-width: 100%;
}
2019-03-31 14:32:06 +02:00
.post-footer {
2019-06-10 00:52:05 +02:00
margin-top: 56px;
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;
2019-06-10 00:52:05 +02:00
color: var(--secondary);
2019-03-31 14:32:06 +02:00
font-size: 14px;
line-height: 32px;
2019-06-10 21:55:54 +02:00
background: #f7f7f8;
2019-03-31 14:32:06 +02:00
border-radius: 2px;
2018-01-08 17:28:39 +01:00
}
2019-04-01 10:01:16 +02:00
.post-tags a:hover {
2019-06-10 00:52:05 +02:00
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-06-10 21:55:54 +02:00
max-width: calc(640px + var(--gap) * 2);
2019-04-01 10:01:16 +02:00
margin-left: auto;
margin-right: auto;
2019-06-10 21:55:54 +02:00
padding: calc((var(--footer-height) - var(--gap)) / 2) var(--gap);
2019-06-10 00:52:05 +02:00
color: var(--secondary);
2019-04-01 10:01:16 +02:00
font-size: 12px;
2018-01-08 17:28:39 +01:00
text-align: center;
2019-06-10 00:52:05 +02:00
line-height: 24px;
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 {
color: inherit;
}
2019-04-01 10:01:16 +02:00
.footer a:hover {
2019-06-10 00:52:05 +02:00
color: var(--primary);
border-bottom: 1px solid var(--primary);
2019-04-01 10:01:16 +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);
}