用户:MashKJo/common.css
注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。
- Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
- Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
- Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
- Opera:按 Ctrl-F5。
/* 巡查按钮(引用自Salt lovely的css) */
.patrollink{
text-shadow: 0 0 1px #222;
position: relative;
}
.patrollink:after{
content: '';
pointer-events:none;
position: absolute;
display: inline-block;
width: 5em;height: 5em;
top: calc(50% - 2.5em);left: calc(50% - 2.5em);
border-radius: 4em;
box-shadow: 0 4px 0 #7fda inset, 0 -4px 0 #6cf6 inset;
animation: rotate-360 2s linear infinite;
transition:0.5s ease;
}
.patrollink:hover:after{
width: 7em;height: 7em;
top: calc(50% - 3.5em);left: calc(50% - 3.5em);
box-shadow: 0 6px 3px #7fda inset, 0 -6px 3px #6cf6 inset;
}