You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
725 B
CSS
52 lines
725 B
CSS
.instrument {
|
|
max-height: 100vh;
|
|
max-width: 100vw;
|
|
object-fit: contain;
|
|
margin: 0 auto;
|
|
display: block;
|
|
}
|
|
|
|
.samples {
|
|
width: 100%;
|
|
padding: 0;
|
|
}
|
|
|
|
.samples li {
|
|
display: flex;
|
|
width: 100%;
|
|
font-size: 32px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.samples li > * {
|
|
flex-shrink: 0;
|
|
}
|
|
.samples li:nth-child(even) {
|
|
background:#efefef;
|
|
}
|
|
|
|
.samples li button{
|
|
background-color: white;
|
|
border: 1px solid currentColor;
|
|
padding: 4px;
|
|
width: 32px;
|
|
height: 32px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.samples li button svg{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.download {
|
|
margin-left: auto;
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.samples .description {
|
|
margin: 0 8px;
|
|
flex-shrink: 1;
|
|
|
|
}
|