blob: 76297a9eba4ee4e085ce330ac66c245d533a158b (
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
 | p {
  font-size: 2rem;
  margin: 0;
}
.bold {
  font-weight: 600;
}
#loginBox {
  display: inline-grid;
  grid-template: "username-label username-input" auto
                 "password-label password-input" auto
                 "login-button login-button" auto
                 "message message" auto
                 / max-content max-content;
  align-items: center;
  padding: 10px;
  border: solid black 1px;
}
#usernameLabel {
  grid-area: username-label;
}
#usernameInput {
  grid-area: username-input;
  margin: 2px;
}
#passwordLabel {
  grid-area: password-label;
}
#passwordInput {
  grid-area: password-input;
  margin: 2px;
}
#loginButton {
  grid-area: login-button;
  justify-self: end;
}
#loginMessage {
  grid-area: message;
  justify-self: end;
  color: red;
}
 |