File size: 724 Bytes
cf7c183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
37
38
#search-header{
    margin-top: 15%;
    margin-bottom: 15%;
    display: block;
}

#introduce-header {
    /* margin-top: 10%; */
    /* margin-bottom: 5%; */
    margin: 5% auto;
}

#introduce-header p{
    font-family: "Special Elite", "SF Pro Display", "SF Pro Icons","Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-top: 3%;
}

.results-wrapper{
    position: relative;
    animation: moveRightToLeft 1000s linear infinite;
    display: grid;
    grid-template-columns: repeat(100, 30%);
    grid-template-rows: 1fr;
    grid-auto-flow: row;
}

@keyframes moveRightToLeft {
    0% {
      left: 1000%; 
    }
    100% {
      left: -1000%; 
    }
}

.results-wrapper:hover{
    animation-play-state: paused;
}