make play/pause button smaller

This commit is contained in:
edbrz9 2022-12-31 14:43:54 +01:00
parent 250b25c90a
commit 7553de6282
1 changed files with 3 additions and 3 deletions

View File

@ -72,18 +72,18 @@ main {
background: transparent;
box-sizing: border-box;
width: 0;
height: 20px;
height: 12px;
margin-right: 0px;
margin-bottom: 1px;
border-color: transparent transparent transparent #e9d2d2;
transition: 100ms all ease;
cursor: pointer;
border-style: solid;
border-width: 10px 0 10px 20px;
border-width: 6px 0 6px 12px;
}
.ppbut.playing {
border-style: double;
border-width: 0px 0 0px 20px;
border-width: 0px 0 0px 12px;
}
.ppbut:hover {
border-color: transparent transparent transparent rgba(233,210,210,0.7);