feat: add dark mode in the web interface

This commit is contained in:
Terry Geng
2020-03-11 23:38:17 +08:00
parent 3e795fc713
commit 44ce79189a
3 changed files with 55 additions and 1 deletions

12
static/css/bootstrap.darkly.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -5,3 +5,24 @@
.playlist-title{float:left; }
.playlist-artwork{float:left; margin-left:10px;}
.tag-click{cursor:pointer;}
.floating-button {
width: 50px;
height: 50px;
background-color: #aaaaaa40;
border-radius: 50%;
box-shadow: 0 6px 10px 0 #66666647;
transition: all 0.1s ease-in-out;
font-size: 25px;
color: #9896967a;
text-align: center;
line-height: 52px;
position: fixed;
right: 50px;
bottom: 40px;
}
.floating-button:hover {
background-color: hsl(0, 0%, 43%);
color: white;
}