用户:MashKJo/common.css

MashKJo留言 | 贡献2020年7月8日 (三) 21:42的版本 (// Edit via Wikiplus)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-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;
}