| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421 |
- /* For login and error pages */
- #wrapper {
- .container {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- height: 100%;
-
- @media (min-width: 991px) {
- min-height: 100vh;
- }
- }
- }
- .login-header {
- padding: 12px;
- img {
- height: 40px;
- max-height: 40px;
- }
- a {
- text-decoration: none;
- span {
- font-size: 1.7em;
- color: @baseHeadingcolor;
- font-weight: 900;
- white-space: nowrap;
- }
- }
- }
-
-
- .login-container {
- width: 380px;
- max-width:380px;
- @media (max-width: 990px) {
- margin-top: 8%;
- }
- .lang-btn {
- .btn {
- display: flex;
- align-items: center;
- justify-content: center;
- .iti-flag {
- margin-right: 0.25rem;
- }
- }
- }
-
- #default-captcha-domainchecker {
- p {
- font-size: 70%;
- }
- }
-
- .providerLinkingFeedback {
- margin-top: 1rem;
- }
- .social-or-login {
- margin-top: 1rem;
- position:relative;
- z-index:1;
- text-align: center;
- span {
- display:inline-block;
- background: @gray-lighter;
- padding: 2px 8px;
- color: @link-color;
- font-size: @baseFontSize;
- border-radius: 4px;
- }
-
- &:before {
- content:"";
- display:block;
- position:absolute;
- z-index:-1;
- top:50%;
- left:0;
- right:0;
- border-top: 1px dotted @default-border-color;
- }
- }
-
- .login-copyright-text {
- text-align: center;
- padding: 15px 0;
-
- p {
- margin: 0;
- }
- }
- }
- .login-box {
- position: relative;
- padding: 2rem;
- background: @white;
- overflow:hidden;
- box-shadow: @box-shadow;
- border-radius: 4px;
-
- .page-header {
- margin: -15px 0 15px;
- }
-
- .footer-warp {
- a {
- color: @gray-darker;
- }
- }
-
- .btn-login {
- margin-top: 20px;
- }
-
- .logincontainer {
- p {
- font-size: 80%;
- opacity: 0.80;
- }
- }
-
- h1 {
- line-height: 1.5;
- margin-bottom: 1rem;
- }
-
- h3, .h3 {
- font-size: 18px; color: #000;
- font-weight: 700;
- margin: 60px 0 10px;
- }
-
- .hr {
- border-color: rgba(255, 255, 255, 0.90);
- }
-
- .login-container-register {
- display: flex;
- align-items: center;
- justify-content: center;
- text-decoration: none;
- padding: 1rem;
- border-top: 1px solid @default-border-color;
- margin: 2rem -2rem -2rem;
- background-color: @gray-lighter;
- }
-
- }
- @media (max-width: 500px) {
- .login-container {
- width:95%;
- }
- }
- body {
- &.login, &.error {
- background-image: url("../../images/loginBg.jpg");
- background-position: center center;
- background-repeat: no-repeat;
- background-attachment: fixed;
- background-size: cover;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- z-index: 1;
- margin: 0!important;
-
- &:before {
- background: rgba(255,255,255,255);
- content: "";
- z-index: -1;
- position: fixed;
- height: 100%;
- width: 100%;
- left: 0;
- right: 0;
- top:0;
- opacity:0.9;
-
- }
- }
- &.logo-dark, &.no-img {
- &.login, &.error {
- .login-header {
- a {
- span {
- color: @white;
- }
- }
- }
- .login-container {
- .login-copyright-text, .lang-btn .btn {
- color: @white;
- }
- }
-
- .login-box {
- background: @white;
- }
-
- .logo-light {
- display: none;
- }
- .logo-dark {
- display: block;
- }
-
- .loginpage-with-sidebar {
- .sidebar-container {
- .logo-light {
- display: block;
- }
- .logo-dark {
- display: none;
- }
- }
- }
- }
- }
-
- &.logo-dark {
- &.login, &.error {
- &:before {
- background: darken(@gray-darker, 30%);
- }
- }
- }
-
- &.no-img {
- &.login, &.error {
- background: linear-gradient(90deg,darken(@themeColor, 25%),@themeColor);
- &:before {
- display: none;
- }
- }
- }
-
- &.dark-mode {
- &.login, &.error {
- .login-container {
- .login-copyright-text, .lang-btn .btn {
- color: @white;
- }
- }
- .login-box {
- .login-container-register {
- border-color: @dmbc;
- background-color: @dmb;
- a {
- color: @dmc;
- }
- }
- }
- .loginpage-with-sidebar {
- .sidebar-container {
- .logo-light {
- display: none;
- }
- .logo-dark {
- display: block;
- }
- }
- }
- }
- }
- }
- .loginpage-with-sidebar {
- display: flex;
- flex-direction: row;
- padding: 0;
- overflow: hidden;
- min-height: unset;
- height: 100vh;
-
- &.sidebar-right {
- flex-direction: row-reverse;
- }
- .sidebar-container {
- position: relative;
- width: 33%;
- padding-top: 4rem;
- padding-left: 4rem;
- overflow-x: hidden;
- overflow-y: auto;
- display: flex;
- flex-direction: column;
- box-shadow: rgba(0, 0, 0, 0.45) 10px 0px 71px 1px;
- border-left: 1rem solid @themeColor!important;
- .user_lock_icon {
- font-size: 7rem;
- --fa-primary-opacity: 0.2;
- --fa-secondary-opacity: 1.0;
- --fa-secondary-color: @themeColor;
- margin: 3rem 4rem 0 -4rem;
- padding: 0.50rem 4rem;
- opacity: 0.30;
- }
-
- &::-webkit-scrollbar {
- background-color: transparent;
- }
- .sidebar-content {
- margin-top: auto;
- margin-bottom: auto;
- padding-bottom: 3rem;
- }
- .swiper-container {
- flex-direction: row;
- .swiper-wrapper {
- align-items: flex-start;
- position: relative;
- display: flex;
- flex-direction: row;
- .swiper-slide {
- min-width: 100%;
- padding-right: 4rem;
- margin-bottom: 3rem;
- overflow: hidden;
-
- a {
- text-decoration: none;
- }
-
- p {
- font-size: 18px;
- font-weight: 100;
- }
- h2, h3, {
- line-height: 1.5;
- }
- }
- }
- .swiper-pagination {
- display: flex;
- }
- .swiper-pagination-bullet {
- display: block;
- }
- }
- .header {
- display: inline-block;
- font-size: 1rem;
- padding: 1rem 1rem 0.50rem 0;
- border-bottom: 3px solid @themeColor;
- margin-bottom: 3rem;
- }
- .login-header {
- padding: 0;
- margin-bottom: 3rem;
- a {
- display: flex;
- justify-content: flex-start;
- }
- }
- }
-
- .center-container {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 67%;
- overflow-y: scroll;
-
- .login-container {
- margin-top: auto;
- margin-bottom: auto;
- }
- .login-header {
- display: none;
- align-items: center;
- }
- }
- }
- @media (min-width:992px) and (max-width:1300px) {
- .loginpage-with-sidebar {
- .sidebar-container {
- width: 43%;
- }
- .center-container {
- width: 57%;
- }
- }
- }
- @media (max-width:992px) {
- .loginpage-with-sidebar {
- overflow: auto;
- .center-container {
- max-width: 718px;
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- overflow: unset;
- justify-content: center;
- margin: auto;
- background: transparent;
- padding: 1rem;
- }
- .sidebar-container {
- display: none;
- }
- }
- .center-container {
- .login-container {
- .login-header {
- display: flex;
- }
- }
- }
- }
|