2024-06-07 00:47:07 +02:00
|
|
|
#game {
|
|
|
|
flex-direction: row;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#GameButtons {
|
|
|
|
width: 100%;
|
|
|
|
flex-grow: 1
|
|
|
|
}
|
|
|
|
|
|
|
|
#GameCenterWrapper {
|
|
|
|
width: 55%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#LeftVisualizer {
|
|
|
|
width: 22.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#RightVisualizer {
|
|
|
|
width: 22.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.GameButtonClicked {
|
2024-06-17 19:54:50 +02:00
|
|
|
background-color: gray;
|
2024-06-07 00:47:07 +02:00
|
|
|
scale: 1.1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.GameButton {
|
|
|
|
transition: scale;
|
|
|
|
transition-duration: 0.05s;
|
|
|
|
width: 20%;
|
|
|
|
height: 20%;
|
|
|
|
margin: auto;
|
|
|
|
font-size: 32px;
|
|
|
|
border-radius: 45px;
|
|
|
|
border-width: 0px;
|
|
|
|
}
|
|
|
|
|
2024-06-15 21:03:21 +02:00
|
|
|
.NoteElement {
|
2024-06-16 22:07:02 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 30%;
|
2024-06-15 21:03:21 +02:00
|
|
|
margin: auto;
|
|
|
|
font-size: 32px;
|
|
|
|
border-radius: 45px;
|
|
|
|
border-width: 0px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.LeftNote {
|
|
|
|
background-color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RightNote {
|
|
|
|
background-color: green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.UpNote {
|
|
|
|
background-color: blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.DownNote {
|
|
|
|
background-color: yellow;
|
|
|
|
}
|
|
|
|
|
2024-06-07 00:47:07 +02:00
|
|
|
.Bar {
|
|
|
|
width: 100%;
|
|
|
|
height: 0.7%;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.LeftBar {
|
|
|
|
margin: auto;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RightBar {
|
|
|
|
margin: auto;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#GameBackgroundImageWrapper {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
#TimeLeft,
|
|
|
|
#Score {
|
|
|
|
font-size: 35px;
|
|
|
|
-unity-font-style: bold;
|
|
|
|
-unity-text-align: middle-center;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
#GameBackgroundImageLeft {
|
|
|
|
background-image: url('project://database/Assets/Images/left.png');
|
|
|
|
margin-right: 35%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#GameBackgroundImageRight {
|
|
|
|
background-image: url('project://database/Assets/Images/right.png');
|
|
|
|
margin-left: 35%;
|
2024-06-13 14:46:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.ColumnActive {
|
|
|
|
background-color: green;
|
2024-06-07 00:47:07 +02:00
|
|
|
}
|