Level-number hinzugefügt

This commit is contained in:
silas
2018-09-18 23:26:17 +02:00
parent b256142c06
commit 09321d4dce
15 changed files with 25332 additions and 39 deletions

View File

@@ -179,9 +179,32 @@ $animationDuration: 0.25s;
}
}
#continue-button {
//width: 80%;
//margin-left: 10%;
//margin-right: 10%;
//margin-bottom: 20%
}
#level-number-container{
transition: none;
position: absolute;
left: 50%;
transform: translate(-50%);
border: 3px solid white;
border-radius: 50%;
visibility: hidden;
margin-top: -5px;
display: table-cell;
height: 45px;
width: 45px;
text-align: center;
vertical-align: middle;
&.visible{
visibility: visible;
}
#level-number{
transition: none;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
font-weight: bold;
}
}