-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pf2e-awardxp.css
98 lines (81 loc) · 1.95 KB
/
pf2e-awardxp.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
.destinations {
display: flex;
flex-wrap: wrap; /* Allow items to wrap to the next line */
margin-bottom: 10px;
justify-content: center;
}
.hero {
display: flex;
flex-direction: column;
align-self: auto;
align-items: center; /* Vertical alignment */
padding: 0 10px; /* Adjust margin between hero elements */
flex-basis: 25%; /* Each hero takes up 25% of the container width, allowing 4 heroes in a row */
box-sizing: border-box; /* Include padding and border in the total width */
text-align: center;
width:60px;
}
.hero img {
border:none;
height: 50px;
width: 50px;
}
/* Additional styling for better spacing and alignment */
.hero label {
margin-top: 10px; /* Adjust the margin as needed */
}
.hero .token {
margin-bottom: 5px; /* Adjust the margin as needed */
}
.hero .name {
min-width: 20px;
display: block;
}
.pf2eawardxp .form-group {
display: flex;
align-items: center;
justify-content: flex-end;
margin-bottom: 15px; /* Adjust the margin as needed for spacing between form groups */
}
.pf2eawardxp .form-group label {
margin-right: 10px; /* Adjust the margin between label and input as needed */
text-align: right;
flex:0;
width:200px;
}
.pf2eawardxp .form-group select {
width: 250px;
flex:1;
max-width: 300px;
}
.pf2eawardxp .form-group input {
width: 250px;
flex:1;
max-width: 300px;
}
.pf2eawardxp .xp-block {
display: flex;
align-items: center;
margin-top: 10px;
}
.pf2eawardxp .xp-text {
font-weight: bold;
}
.pf2eawardxp .xp-image {
margin: 10px 10px 10px 10px;
width:45px;
height: 45px;
border: none;
}
.pf2eawardxp .recipients-block {
margin-top: 20px; /* Adjust the margin as needed */
}
.pf2eawardxp .recipient-list {
list-style: none;
padding: 0;
margin: 0;
}
.pf2eawardxp .recipient-list li {
display: inline;
margin-right: 10px; /* Adjust the margin as needed */
}