darkmode auto, light, dark

This commit is contained in:
gurusabarish
2022-03-04 16:46:32 +05:30
parent 47f9d64515
commit 05e453ad83
5 changed files with 82 additions and 1 deletions
+24 -1
View File
@@ -257,4 +257,27 @@
#single aside.social .social-content ul li:hover a {
opacity: .8;
color: var(--primary-color);
}
}
/* Top scroll */
#single #topScroll {
display: none;
position: fixed;
bottom: 10px;
right: 10px;
z-index: 99;
border: none;
outline: none;
background-color: var(--secondary-color);
color: var(--primary-color);
cursor: pointer;
border-radius: 10px;
}
#single #topScroll:hover {
background-color: var(--primary-color);
color: var(--secondary-color);
transition: .5s;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}