aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/components/Marquees/Marquee.module.css
blob: 40763f337f383906cc6da8d84344e565e740b663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
.marqueeContainer {
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.marquee {
  position: absolute;
  width: 100%;
  height: 50px;
  margin: 0;
  line-height: 50px;
  text-align: center;
  transform: translateX(100%);
  animation: scroll-left 10s linear infinite;
  text-decoration: underline;
}

@keyframes scroll-left {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(100%);
  }
}