37 lines
586 B
CSS
37 lines
586 B
CSS
.title-span{
|
|
display: flex;
|
|
flex-direction: row;
|
|
text-wrap: nowrap;
|
|
}
|
|
|
|
.title-filler-span{
|
|
flex: 1;
|
|
height: 1px;
|
|
margin: auto 0.5em;
|
|
}
|
|
|
|
.emote-panel-list{
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(9em, 1fr));
|
|
padding: 1em;
|
|
justify-items: center;
|
|
}
|
|
|
|
div.emote-panel-list-emote{
|
|
width: 9em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0.5em 0;
|
|
margin: 0.5em;
|
|
}
|
|
|
|
p.emote-list-title{
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.emote-list-media{
|
|
max-height: 8em;
|
|
max-width: 8em;
|
|
margin: auto;
|
|
} |