65 lines
1,005 B
CSS
65 lines
1,005 B
CSS
.title-span{
|
|
display: flex;
|
|
flex-direction: row;
|
|
text-wrap: nowrap;
|
|
user-select: none;
|
|
}
|
|
|
|
.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));
|
|
flex-direction: column;
|
|
padding: 1em;
|
|
justify-items: center;
|
|
}
|
|
|
|
div.emote-panel-list-emote{
|
|
width: 9em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0.5em 0;
|
|
margin: 0.5em;
|
|
user-select: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
div.emote-panel-list-big-emote{
|
|
width: 100%;
|
|
margin: 0.5em auto;
|
|
}
|
|
|
|
p.emote-list-title{
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.emote-list-media{
|
|
max-height: 8em;
|
|
max-width: 8em;
|
|
margin: auto;
|
|
}
|
|
|
|
.emote-list-big-media{
|
|
max-height: 80VH;
|
|
max-width: 100%;
|
|
margin: 0.5em;
|
|
}
|
|
|
|
div.panel-control-prompt{
|
|
margin: 0.5em;
|
|
flex: 1;
|
|
}
|
|
|
|
#emote-panel-personal-prompts{
|
|
display: flex;
|
|
}
|
|
|
|
#new-emote-button{
|
|
margin-left: 0.3em;
|
|
} |