blob: 41353b269a5d9349ae3a3d59175a2a50655cad5c (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
.popup__overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.8);
display: flex;
justify-content: center;
align-items: center;
}
.popup__overlay.popup--is-multiple {
background-color: rgba(0, 0, 0, 0.25);
}
.popup {
background-image: url('/modules/tuxemon/mods/tuxemon/gfx/ui/background/spyder_empty.png');
background-size: cover;
background-position: center;
}
#status {
color: #fff;
background-color: #000;
padding: 0.25rem;
}
#menu {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
text-align: center;
background-color: beige;
}
#menu > div {
cursor: pointer;
}
#menu > div:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.party__monsters {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
.party__monster {
cursor: pointer;
padding: 1rem;
}
.party__monster:hover {
background-color: rgba(0, 0, 0, 0.1);
}
.party__selection-modes {
display: flex;
justify-content: space-between;
padding: 1rem;
}
.party__selection-modes button[selected] {
border-color: var(--color-success);
}
|