1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-10-08 08:45:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

倒计时功能 初版完成

This commit is contained in:
simonzhangs
2022-02-03 20:46:59 +08:00
parent 839518f25d
commit 7354bf65ed
7 changed files with 738 additions and 49 deletions

View File

@@ -46,7 +46,11 @@ body {
color: aliceblue;
}
#start-btn {
#countdown span{
opacity: 0;
}
#start-btn ,#end-btn{
width: 40px;
margin: 10px auto 0;
padding: 10px 30px;
@@ -64,8 +68,14 @@ body {
cursor: pointer;
}
#end-btn{
background-color: rgb(0, 128, 187);
display: none;
}
/*选中的按钮*/
.selected {
background-color: rgb(33, 10, 70);;
background-color: rgb(244, 242, 248);
}
#current-task-display {
@@ -106,7 +116,7 @@ li {
#add-task-btn {
width: 200px;
margin: 0 auto 10px;
background-color: rgb(33, 10, 70);
/* background-color: rgb(33, 10, 70); */
padding: 8px;
cursor: pointer;
text-align: center;