From 1942f11d5ee6926ad93dc1b79fae18325ba5de18 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 23 Jun 2020 14:49:20 +0200 Subject: Lazy load all routes --- client/src/app/+login/login.component.scss | 66 ++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 client/src/app/+login/login.component.scss (limited to 'client/src/app/+login/login.component.scss') diff --git a/client/src/app/+login/login.component.scss b/client/src/app/+login/login.component.scss new file mode 100644 index 000000000..fde6cc15e --- /dev/null +++ b/client/src/app/+login/login.component.scss @@ -0,0 +1,66 @@ +@import '_variables'; +@import '_mixins'; + +label { + display: block; +} + +input:not([type=submit]) { + @include peertube-input-text(340px); + display: inline-block; + margin-right: 5px; + +} + +input[type=submit] { + @include peertube-button; + @include orange-button; +} + +.create-an-account, .forgot-password-button { + color: pvar(--mainForegroundColor); + cursor: pointer; + transition: opacity cubic-bezier(0.39, 0.575, 0.565, 1); + + &:hover { + text-decoration: none !important; + opacity: .7 !important; + } +} + +.login-form-and-externals { + display: flex; + flex-wrap: wrap; + font-size: 15px; + + form { + margin: 0 50px 20px 0; + } + + .external-login-blocks { + min-width: 200px; + + .block-title { + font-weight: $font-semibold; + } + + .external-login-block { + @include disable-default-a-behaviour; + + cursor: pointer; + border: 1px solid #d1d7e0; + border-radius: 5px; + color: pvar(--mainForegroundColor); + margin: 10px 10px 0 0; + display: flex; + justify-content: center; + align-items: center; + min-height: 35px; + min-width: 100px; + + &:hover { + background-color: rgba(209, 215, 224, 0.5) + } + } + } +} -- cgit v1.2.3