2019-11-15 19:01:33 +03:00
|
|
|
---
|
2020-05-03 22:52:23 +03:00
|
|
|
# Post-specific style
|
|
|
|
# v2.0
|
|
|
|
# https://github.com/cotes2020/jekyll-theme-chirpy
|
|
|
|
# © 2019 Cotes Chung
|
|
|
|
# MIT License
|
2019-11-15 19:01:33 +03:00
|
|
|
---
|
2020-05-03 22:52:23 +03:00
|
|
|
|
|
|
|
|
|
|
|
{% include_relative _addon/main.scss %}
|
|
|
|
{% include_relative _addon/syntax.scss %}
|
2019-11-15 19:01:33 +03:00
|
|
|
|
2020-02-21 22:15:13 +03:00
|
|
|
$prompt-older: "{{ site.data.label.post.button.previous }}";
|
|
|
|
$prompt-newer: "{{ site.data.label.post.button.next }}";
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
@mixin btn-sharing-color($light-color, $important: false) {
|
|
|
|
@if $important {
|
2020-02-27 16:05:50 +03:00
|
|
|
color: var(--btn-share-color, $light-color)!important;
|
2020-02-25 12:56:03 +03:00
|
|
|
} @else {
|
2020-02-27 16:05:50 +03:00
|
|
|
color: var(--btn-share-color, $light-color);
|
2020-02-25 12:56:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin btn-post-nav {
|
|
|
|
width: 50%;
|
|
|
|
position: relative;
|
2020-02-27 16:05:50 +03:00
|
|
|
border-color: var(--btn-border-color);
|
2020-02-25 12:56:03 +03:00
|
|
|
}
|
|
|
|
|
2020-12-17 10:17:21 +03:00
|
|
|
@mixin dot($pl: 0.2rem, $pr: 0.4rem) {
|
|
|
|
content: "\2022";
|
|
|
|
color: rgba(158, 158, 158, 0.8);
|
|
|
|
padding-left: $pl;
|
|
|
|
padding-right: $pr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post .post-meta {
|
|
|
|
> div:nth-child(2) {
|
|
|
|
> span:not(:first-child)::before {
|
|
|
|
@include dot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#pv::after {
|
|
|
|
content: " views";
|
|
|
|
}
|
|
|
|
.readtime::after {
|
|
|
|
content: " read";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-21 17:44:58 +03:00
|
|
|
.post-content {
|
2020-12-14 10:00:21 +03:00
|
|
|
.preview-img {
|
2020-08-21 17:45:12 +03:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 2.5rem;
|
2020-09-02 13:25:57 +03:00
|
|
|
@include align-center;
|
2020-08-21 17:45:12 +03:00
|
|
|
}
|
2019-12-23 20:21:55 +03:00
|
|
|
}
|
|
|
|
|
2020-02-16 22:01:48 +03:00
|
|
|
.post-tail-wrapper {
|
2020-07-29 23:58:05 +03:00
|
|
|
margin-top: 6rem;
|
2020-02-27 16:05:50 +03:00
|
|
|
border-bottom: 1px double var(--main-border-color);
|
2019-12-23 20:21:55 +03:00
|
|
|
font-size: 0.85rem;
|
|
|
|
}
|
|
|
|
|
2020-04-06 21:11:50 +03:00
|
|
|
.post-tags {
|
|
|
|
line-height: 2rem;
|
|
|
|
}
|
|
|
|
|
2020-01-03 14:33:49 +03:00
|
|
|
.post-navigation {
|
2020-02-17 18:44:10 +03:00
|
|
|
padding-top: 3rem;
|
2020-06-24 15:47:01 +03:00
|
|
|
padding-bottom: 4rem;
|
2019-12-23 20:21:55 +03:00
|
|
|
|
2020-02-21 22:15:13 +03:00
|
|
|
.btn {
|
2020-02-25 12:56:03 +03:00
|
|
|
@include btn-post-nav;
|
2020-02-27 16:05:50 +03:00
|
|
|
color: var(--link-color);
|
2020-02-25 12:56:03 +03:00
|
|
|
&:hover {
|
|
|
|
background: #2a408e;
|
|
|
|
color: #fff;
|
|
|
|
border-color: #2a408e;
|
|
|
|
}
|
|
|
|
&.disabled {
|
|
|
|
@include btn-post-nav;
|
|
|
|
pointer-events: auto;
|
|
|
|
cursor: not-allowed;
|
|
|
|
background: none;
|
|
|
|
color: gray;
|
|
|
|
&:hover {
|
|
|
|
border-color: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.btn-outline-primary.disabled:focus {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2020-02-21 21:45:07 +03:00
|
|
|
}
|
2019-12-23 20:21:55 +03:00
|
|
|
|
2020-02-21 21:45:07 +03:00
|
|
|
p {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
line-height: 1.5rem;
|
2020-10-27 17:08:04 +03:00
|
|
|
margin-top: 0.3rem;
|
2020-02-21 21:45:07 +03:00
|
|
|
white-space: normal;
|
|
|
|
}
|
2020-01-02 19:37:56 +03:00
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
a, span {
|
|
|
|
&::before {
|
2020-02-27 16:05:50 +03:00
|
|
|
color: var(--text-muted-color);
|
2020-10-27 17:08:04 +03:00
|
|
|
font-size: 0.65rem;
|
2020-02-25 12:56:03 +03:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
&:first-child {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
2020-10-27 17:08:04 +03:00
|
|
|
left: 0.5px;
|
2020-02-25 12:56:03 +03:00
|
|
|
&::before {
|
|
|
|
content: $prompt-older
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
2020-10-27 17:08:04 +03:00
|
|
|
right: 0.5px;
|
2020-02-25 12:56:03 +03:00
|
|
|
&::before {
|
|
|
|
content: $prompt-newer
|
|
|
|
}
|
|
|
|
}
|
2020-02-21 21:45:07 +03:00
|
|
|
}
|
2020-02-25 12:56:03 +03:00
|
|
|
} // .post-navigation
|
2020-02-21 21:45:07 +03:00
|
|
|
|
2019-11-24 17:08:17 +03:00
|
|
|
@keyframes fade-up {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
position: relative;
|
|
|
|
top: 2rem;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
#toc-wrapper {
|
2019-11-15 19:01:33 +03:00
|
|
|
border-left: 1px solid rgba(158, 158, 158, 0.17);
|
|
|
|
position: -webkit-sticky;
|
|
|
|
position: sticky;
|
2020-03-03 15:17:51 +03:00
|
|
|
top: 4rem;
|
2019-11-15 19:01:33 +03:00
|
|
|
transition: top 0.2s ease-in-out;
|
2020-12-18 15:54:18 +03:00
|
|
|
animation: fade-up 0.8s;
|
2020-02-25 12:56:03 +03:00
|
|
|
&.topbar-down {
|
|
|
|
top: 6rem;
|
|
|
|
}
|
2020-10-27 00:14:33 +03:00
|
|
|
> span {
|
|
|
|
@include panel-label;
|
2020-02-25 12:56:03 +03:00
|
|
|
}
|
2019-11-15 19:01:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#toc li>a {
|
2020-01-14 23:41:31 +03:00
|
|
|
line-height: 1rem;
|
2020-10-27 17:08:04 +03:00
|
|
|
padding-top: 0.5rem;
|
|
|
|
padding-bottom: 0.5rem;
|
2019-11-15 19:01:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*--- Related Posts ---*/
|
|
|
|
|
2020-02-21 22:15:13 +03:00
|
|
|
#related-posts {
|
2020-02-25 12:56:03 +03:00
|
|
|
>h3 {
|
2020-04-07 15:23:57 +03:00
|
|
|
@include label(1.1rem, 600);
|
2020-02-25 12:56:03 +03:00
|
|
|
}
|
2020-02-21 22:15:13 +03:00
|
|
|
.card {
|
2020-12-24 14:37:33 +03:00
|
|
|
border-color: var(--card-border-color);
|
2020-02-21 22:15:13 +03:00
|
|
|
background-color: var(--card-bg);
|
2020-02-27 16:05:50 +03:00
|
|
|
box-shadow: 0 0 5px 0 var(--card-box-shadow);
|
2020-12-18 15:54:18 +03:00
|
|
|
-webkit-transition: all 0.3s ease-in-out;
|
|
|
|
-moz-transition: all 0.3s ease-in-out;
|
|
|
|
transition: all 0.3s ease-in-out;
|
2020-02-21 22:15:13 +03:00
|
|
|
h3 {
|
2020-04-07 15:23:57 +03:00
|
|
|
color: var(--text-color);
|
2020-02-21 22:15:13 +03:00
|
|
|
}
|
2020-02-25 12:56:03 +03:00
|
|
|
&:hover {
|
|
|
|
-webkit-transform: translate3d(0, -3px, 0);
|
|
|
|
transform: translate3d(0, -3px, 0);
|
2020-12-24 14:37:33 +03:00
|
|
|
box-shadow: 0 10px 15px -4px rgba(0,0,0,0.15);
|
2020-02-25 12:56:03 +03:00
|
|
|
}
|
2020-02-21 22:15:13 +03:00
|
|
|
}
|
2019-11-15 19:01:33 +03:00
|
|
|
|
2020-02-21 22:15:13 +03:00
|
|
|
.timeago {
|
2020-02-27 16:05:50 +03:00
|
|
|
color: var(--relate-post-date);
|
2020-02-21 22:15:13 +03:00
|
|
|
}
|
2019-11-15 19:01:33 +03:00
|
|
|
|
2020-02-21 22:15:13 +03:00
|
|
|
p {
|
2020-10-27 17:08:04 +03:00
|
|
|
font-size: 0.9rem;
|
|
|
|
margin-bottom: 0.5rem;
|
2020-02-21 22:15:13 +03:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
}
|
2019-11-15 19:01:33 +03:00
|
|
|
|
2020-02-21 22:15:13 +03:00
|
|
|
a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2019-11-15 19:01:33 +03:00
|
|
|
|
2020-02-21 22:15:13 +03:00
|
|
|
ul {
|
|
|
|
list-style-type: none;
|
|
|
|
padding-inline-start: 1.5rem;
|
2020-02-25 12:56:03 +03:00
|
|
|
>li::before {
|
|
|
|
background: #c2c9d4;
|
|
|
|
width: 5px;
|
|
|
|
height: 5px;
|
|
|
|
border-radius: 1px;
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
position: relative;
|
|
|
|
top: 1rem;
|
|
|
|
right: 1rem;
|
|
|
|
}
|
2020-02-21 22:15:13 +03:00
|
|
|
}
|
2019-11-25 15:56:50 +03:00
|
|
|
}
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
#post-extend-wrapper {
|
2019-11-25 15:56:50 +03:00
|
|
|
min-height: 2rem;
|
2020-07-29 23:58:05 +03:00
|
|
|
#disqus_thread {
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
}
|
2019-11-25 15:56:50 +03:00
|
|
|
}
|
|
|
|
|
2020-02-16 22:01:48 +03:00
|
|
|
.post-tail-bottom a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2020-02-27 16:05:50 +03:00
|
|
|
%btn-share-hovor {
|
|
|
|
color: var(--btn-share-hover-color)!important;
|
|
|
|
}
|
|
|
|
|
2020-02-16 22:01:48 +03:00
|
|
|
.share-wrapper {
|
|
|
|
vertical-align: middle;
|
|
|
|
user-select: none;
|
2020-02-29 16:51:18 +03:00
|
|
|
.share-icons {
|
2020-02-21 22:15:13 +03:00
|
|
|
font-size: 1.2rem;
|
2020-02-29 16:51:18 +03:00
|
|
|
a {
|
|
|
|
&:not(:last-child) {
|
2020-10-27 17:08:04 +03:00
|
|
|
margin-right: 0.25rem;
|
2020-02-29 16:51:18 +03:00
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
>i {
|
|
|
|
@extend %btn-share-hovor;
|
|
|
|
}
|
2020-02-27 16:05:50 +03:00
|
|
|
}
|
|
|
|
}
|
2020-02-29 16:51:18 +03:00
|
|
|
>i {
|
2020-10-27 17:08:04 +03:00
|
|
|
padding-top: 0.35rem;
|
2020-02-29 16:51:18 +03:00
|
|
|
&:hover {
|
|
|
|
@extend %btn-share-hovor;
|
|
|
|
}
|
2020-02-27 16:05:50 +03:00
|
|
|
}
|
2020-02-25 12:56:03 +03:00
|
|
|
.fab {
|
|
|
|
&.fa-twitter {
|
|
|
|
@include btn-sharing-color(rgba(29, 161, 242, 1.00));
|
|
|
|
}
|
|
|
|
&.fa-facebook-square {
|
|
|
|
@include btn-sharing-color(rgb(66, 95, 156));
|
|
|
|
}
|
|
|
|
&.fa-telegram {
|
|
|
|
@include btn-sharing-color(rgb(39, 159, 217));
|
|
|
|
}
|
|
|
|
&.fa-weibo {
|
|
|
|
@include btn-sharing-color(rgb(229, 20, 43));
|
|
|
|
}
|
2020-02-21 22:15:13 +03:00
|
|
|
}
|
2020-02-16 22:01:48 +03:00
|
|
|
|
2020-02-29 16:51:18 +03:00
|
|
|
} // .share-icons
|
2020-02-16 22:01:48 +03:00
|
|
|
|
2020-02-21 22:15:13 +03:00
|
|
|
.fas.fa-link {
|
2020-02-25 12:56:03 +03:00
|
|
|
@include btn-sharing-color(rgb(171, 171, 171));
|
2020-02-21 22:15:13 +03:00
|
|
|
}
|
2020-02-16 22:01:48 +03:00
|
|
|
|
2020-02-21 22:15:13 +03:00
|
|
|
} // .share-wrapper
|
|
|
|
|
|
|
|
|
|
|
|
.share-label {
|
2020-04-07 15:23:57 +03:00
|
|
|
@include label(inherit, 400, inherit);
|
2020-02-25 12:56:03 +03:00
|
|
|
&::after {
|
|
|
|
content: ":";
|
|
|
|
}
|
2020-02-16 22:01:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.license-wrapper {
|
|
|
|
line-height: 1.2rem;
|
2020-04-06 21:11:50 +03:00
|
|
|
>a {
|
2020-02-21 22:15:13 +03:00
|
|
|
font-weight: 600;
|
2020-04-06 21:11:50 +03:00
|
|
|
&:hover {
|
|
|
|
@extend %link-hover;
|
|
|
|
}
|
2020-02-21 22:15:13 +03:00
|
|
|
}
|
|
|
|
i {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
span:last-child {
|
2020-10-27 17:08:04 +03:00
|
|
|
font-size: 0.85rem;
|
2020-02-21 22:15:13 +03:00
|
|
|
}
|
|
|
|
} // .license-wrapper
|
2020-02-16 22:01:48 +03:00
|
|
|
|
|
|
|
|
|
|
|
@media all and (max-width: 576px) {
|
|
|
|
.post-tail-bottom {
|
2020-04-06 21:11:50 +03:00
|
|
|
-ms-flex-wrap: wrap-reverse!important;
|
|
|
|
flex-wrap: wrap-reverse!important;
|
2020-02-25 12:56:03 +03:00
|
|
|
>div:first-child {
|
2020-04-06 21:11:50 +03:00
|
|
|
width: 100%;
|
|
|
|
margin-top: 1rem;
|
2020-02-25 12:56:03 +03:00
|
|
|
}
|
2020-02-16 22:01:48 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-23 20:21:55 +03:00
|
|
|
@media all and (max-width: 768px) {
|
2021-01-23 08:18:02 +03:00
|
|
|
.post-content > p > img {
|
2019-12-23 20:21:55 +03:00
|
|
|
max-width: calc(100% + 1rem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 768px) {
|
2020-02-25 12:56:03 +03:00
|
|
|
.post {
|
|
|
|
.post-meta {
|
|
|
|
>div:not(:first-child)::before {
|
2020-12-18 15:54:18 +03:00
|
|
|
@include dot(0.5rem, 0.2rem);
|
2020-02-25 12:56:03 +03:00
|
|
|
}
|
|
|
|
&.flex-column {
|
|
|
|
-webkit-box-orient: horizontal!important;
|
|
|
|
-webkit-box-direction: normal!important;
|
|
|
|
-ms-flex-direction: row!important;
|
|
|
|
flex-direction: row!important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // .post
|
2019-12-23 20:21:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 768px) and (max-width: 830px) {
|
|
|
|
.post img {
|
|
|
|
max-width: calc(100% + 2rem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hide SideBar and TOC */
|
|
|
|
@media all and (max-width: 830px) {
|
2020-01-03 14:33:49 +03:00
|
|
|
.post-navigation {
|
2020-01-02 19:37:56 +03:00
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
2020-01-28 20:18:25 +03:00
|
|
|
margin-left: -.5rem;
|
|
|
|
margin-right: -.5rem;
|
2020-01-02 19:37:56 +03:00
|
|
|
}
|
2019-12-23 20:21:55 +03:00
|
|
|
}
|