style.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. height: 3000px;
  8. }
  9. #banner {
  10. width: 100vw;
  11. height: 500px;
  12. background-image: url("https://fakeimg.pl/1650x600/");
  13. background-size: cover;
  14. background-repeat: no-repeat;
  15. background-position: 40% 50%;
  16. }
  17. .marquee {
  18. margin: 100px auto;
  19. height: 100px;
  20. width: 1000px;
  21. overflow: hidden;
  22. position: relative;
  23. font-size: 48px;
  24. #marquee-box {
  25. display: block;
  26. width: 200%;
  27. height: 75px;
  28. position: absolute;
  29. overflow: hidden;
  30. animation: marquee 5s linear infinite;
  31. .span {
  32. float: left;
  33. width: 50%;
  34. }
  35. @keyframes marquee {
  36. 0% {
  37. left: 0;
  38. }
  39. 100% {
  40. left: -100%;
  41. }
  42. }
  43. }
  44. }
  45. #tag{
  46. width: 100vw;
  47. text-align: center;
  48. .btn{
  49. padding: 15px;
  50. width: 100px;
  51. margin: 30px;
  52. background-color:#CE0000;
  53. font-size: 24px;
  54. color:#fff;
  55. border: none;
  56. }
  57. }
  58. #Search-result{
  59. .result-box{
  60. }
  61. }