blob: ab7ca7f209b3837a8d66ff943c83d8bd47277b32 (
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
|
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2023 metamuffin <metamuffin.org>
Copyright (C) 2023 tpart
*/
input[type="text"],
input[type="password"] {
border-radius: 7px;
padding: 0.3em;
margin: 0.2em;
border: 2px solid var(--accent-light);
}
form.account {
padding: 3em;
border-radius: 1em;
background-color: var(--background-light);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
form.account h1 {
margin-top: 0px;
}
|