mirror of
https://github.com/Colin-XKL/Colinx-Blog.git
synced 2026-01-12 02:31:27 +08:00
33 lines
634 B
HTML
33 lines
634 B
HTML
<!-- link style -->
|
|
<style>
|
|
.post-content a {
|
|
transition: background-size 0.1s ease;
|
|
background: linear-gradient(to bottom, transparent 62%, #fff56644 0) center center/0% 75% no-repeat;
|
|
color: #52c41a;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.post-content a:hover {
|
|
background-size: 100% 100%;
|
|
color: #389e0d;
|
|
}
|
|
|
|
.post-content a:active {
|
|
background-size: 80% 100%;
|
|
}
|
|
</style>
|
|
|
|
|
|
<style>
|
|
::selection {
|
|
background: #52c41a44;
|
|
}
|
|
|
|
::-moz-selection {
|
|
background: #52c41a44;
|
|
}
|
|
|
|
::-webkit-selection {
|
|
background: #52c41a44;
|
|
}
|
|
</style> |