2019-11-15 19:01:33 +03:00
|
|
|
---
|
|
|
|
---
|
|
|
|
/*!
|
|
|
|
Individual styles for Post
|
2020-01-02 16:17:49 +03:00
|
|
|
v2.0
|
|
|
|
https://github.com/cotes2020/jekyll-theme-chirpy
|
2019-11-15 19:01:33 +03:00
|
|
|
© 2019 Cotes Chung
|
|
|
|
MIT License
|
|
|
|
*/
|
|
|
|
|
2019-12-23 20:21:55 +03:00
|
|
|
.post img {
|
|
|
|
margin-top: .5rem;
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
2020-01-03 14:41:29 +03:00
|
|
|
// filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.08));
|
|
|
|
position: relative;
|
|
|
|
left: 50%;
|
|
|
|
-webkit-transform: translateX(-50%);
|
|
|
|
-ms-transform: translateX(-50%);
|
|
|
|
transform: translateX(-50%);
|
2019-12-23 20:21:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.post-tail {
|
|
|
|
margin-top: 3.5rem;
|
|
|
|
border-bottom: 1px double #e9ecef;
|
|
|
|
font-size: 0.85rem;
|
|
|
|
}
|
|
|
|
|
2020-01-03 14:33:49 +03:00
|
|
|
.post-navigation {
|
2020-01-02 19:37:56 +03:00
|
|
|
padding: 1rem .2rem;
|
|
|
|
margin-bottom: 2rem;
|
2019-12-23 20:21:55 +03:00
|
|
|
}
|
|
|
|
|
2020-01-03 14:33:49 +03:00
|
|
|
.post-navigation .btn,
|
|
|
|
.post-navigation .btn.disabled {
|
|
|
|
width: 50%;
|
|
|
|
position: relative;
|
2019-12-23 20:21:55 +03:00
|
|
|
color: #2a408e;
|
2020-01-03 14:33:49 +03:00
|
|
|
border-color: #e9ecef;
|
2019-12-23 20:21:55 +03:00
|
|
|
}
|
|
|
|
|
2020-01-03 14:33:49 +03:00
|
|
|
.post-navigation .btn:hover {
|
2019-12-23 20:21:55 +03:00
|
|
|
background: #2a408e;
|
|
|
|
color: #fff;
|
2020-01-03 14:33:49 +03:00
|
|
|
border-color: #2a408e;
|
2019-12-23 20:21:55 +03:00
|
|
|
}
|
|
|
|
|
2020-01-03 14:33:49 +03:00
|
|
|
.post-navigation a.btn.disabled {
|
2019-12-23 20:21:55 +03:00
|
|
|
pointer-events: auto;
|
|
|
|
cursor: not-allowed;
|
|
|
|
background: none;
|
|
|
|
color: gray;
|
2020-01-03 14:33:49 +03:00
|
|
|
border-color: #e9ecef;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-navigation a.btn.btn-outline-primary.disabled:focus {
|
|
|
|
box-shadow: none;
|
2019-12-23 20:21:55 +03:00
|
|
|
}
|
|
|
|
|
2020-01-03 14:33:49 +03:00
|
|
|
.post-navigation a > p {
|
|
|
|
font-size: 1.1rem;
|
2020-01-02 19:37:56 +03:00
|
|
|
font-weight: 600;
|
|
|
|
line-height: 1.2rem;
|
|
|
|
margin-top: .3rem;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2020-01-03 14:33:49 +03:00
|
|
|
.post-navigation a:first-child {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
left: .5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-navigation a:last-child {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
right: .5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-navigation a::before {
|
2020-01-02 19:37:56 +03:00
|
|
|
color: gray;
|
2020-01-03 14:33:49 +03:00
|
|
|
font-size: .65rem;
|
2020-01-02 19:37:56 +03:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
2020-01-03 14:33:49 +03:00
|
|
|
.post-navigation a:first-child::before {
|
|
|
|
content: "Older";
|
2020-01-02 19:37:56 +03:00
|
|
|
}
|
|
|
|
|
2020-01-03 14:33:49 +03:00
|
|
|
.post-navigation a:last-child::before {
|
|
|
|
content: "Newer";
|
2020-01-02 19:37:56 +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;
|
|
|
|
top: 2rem;
|
|
|
|
transition: top 0.2s ease-in-out;
|
2019-11-24 17:08:17 +03:00
|
|
|
animation: fade-up .8s;
|
2019-11-15 19:01:33 +03:00
|
|
|
}
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
#toc-wrapper.topbar-down {
|
2019-11-15 19:01:33 +03:00
|
|
|
top: 6rem;
|
|
|
|
}
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
#toc-wrapper>h3 {
|
2019-11-15 19:01:33 +03:00
|
|
|
font-size: 1rem;
|
|
|
|
font-family: 'Oswald', sans-serif;
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
#toc li>a {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*--- Related Posts ---*/
|
|
|
|
|
2020-01-02 19:37:56 +03:00
|
|
|
#related-posts > h3 {
|
2019-11-15 19:01:33 +03:00
|
|
|
color: gray;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
font-family: 'Oswald', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#related-posts .card {
|
|
|
|
border: 1px solid #f1f1f1;
|
|
|
|
box-shadow: 0 0 5px 0 rgba(234, 234, 234, 0.7686274509803922);
|
|
|
|
-webkit-transition: all .3s ease-in-out;;
|
|
|
|
-moz-transition: all .3s ease-in-out;;
|
|
|
|
transition: all .3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#related-posts .card:hover {
|
2020-01-02 15:58:00 +03:00
|
|
|
-webkit-transform: translate3d(0, -3px, 0);
|
|
|
|
transform: translate3d(0, -3px, 0);
|
|
|
|
filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.08));
|
2019-11-15 19:01:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#related-posts .card h3 {
|
|
|
|
color: #353a3d;
|
|
|
|
}
|
|
|
|
|
|
|
|
#related-posts .timeago {
|
|
|
|
color: rgba(30,55,70,.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
#related-posts p {
|
|
|
|
font-size: .9rem;
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
}
|
|
|
|
|
|
|
|
#related-posts a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#related-posts ul {
|
|
|
|
list-style-type: none;
|
|
|
|
padding-inline-start: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2020-01-02 19:37:56 +03:00
|
|
|
#related-posts ul > li::before {
|
2019-11-15 19:01:33 +03:00
|
|
|
background: #c2c9d4;
|
|
|
|
width: 5px;
|
|
|
|
height: 5px;
|
|
|
|
border-radius: 1px;
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
position: relative;
|
|
|
|
top: 1rem;
|
|
|
|
right: 1rem;
|
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;
|
|
|
|
}
|
|
|
|
|
2019-12-23 20:21:55 +03:00
|
|
|
|
|
|
|
@media all and (max-width: 768px) {
|
|
|
|
.post img {
|
|
|
|
max-width: calc(100% + 1rem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 768px) {
|
2020-01-02 19:37:56 +03:00
|
|
|
.post .post-meta > div:not(:first-child)::before {
|
2019-12-23 20:21:55 +03:00
|
|
|
content: "\2022";
|
|
|
|
color: rgba(158, 158, 158, 0.8);
|
|
|
|
font-weight: bold;
|
|
|
|
padding-left: .5rem;
|
|
|
|
padding-right: .3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post .post-meta.flex-column {
|
|
|
|
-webkit-box-orient: horizontal!important;
|
|
|
|
-webkit-box-direction: normal!important;
|
|
|
|
-ms-flex-direction: row!important;
|
|
|
|
flex-direction: row!important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@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) {
|
|
|
|
.post img {
|
|
|
|
position: relative;
|
|
|
|
left: 50%;
|
|
|
|
-webkit-transform: translateX(-50%);
|
|
|
|
-ms-transform: translateX(-50%);
|
|
|
|
transform: translateX(-50%);
|
|
|
|
}
|
2020-01-02 19:37:56 +03:00
|
|
|
|
2020-01-03 14:33:49 +03:00
|
|
|
.post-navigation {
|
2020-01-02 19:37:56 +03:00
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
2019-12-23 20:21:55 +03:00
|
|
|
}
|
|
|
|
|
2019-11-25 15:56:50 +03:00
|
|
|
/*
|
2019-12-31 18:17:27 +03:00
|
|
|
The following resposive design aim to make #post-extend-wrapper margin-right same as pannel's width
|
2019-11-25 15:56:50 +03:00
|
|
|
*/
|
2019-11-27 20:59:01 +03:00
|
|
|
@media all and (min-width: 1200px) {
|
2019-12-31 18:17:27 +03:00
|
|
|
#post-extend-wrapper {
|
2019-11-25 15:56:50 +03:00
|
|
|
margin-right: 25%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 1460px) {
|
2019-12-31 18:17:27 +03:00
|
|
|
#post-extend-wrapper {
|
2019-11-25 15:56:50 +03:00
|
|
|
margin-right: 300px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 1650px) {
|
2019-12-31 18:17:27 +03:00
|
|
|
#post-extend-wrapper {
|
2019-11-25 15:56:50 +03:00
|
|
|
margin-right: calc((100% - 1150px) / 10 + 300px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 1700px) {
|
2019-12-31 18:17:27 +03:00
|
|
|
#post-extend-wrapper {
|
2019-11-25 15:56:50 +03:00
|
|
|
margin-right: calc((100% - 1150px) / 8 + 300px);
|
|
|
|
}
|
2020-01-03 14:41:29 +03:00
|
|
|
}
|