67 lines
896 B
Plaintext
67 lines
896 B
Plaintext
|
.menu-button {
|
||
|
transition-property: scale, rotate;
|
||
|
transition-duration: 0.2s;
|
||
|
border-radius: 8px;
|
||
|
margin: 5px;
|
||
|
padding: 0 80px;
|
||
|
height: 33.3%;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
#menu {
|
||
|
background-color: rgb(40, 40, 40);
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.menu-button:hover {
|
||
|
scale: 1.1;
|
||
|
}
|
||
|
|
||
|
#Play:hover {
|
||
|
rotate: 0.3deg;
|
||
|
}
|
||
|
|
||
|
#Quit:hover {
|
||
|
rotate: 0.3deg;
|
||
|
}
|
||
|
|
||
|
#Soon:hover {
|
||
|
rotate: -0.3deg;
|
||
|
}
|
||
|
|
||
|
.menu-button:active {
|
||
|
scale: 0.9;
|
||
|
}
|
||
|
|
||
|
.ButtonWrapper {
|
||
|
width: 40%;
|
||
|
height: 40%;
|
||
|
margin: auto;
|
||
|
font-size: 40px;
|
||
|
}
|
||
|
|
||
|
#BackButtonWrapper {
|
||
|
flex-direction: row;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.BottomButton {
|
||
|
transition: scale;
|
||
|
transition-duration: 0.2;
|
||
|
margin: 0;
|
||
|
border-width: 0;
|
||
|
font-size: 35px;
|
||
|
-unity-font-style: bold;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
#Reload {
|
||
|
transition: color, scale;
|
||
|
transition-duration: 0.2;
|
||
|
}
|
||
|
|
||
|
.BottomButton:hover {
|
||
|
scale: 1.1;
|
||
|
}
|