blob: 75f9df2ad08d48932ad306cc4b1299e0790ea50a (
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
|
.prompt {
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
}
.prompt > h2 {
margin-bottom: 0px;
margin-top: 0px;
}
.prompt > input {
width: 200px;
border: 0px;
border-bottom: 1px solid var(--colorscheme-gray);
}
.prompt > input:focus {
outline: none;
}
.authButton {
margin-top: 15px;
font-family: "LXGW Marker Gothic", sans-serif;
color: var(--colorscheme-gray);
padding: 3px;
min-width: 100px;
border: 2px solid var(--colorscheme-black);
background-color: var(--colorscheme-white);
cursor: pointer;
}
|