mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-15 14:06:41 +03:00
25 lines
330 B
CSS
25 lines
330 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;
|
|
}
|
|
|
|
li {
|
|
list-style: circle;
|
|
}
|