index.css 278 B

1234567891011121314151617181920
  1. .lsx .page-list-ul > li > a:not(:hover) {
  2. text-decoration: none;
  3. }
  4. .lsx .lsx-page-not-exist {
  5. opacity: 0.6;
  6. }
  7. .lsx .lsx-blink {
  8. animation: lsx-fadeIn 1s ease 0s infinite alternate;
  9. }
  10. @keyframes lsx-fadeIn {
  11. 0% {
  12. opacity: 0.2;
  13. }
  14. 100% {
  15. opacity: 0.9;
  16. }
  17. }