MediaWiki:Common.css:修订间差异
跳转到导航
跳转到搜索
无编辑摘要 |
无编辑摘要 |
||
| 第1行: | 第1行: | ||
/* | /* 默认状态:无下划线,有过渡效果 */ | ||
a { | |||
text-decoration: none; | |||
transition: all 0.3s ease; | |||
} | |||
/* 悬停状态:无下划线,但放大并变色 */ | |||
a:hover { | a:hover { | ||
text-decoration: none; /* 这行必须保留,确保悬停时也不出现 */ | |||
transform: scale(1.1); | |||
color: #ff6600; | |||
} | } | ||
2026年7月8日 (三) 01:46的版本
/* 默认状态:无下划线,有过渡效果 */
a {
text-decoration: none;
transition: all 0.3s ease;
}
/* 悬停状态:无下划线,但放大并变色 */
a:hover {
text-decoration: none; /* 这行必须保留,确保悬停时也不出现 */
transform: scale(1.1);
color: #ff6600;
}