witchday/styles/TextMessage.css

38 lines
579 B
CSS
Raw Normal View History

.TextMessage {
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 36px;
font-size: 12px;
padding: 4px;
background: var(--menu-background);
border-top: 1px solid var(--menu-border-color);
color: var(--menu-font-color);
}
2024-08-06 15:55:14 +00:00
.TextMessage span {
opacity: 0;
}
.TextMessage span.revealed {
opacity: 1;
}
.TextMessage_p {
margin: 0;
font-size: 12px;
}
.TextMessage_button {
margin: 0;
font-size: 12px;
padding: 0;
-webkit-appearance: none;
background: none;
border: 0;
font-family: inherit;
cursor: pointer;
position: absolute;
right: 2px;
bottom: 0;
}