Telethon/client/doc/_static/custom.css

21 lines
298 B
CSS
Raw Normal View History

.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;
}