75 lines
1.0 KiB
Plaintext
75 lines
1.0 KiB
Plaintext
#level {
|
|
width: 100%;
|
|
height: 100%;
|
|
translate: 100% 100%;
|
|
}
|
|
|
|
#scroll {
|
|
border-radius: 0 15px 15px 15px;
|
|
background-color: rgb(255, 255, 255);
|
|
}
|
|
|
|
.title-text {
|
|
font-size: 60px;
|
|
color: white;
|
|
-unity-font-style: bold;
|
|
}
|
|
|
|
.songEntry {
|
|
transition-property: translate, scale;
|
|
transition-duration: 0.2s;
|
|
width: 90%;
|
|
border-radius: 50px 0;
|
|
background-color: #777;
|
|
margin: 15px auto 15px auto;
|
|
border-color: none;
|
|
border-width: 0px;
|
|
}
|
|
|
|
.songEntry:active {
|
|
scale: 0.95;
|
|
}
|
|
|
|
.songEntry:hover {
|
|
translate: 2% 0;
|
|
}
|
|
|
|
.SongEntryContentWrapper {
|
|
margin: 15px;
|
|
flex-direction: row;
|
|
height: 100%;
|
|
}
|
|
|
|
.SongEntryCoverImage {
|
|
height: 200px;
|
|
max-width: 200px;
|
|
margin-right: 20px;
|
|
padding: 20px;
|
|
border-radius: 25px 0;
|
|
}
|
|
|
|
.SongEntryLabelWrapper {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.SongEntryLabel {
|
|
font-size: 28px;
|
|
-unity-text-align: middle-left;
|
|
height: 25%;
|
|
}
|
|
|
|
#unity-dragger {
|
|
border-radius: 10px;
|
|
}
|
|
/*
|
|
#unity-tracker {
|
|
padding: 10px;
|
|
} */
|
|
|
|
#unity-low-button {
|
|
border-radius: 15px 15px 0 0;
|
|
}
|
|
|
|
#unity-high-button {
|
|
border-radius: 0 0 15px 15px;
|
|
} |