diff options
Diffstat (limited to 'Timeline/ClientApp/src/app/home/home.component.css')
-rw-r--r-- | Timeline/ClientApp/src/app/home/home.component.css | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/Timeline/ClientApp/src/app/home/home.component.css b/Timeline/ClientApp/src/app/home/home.component.css deleted file mode 100644 index 76297a9e..00000000 --- a/Timeline/ClientApp/src/app/home/home.component.css +++ /dev/null @@ -1,49 +0,0 @@ -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; -} |