From 5df6f6f46e74bdf3a27ea2f4b2bba1af13a8a123 Mon Sep 17 00:00:00 2001 From: Blandine Bajard <83599148+BlandineBajard@users.noreply.github.com> Date: Tue, 25 Jan 2022 17:18:51 +0100 Subject: [PATCH 1/2] css component signin --- .../components/signin/signin.component.html | 26 +++++----- .../components/signin/signin.component.scss | 51 +++++++++++-------- 2 files changed, 43 insertions(+), 34 deletions(-) diff --git a/src/app/components/signin/signin.component.html b/src/app/components/signin/signin.component.html index 626d9da..69705e6 100644 --- a/src/app/components/signin/signin.component.html +++ b/src/app/components/signin/signin.component.html @@ -3,36 +3,36 @@
-
-
- - diff --git a/src/app/components/signin/signin.component.scss b/src/app/components/signin/signin.component.scss index 153a247..a0793f0 100644 --- a/src/app/components/signin/signin.component.scss +++ b/src/app/components/signin/signin.component.scss @@ -7,25 +7,34 @@ .form-signin { width: 100%; max-width: 330px; - padding: 15px; - margin: auto; - .checkbox { - font-weight: 400; - } - - .form-floating:focus-within { - z-index: 2; - } - - input[type="email"] { - margin-bottom: -1px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - } - - input[type="password"] { - margin-bottom: 10px; - border-top-left-radius: 0; - border-top-right-radius: 0; - } + margin-top: 50px; + margin-left: auto; + margin-right: auto; + border: solid 1px; + border-radius: 10px; + background-color: #fcddec; + border-color: #ef5da8; +} + +.form-floating:focus-within { + z-index: 2; +} + +input[type="email"] { + margin-bottom: -1px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +input[type="password"] { + margin-bottom: 10px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.btn-outline-success { + margin-top: 10px; + margin-bottom: 5px; + background-color: #ffff; + color: #ef5da8 !important; + border-color: #ef5da8 !important; } From 88fd522f0034edc7805735043eeb0b6f095cf365 Mon Sep 17 00:00:00 2001 From: Blandine Bajard <83599148+BlandineBajard@users.noreply.github.com> Date: Tue, 25 Jan 2022 17:46:18 +0100 Subject: [PATCH 2/2] css component header --- .../components/header/header.component.html | 4 +-- .../components/header/header.component.scss | 31 ++++++++++++++++++- 2 files changed, 32 insertions(+), 3 deletions(-) diff --git a/src/app/components/header/header.component.html b/src/app/components/header/header.component.html index 347e558..7e79e47 100644 --- a/src/app/components/header/header.component.html +++ b/src/app/components/header/header.component.html @@ -2,9 +2,9 @@
Organizee
- \ No newline at end of file + diff --git a/src/app/components/header/header.component.scss b/src/app/components/header/header.component.scss index d03081d..61ed3ff 100644 --- a/src/app/components/header/header.component.scss +++ b/src/app/components/header/header.component.scss @@ -1,4 +1,33 @@ .navbar-brand { position: absolute; - margin-left: 10%; + margin-left: 12%; + font-family: Arial, Helvetica, sans-serif; + font-weight: bold; + font-size: 3rem; + color: #5d5fef; +} + +a:visited { + color: #5d5fef; +} + +a:focus { + border-bottom: 1px solid; + background: #a5a6f6; +} + +a:hover { + color: #7879f1; +} + +a:active { + color: #5d5fef; +} + +.navbar-nav { + height: 6rem; +} + +#img { + margin-left: 50%; }