search.css 766 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* Search pre-loader */
  2. .searchPreload {
  3. padding: 0 .5em;
  4. }
  5. .searchPreload ul {
  6. padding: 0;
  7. }
  8. .searchPreload li {
  9. list-style: none;
  10. }
  11. .fakeResult{
  12. margin: 35px 0;
  13. overflow: hidden;
  14. }
  15. .fakeTitle {
  16. width: 20%;
  17. height: 1.1em;
  18. margin: 5px 0 10px 0;
  19. background-color: #cccccc;
  20. overflow: hidden;
  21. }
  22. .fakeText {
  23. height: 1em;
  24. margin: 5px 0;
  25. background-color: #eaecec;
  26. position: relative;
  27. overflow: hidden;
  28. }
  29. .fakeText:before{
  30. display: block;
  31. position: absolute;
  32. content: "";
  33. width: 40px;
  34. height: 1em;
  35. background-color: #f3f3f3;
  36. animation: loading 3s linear infinite;
  37. }
  38. @keyframes loading {
  39. from {left: 0}
  40. to {left: 100%;}
  41. }