style.css 1.1 KB

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