This repository has been archived on 2023-02-05. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
sakura-hugo-theme/static/css/soudan.css
2022-07-22 18:31:47 -07:00

25 lines
509 B
CSS

.soudan-comment {
display: flex;
gap: 0.5em;
}
.soudan-comment > div {
width: 100%;
}
@keyframes soudan-highlighted {
from { background: rgba(255, 255, 0, 0.25); }
to { background: rgba(255, 255, 0, 0); }
}
.soudan-highlighted {
background: rgba(255, 255, 0, 0.25);
border-radius: 0.25em;
animation-name: soudan-highlighted;
animation-duration: 4s;
animation-delay: 2s;
animation-fill-mode: forwards;
}
.soudan-avatar {
border-radius: 100%;
width: 60px;
height: 60px;
background-color: gray;
}