blob: bc7ee0dc44c397ffd7f319dcfe2676bee32c36df (
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
|
table {
border-collapse: collapse;
border: 1px solid black;
width: 60%;
}
tr {
border: 1px solid black;
}
td {
border: 1px solid black;
padding: 2px;
width: 30%;
font-family: "Rubik Dirt", system-ui;
color: var(--colorscheme-gray);
}
input {
font-family: "Rubik Dirt", system-ui;
width: 99%;
border: 0px;
border-bottom: 1px solid var(--colorscheme-gray);
}
.WeaponPage {
flex-grow: 1;
}
.WeaponPage > span {
display: flex;
}
.DmgInput {
max-width: 40%;
}
.NameEdit {
font-size: 30px;
margin-bottom: 10px;
}
td > select {
width: 100%;
border: 0px;
background: var(--colorscheme-white);
font-family: "LXGW Marker Gothic", sans-serif;
}
.descPanel > * {
margin-right: 5px;
}
.descriptionInput {
height: 10rem;
width: 80%;
}
|