github.com/kubeshop/testkube@v1.17.23/docs/src/theme/NotFound/styles.module.css (about) 1 .results { 2 display: flex; 3 flex-direction: column; 4 height: 100%; 5 width: 100%; 6 text-align: start; 7 padding-left: 0; 8 } 9 10 .results li:nth-child(1) { 11 animation-delay: 0.15s; 12 } 13 .results li:nth-child(2) { 14 animation-delay: 0.3s; 15 } 16 .results li:nth-child(3) { 17 animation-delay: 0.45s; 18 } 19 .results li:nth-child(4) { 20 animation-delay: 0.6s; 21 } 22 .results li:nth-child(5) { 23 animation-delay: 0.75s; 24 } 25 26 .results li { 27 list-style: none; 28 margin-bottom: 1rem; 29 animation-delay: 0.5s; 30 animation: fadeInAndShift 0.5s ease-in-out; 31 animation-fill-mode: both; 32 } 33 34 .results li:hover a::after { 35 transform: translateX(5px); 36 } 37 38 .results li a::after { 39 display: inline-block; 40 content: '>'; 41 margin-left: 0.5rem; 42 text-decoration: none; 43 transition: all 0.3s ease-in-out; 44 } 45 46 @keyframes fadeIn { 47 0% { 48 opacity: 0; 49 } 50 100% { 51 opacity: 1; 52 } 53 } 54 55 @keyframes fadeInAndShift { 56 0% { 57 opacity: 0; 58 transform: translateY(20px); 59 } 60 100% { 61 opacity: 1; 62 transform: translateY(0px); 63 } 64 }