在Blog根目录\source\css\custom.css
(缺少的文件/文件夹直接新建)新增如下样式:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| .category-list-link:hover{ transform: scale(1.1); box-shadow: 10px 10px 15px 2px rgba(0,0,0,.12), 0 0 6px 0 rgba(104, 104, 105, 0.1); border-radius: 15px; padding: 6px 16px; margin-left: 0px; font-size: 16px; transition-duration: 0.15s; //display:flex; } a.category-list-link:before{ top: 10px; width: 18px; height: 18px; content: "📚"; margin-right: 5px; font: normal normal normal 14px/1 FontAwesome; font-size: 15px; line-height: 18px; }
|