mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
16 lines
380 B
CSS
16 lines
380 B
CSS
/* 菜单下划线动画 */
|
|
#theme-hexo .menu-link {
|
|
text-decoration: none;
|
|
background-image: linear-gradient(#928CEE, #928CEE);
|
|
background-repeat: no-repeat;
|
|
background-position: bottom center;
|
|
background-size: 0 2px;
|
|
transition: background-size 100ms ease-in-out;
|
|
}
|
|
|
|
#theme-hexo .menu-link:hover {
|
|
background-size: 100% 2px;
|
|
color: #928CEE;
|
|
}
|
|
|