X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=otf-frontend%2Fclient%2Fsrc%2Fapp%2Flogin%2Flogin.component.scss;fp=otf-frontend%2Fclient%2Fsrc%2Fapp%2Flogin%2Flogin.component.scss;h=215e85f1d893bf857971034c34ed7c0eb7bb60b7;hb=14f6f95c84a4a1fa8774190db4a03fd0214ec55f;hp=0000000000000000000000000000000000000000;hpb=f49bd1efeaaddd4891c1f329b18d8cfb28b3e75b;p=it%2Fotf.git diff --git a/otf-frontend/client/src/app/login/login.component.scss b/otf-frontend/client/src/app/login/login.component.scss new file mode 100644 index 0000000..215e85f --- /dev/null +++ b/otf-frontend/client/src/app/login/login.component.scss @@ -0,0 +1,112 @@ +/* Copyright (c) 2019 AT&T Intellectual Property. # +# # +# Licensed under the Apache License, Version 2.0 (the "License"); # +# you may not use this file except in compliance with the License. # +# You may obtain a copy of the License at # +# # +# http://www.apache.org/licenses/LICENSE-2.0 # +# # +# Unless required by applicable law or agreed to in writing, software # +# distributed under the License is distributed on an "AS IS" BASIS, # +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # +# See the License for the specific language governing permissions and # +# limitations under the License. # +##############################################################################*/ + + +$topnav-background-color: #222; +:host { + display: block; +} +.login-page { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + overflow: auto; + background: $topnav-background-color; + text-align: center; + color: #fff; + padding: 3em; + .col-lg-4 { + padding: 0; + } + .input-lg { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 0; + } + .input-underline { + background: 0 0; + border: none; + box-shadow: none; + border-bottom: 2px solid rgba(255, 255, 255, 0.5); + color: #fff; + border-radius: 0; + } + .input-underline:focus { + border-bottom: 2px solid #fff; + box-shadow: none; + } + .rounded-btn { + -webkit-border-radius: 50px; + border-radius: 50px; + color: rgba(255, 255, 255, 0.8); + background: $topnav-background-color; + border: 2px solid rgba(255, 255, 255, 0.8); + font-size: 18px; + line-height: 40px; + padding: 0 25px; + } + .rounded-btn:hover, + .rounded-btn:focus, + .rounded-btn:active, + .rounded-btn:visited { + color: rgba(255, 255, 255, 1); + border: 2px solid rgba(255, 255, 255, 1); + outline: none; + } + + h1 { + font-weight: 300; + margin-top: 20px; + margin-bottom: 10px; + font-size: 36px; + small { + color: rgba(255, 255, 255, 0.7); + } + } + + .form-group { + padding: 8px 0; + input::-webkit-input-placeholder { + color: rgba(255, 255, 255, 0.6) !important; + } + + input:-moz-placeholder { + /* Firefox 18- */ + color: rgba(255, 255, 255, 0.6) !important; + } + + input::-moz-placeholder { + /* Firefox 19+ */ + color: rgba(255, 255, 255, 0.6) !important; + } + + input:-ms-input-placeholder { + color: rgba(255, 255, 255, 0.6) !important; + } + } + .form-content { + padding: 30px 0; + } + .user-avatar { + -webkit-border-radius: 50%; + border-radius: 50%; + border: 2px solid #fff; + } + +}