-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
80 lines (76 loc) · 954 Bytes
/
app.css
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/** @format */
.bug,
.dark,
.dragon,
.electric,
.fairy,
.fighting,
.fire,
.flying,
.ghost,
.grass,
.ground,
.ice,
.normal,
.poison,
.psychic,
.rock,
.steel,
.water {
width: 100px;
@apply badge text-white font-bold text-center uppercase;
}
.bug {
background-color: #a8b820;
}
.dark {
background-color: #705848;
}
.dragon {
background-color: #7038f8;
}
.electric {
background-color: #f8d030;
}
.fairy {
background-color: #ee99ac;
}
.fighting {
background-color: #c03028;
}
.fire {
background-color: #f08030;
}
.flying {
background-color: #a890f0;
}
.ghost {
background-color: #705898;
}
.grass {
background-color: #78c850;
}
.ground {
background-color: #e0c068;
}
.ice {
background-color: #98d8d8;
}
.normal {
background-color: #a8a878;
}
.poison {
background-color: #a040a0;
}
.psychic {
background-color: #f85888;
}
.rock {
background-color: #b8a038;
}
.steel {
background-color: #b8b8d0;
}
.water {
background-color: #6890f0;
}