This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/styles/songInfo.module.css

80 lines
1.0 KiB
CSS
Raw Normal View History

2022-10-10 12:14:25 +00:00
.songInfoContainer {
display: flex;
position: fixed;
2022-10-14 19:00:47 +00:00
bottom: 0;
left: 0;
2022-10-10 12:14:25 +00:00
margin-left: 5px;
margin-bottom: 5px;
}
.songInfoContainer img {
border-radius: 5%;
}
.songInfo {
margin-left: 10px;
}
.songInfoSongName {
2022-10-11 13:22:01 +00:00
font-size: 30px;
2022-10-10 12:14:25 +00:00
font-weight: bold;
}
.songInfoSongAuthor {
2022-10-11 13:22:01 +00:00
font-size: 22px;
margin-top: -12px;
2022-10-11 13:22:01 +00:00
margin-bottom: -3px;
line-height: 1.2em;
2022-10-10 12:14:25 +00:00
}
.songInfoSongOtherContainer {
display: flex;
margin-top: 6px;
}
.songInfoDiff {
font-size: 22px;
2022-10-10 12:14:25 +00:00
padding: 0px 4px;
width: fit-content;
border-radius: 5%;
font-weight: bold;
2022-10-11 13:22:01 +00:00
margin-bottom: 12px;
line-height: 1.2em;
2022-10-10 12:14:25 +00:00
}
.songInfoBsr {
font-size: 22px;
2022-10-10 12:14:25 +00:00
margin-left: 10px;
2022-10-11 13:22:01 +00:00
line-height: 1.2em;
2022-10-10 12:14:25 +00:00
}
.songTimeContainer {
width: 200px;
display: grid;
}
.songTimeBackground {
grid-column: 1;
grid-row: 1;
z-index: 1;
padding: 3px;
width: 100%;
background-color: white !important;
}
.songTime {
grid-column: 1;
grid-row: 1;
z-index: 2;
padding: 3px;
background-color: red !important;
}
.songTimeText {
2022-10-11 13:22:01 +00:00
margin-top: -10px;
font-size: 20px;
2022-10-14 19:00:47 +00:00
}