home to your local SPACEGIRL 馃挮
arimelody.space
1@import url("/admin/static/index.css");
2
3div.card {
4 margin-bottom: 2rem;
5}
6
7label {
8 width: auto;
9 margin: 0;
10 display: flex;
11 align-items: center;
12 color: inherit;
13}
14form#change-password input,
15form#delete-account input {
16 width: 20em;
17 min-width: auto;
18 max-width: calc(100% - 1em - 2px);
19 margin: .5rem 0;
20 padding: .3rem .5rem;
21 display: block;
22 border-radius: 4px;
23 border: 1px solid #808080;
24 font-size: inherit;
25 font-family: inherit;
26 color: inherit;
27}
28
29.mfa-device {
30 padding: .75em;
31 margin-bottom: .5em;
32 display: flex;
33 justify-content: space-between;
34
35 color: var(--fg-3);
36 background: var(--bg-2);
37 box-shadow: var(--shadow-md);
38 border-radius: 16px;
39}
40
41.mfa-device div {
42 display: flex;
43 flex-direction: column;
44 justify-content: center;
45}
46
47.mfa-device p {
48 margin: 0;
49}
50
51.mfa-device .mfa-device-name {
52 font-weight: bold;
53}
54
55.mfa-device form input {
56 display: none !important;
57}
58
59.mfa-actions {
60 display: flex;
61 flex-direction: row;
62 gap: .5em;
63 flex-wrap: wrap;
64}