• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1.container {
2  justify-content: center;
3  align-items: center;
4}
5
6.title {
7  font-size: 50px;
8}
9
10.button-div {
11  padding-top: 50px;
12  align-items: center;
13  justify-content: center;
14}
15
16.text-div {
17  align-items: center;
18  justify-content: center;
19}
20
21.button {
22  font-size: 30px;
23}
24
25.animate {
26  transform-origin: 20% 40%;
27  transform: translate(0px) ;
28  animation-name: myfirst;
29    animation-delay: 2s;
30    animation-duration: 5s;
31    animation-iteration-count: infinite;
32    animation-timing-function: linear;
33    animation-fill-mode: none;
34}
35@keyframes Go
36{
37  from {
38    transform:translate(0px) rotate(0deg) scale(1.0);
39  }
40  to {
41    transform-style:translate(100px) rotate(180deg) scale(2.0);
42  }
43}