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.
61 lines
812 B
CSS
61 lines
812 B
CSS
.instrument {
|
|
max-height: 100vh;
|
|
max-width: 100vw;
|
|
object-fit: contain;
|
|
margin: 0 auto;
|
|
display: block;
|
|
position: relative;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.print svg {
|
|
background-color: white;
|
|
border: 1px solid currentColor;
|
|
padding: 4px;
|
|
width: 32px;
|
|
height: 32px;
|
|
display: inline-block;
|
|
}
|