1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-18 05:41:31 +00:00

Another super feature: auto dark mode!

This commit is contained in:
Cotes Chung
2020-01-03 21:22:11 +08:00
parent 1c2be0c243
commit 2386fe5bd8
13 changed files with 325 additions and 122 deletions

View File

@@ -18,7 +18,7 @@
}
#archives li:nth-child(odd) {
background-color: #fff;
background-color: var(--main-wrapper-bg, #fff);
background-image: linear-gradient(to left, #fff, #fbfbfb, #fbfbfb, #fbfbfb, #fff);
}
@@ -56,8 +56,8 @@
top: -26px;
left: 63px;
border: 3px solid;
background-color: #ffffff;
border-color: #c2c6cc;
background-color: var(--main-border, #ffffff);
border-color: var(--timeline-node-bg, #c2c6cc);
box-shadow: 0 0 2px 0 #c2c6cc;
z-index: 1;
}
@@ -103,7 +103,7 @@
float: left;
top: 1.35rem;
left: 69px;
background-color: #c2c6cc;
background-color: var(--timeline-node-bg, #c2c6cc);
box-shadow: 0 0 3px 0 #c2c6cc;
z-index: 1;
}
@@ -117,7 +117,7 @@
display: inline-block;
float: left;
position: relative;
background-color: rgba(0, 0, 0, 0.075);
background-color: var(--main-border, rgba(0, 0, 0, 0.075));
}
#archives ul>li::after {
@@ -139,7 +139,6 @@
}
@media all and (max-width: 576px) {
#archives {
margin-top: -1rem;
}
@@ -148,3 +147,10 @@
letter-spacing: 0;
}
}
@media (prefers-color-scheme: dark) {
#archives li:nth-child(odd) {
background-image: linear-gradient(to left,
rgb(26, 26, 30), rgb(39, 39, 45), rgb(39, 39, 45), rgb(39, 39, 45), rgb(26, 26, 30));
}
}