File size: 1,368 Bytes
a6ec9cb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Auto-Settings Styling */
#auto_save_settings ~ button {
    margin: 5px;
}
#auto_save_settings:not(:checked) ~ button {
    display: none;
}

.form-table {
    margin: auto;
}

.form-table th {
    padding-top: 15px;
    padding-bottom: 5px;
}

.form-table td:first-child > *,
.form-table th:first-child > * {
    float: right;
    white-space: nowrap;
}

.form-table td:last-child > *,
.form-table th:last-child > * {
    float: left;
}


.parameters-table {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.parameters-table > div {
    background: var(--background-color2);
    display: flex;
    padding: 0px 4px;
}

.parameters-table > div > div {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parameters-table small {
    color: rgb(153, 153, 153);
}

.parameters-table > div > div:nth-child(1) {
    font-size: 20px;
    width: 45px;
}

.parameters-table > div > div:nth-child(2) {
    flex: 1;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: start;
    gap: 4px;
}

.parameters-table > div > div:nth-child(3) {
    text-align: right;
}

.parameters-table > div:first-child {
    border-radius: 12px 12px 0px 0px;
}

.parameters-table > div:last-child {
    border-radius: 0px 0px 12px 12px;
}

.parameters-table .fa-fire {
    color: #F7630C;
}