Refactored repo file structure in preparation for jsdoc tutorials.

This commit is contained in:
2022-04-18 07:39:59 -05:00
parent ba9e950556
commit 29b3b30586
46 changed files with 12 additions and 13826 deletions

34
src/styles/songPlayer.css Normal file
View File

@@ -0,0 +1,34 @@
.player.play-btn {
box-sizing: border-box;
height: 48px;
width: 48;
transition: 80ms all ease;
will-change: border-width;
cursor: pointer;
border-color: transparent transparent transparent black;
border-style: solid;
border-width: 24px 0px 24px 48px;
}
.player.play-btn.pause {
border-style: double;
border-width: 0px 0px 0px 60px;
}
.player.next {
border-style: none;
width: 48px;
height: 48px;
}
.player.previous {
border-style: none;
width: 48px;
height: 48px;
}
table.player {
border-collapse: collapse;
}