Files
tplate/web/styles/post/mark.css
Hubert Chen 9fa0631d61
All checks were successful
Build tplate / Build (push) Successful in 4m24s
adjust styles
add `table code {white-space: nowrap}`
rename `post\body.css` to `post\post.css`
2026-05-30 23:18:29 +08:00

12 lines
183 B
CSS

mark {
filter: blur(3px);
color: var(--main-color);
background-color: transparent;
transition: 0.2s ease-in-out;
transition-property: all;
}
mark:hover {
filter: none;
}