Telethon/client/doc/_static/custom.css
2023-09-30 17:13:24 +02:00

21 lines
298 B
CSS

.underline {
text-decoration: underline;
}
.strikethrough {
text-decoration: line-through;
}
.spoiler {
border-radius: 5%;
padding: 0.1em;
background-color: gray;
color: gray;
transition: all 200ms;
}
.spoiler:hover {
background-color: unset;
color: unset;
}