110 lines
1.8 KiB
Plaintext
110 lines
1.8 KiB
Plaintext
@import "../../../../styles/shadow";
|
|
|
|
.song {
|
|
background: var(--surface-strong);
|
|
width: 100%;
|
|
padding: 10px;
|
|
border-radius: 8px;
|
|
margin-bottom: 10px;
|
|
box-sizing: border-box;
|
|
color: var(--text);
|
|
|
|
@media screen and (max-width: 860px) {
|
|
width: 100vw;
|
|
padding: 10px 20px;
|
|
border-radius: 0;
|
|
box-sizing: border-box;
|
|
margin: -11px -20px 10px;
|
|
border: 1px solid var(--surface-border);
|
|
}
|
|
}
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.song-parts {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
@media screen and (max-width: 860px) {
|
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
}
|
|
@media screen and (max-width: 660px) {
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
}
|
|
@media screen and (max-width: 460px) {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
grid-gap: 10px;
|
|
}
|
|
|
|
.song-part {
|
|
background: var(--surface-strong);
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
transition: var(--transition);
|
|
cursor: pointer;
|
|
outline: 1px solid var(--surface-muted);
|
|
|
|
&:hover {
|
|
outline: 1px solid var(--primary-hover);
|
|
}
|
|
|
|
&.active {
|
|
outline: 1px solid var(--primary-color);
|
|
|
|
.head {
|
|
background-color: var(--primary-color);
|
|
color: var(--text-inverse);
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
.head {
|
|
transition: var(--transition);
|
|
background: var(--surface-muted);
|
|
padding: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.fragment {
|
|
padding: 10px;
|
|
}
|
|
|
|
.div-bottom {
|
|
display: grid;
|
|
gap: 20px;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
|
|
.btn-start-presentation {
|
|
height: 56px;
|
|
}
|
|
|
|
@media screen and (max-width: 860px) {
|
|
gap: 10px;
|
|
grid-template-columns: auto;
|
|
}
|
|
|
|
::ng-deep.mat-form-field-wrapper {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
|
|
.padding-bottom {
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
a {
|
|
font-size: 30px;
|
|
padding: 10px;
|
|
transition: var(--transition);
|
|
|
|
&:hover {
|
|
color: var(--link-color);
|
|
}
|
|
}
|