49 lines
No EOL
835 B
CSS
49 lines
No EOL
835 B
CSS
.drive-entry {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
width: 10em;
|
|
text-align: center;
|
|
text-wrap: wrap;
|
|
word-break: break-word;
|
|
border-radius: 0.5rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.drive-entry:hover {
|
|
background-color: var(--hover-color);
|
|
}
|
|
|
|
::deep {
|
|
.icon .ph {
|
|
display: block;
|
|
vertical-align: middle;
|
|
line-height: 1;
|
|
color: var(--notice-color);
|
|
}
|
|
}
|
|
|
|
.labels {
|
|
width: 100%;
|
|
margin-bottom: -1.5rem;
|
|
z-index: +1;
|
|
text-align: right;
|
|
}
|
|
|
|
::deep {
|
|
.labels .ph {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
line-height: 1;
|
|
color: var(--notice-color);
|
|
}
|
|
}
|
|
|
|
img.thumbnail {
|
|
display: block;
|
|
height: 5em;
|
|
width: auto;
|
|
aspect-ratio: 3/2;
|
|
object-fit: contain;
|
|
} |