60 lines
744 B
CSS
60 lines
744 B
CSS
/* Generic rules */
|
|
.Lms-bg-dark-hover:hover {
|
|
background-color: var(--bs-dark);
|
|
}
|
|
|
|
/* Specific rules */
|
|
body {
|
|
padding-bottom: 78px;
|
|
}
|
|
|
|
.Lms-cover-small {
|
|
width: 64px;
|
|
min-width: 64px;
|
|
}
|
|
|
|
.Lms-notification-container {
|
|
position: fixed;
|
|
bottom: 78px;
|
|
right: 0px;
|
|
}
|
|
|
|
.Lms-player {
|
|
height: 70px;
|
|
}
|
|
|
|
.fixed-bottom.Lms-player {
|
|
z-index: 999;
|
|
}
|
|
|
|
.Lms-entry-playing {
|
|
background-color: var(--bs-dark);
|
|
}
|
|
|
|
.Lms-cover {
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
width: auto;
|
|
height: auto;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
}
|
|
|
|
.Lms-cover-container {
|
|
position: relative;
|
|
}
|
|
|
|
.Lms-responsive-square {
|
|
width: 100%;
|
|
}
|
|
|
|
.Lms-responsive-square:after {
|
|
content: "";
|
|
display: block;
|
|
padding-bottom: 100%;
|
|
}
|