Scoresheet keys, songsel background, auto/p2 for gamepad

This commit is contained in:
LoveEevee
2018-09-26 23:06:14 +03:00
parent 71e180c7d7
commit f72c09f4a6
6 changed files with 79 additions and 16 deletions

View File

@@ -32,13 +32,12 @@
font-family: TnT;
font-size: 3.5vmin;
border-radius: 1.5vmin;
outline: none;
}
#pause-menu button:hover,
#pause-menu button.selected{
#pause-menu .window:not(:hover) button.selected{
color:white;
background:#0c6577;
}
#pause-menu button:hover{
border-color:#fa5d3a;
}
#cursor{

View File

@@ -188,6 +188,22 @@ kbd{
#tutorial-end-button{
font-size: 22pt;
}
@keyframes bgscroll{
from{
background-position: 0 0;
}
to{
background-position: -30vmin 0;
}
}
#song-select{
width: 100%;
height: 100%;
background: url("/assets/img/bg-pattern-1.png");
background-size: 30vmin;
animation: bgscroll 8s infinite linear;
white-space: nowrap;
}
#song-sel-canvas{
position: absolute;
top: 0;

View File

@@ -46,7 +46,8 @@
left:23%;
}
.scoresheet button:hover{
.scoresheet button:hover,
.scoresheet .bottom-part:not(:hover) button.selected{
border-color:#fa5d3a;
color:white;
background:#0c6577;