summaryrefslogtreecommitdiff
path: root/style.css
blob: 5e31b5e9156e20606ce698b11e7b1a4ee17f8f00 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
body {
  background-color: black;
  color: cyan;
  font-family: Victor Mono;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem;
}

.game {
  width: 80%;
  height: 100%;
}

.feats {
}

.feat {
  margin-bottom: .5rem;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;

  animation-name: textColorPalette;
  animation-duration: .4s;
  animation-iteration-count: infinite;
}

img {
  margin-right: 1rem;
}

@keyframes textColorPalette {
  0% {
    color: #bd00ff;
  }
  25% {
    color: #fcee0c;
  }
  50% {
    color: #00ff9f;
  }
  75% {
    color: #d600ff;
  }
  100% {
    color: #00b8ff;
  }
}