Telethon/client/doc/_static/custom.css

25 lines
330 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;
}
2023-10-12 20:31:41 +03:00
li {
list-style: circle;
}