diff --git a/frontend/simple/css/style.css b/frontend/simple/css/style.css index d3eb4e551..8307a3f7b 100644 --- a/frontend/simple/css/style.css +++ b/frontend/simple/css/style.css @@ -1404,6 +1404,77 @@ body.login #main .landing_page_window label:first-of-type { margin-top: 0px; } +body.register #main { + background-image: none; +} + +body.register #main .main_content { + padding-top: 70px; +} + +body.register #main .app_subtitle { + text-shadow: unset; + color: #333333; + font-weight: 400; + line-height: 26px; + font-size: 18px; + margin-top: 25px; + margin-bottom: 24px; +} + +body.register #main .landing_page_window { + max-width: 400px; + border: 1px solid #C4C4C4; +} + +body.register #main .landing_page_window .tabs .tab { + background-color: #F8F8F8; + color: #888888; + font-size: 16px; + font-weight: 600; + background-color: unset; + color: #777777; + height: 39px; + display: flex; + justify-content: center; + align-items: center; +} + +body.register #main .landing_page_window .tabs .tab.active { + background-color: #ffffff; + color: #1e88e5; +} + +body.register #main .landing_page_window #login_holder .login_form { + text-align: left; +} + +body.register #main .landing_page_window #login_holder .login_form label:first-of-type { + margin-top: 0px; +} + +body.register #main .landing_page_window #login_holder .login_form .lostpass { + position: unset; +} + +body.register #main .landing_page_window .error_holder { + margin-top: 0px; +} + +body.register #main .landing_page_window input[type=submit] { + width: 100%; + max-width: 100%; + margin: 16px 0px; +} + +body.register #main .landing_page_window #registration_holder { + text-align: left; +} + +body.register #main .landing_page_window label:first-of-type { + margin-top: 0px; +} + /* GDPR ZAHTEVEK -------------------------------------- */ #main { background-color: #FFFFFF; diff --git a/resources/sass/frontend_simple/basic/popravki.scss b/resources/sass/frontend_simple/basic/popravki.scss index c8757de02..a8624fd86 100644 --- a/resources/sass/frontend_simple/basic/popravki.scss +++ b/resources/sass/frontend_simple/basic/popravki.scss @@ -470,4 +470,87 @@ body.login #main .landing_page_window label:first-of-type { } -//------------------------------------- \ No newline at end of file +// REGISTER ---------------------- + +body.register #main{ + background-image: none; +} + +body.register #main .main_content{ + padding-top: 70px; +} + +body.register #main .app_subtitle { + text-shadow: unset; + color: #333333; + + font-weight: 400; + line-height: 26px; + font-size: 18px; + + margin-top: 25px; + margin-bottom: 24px; +} + + +body.register #main .landing_page_window{ + max-width: 400px; + border: 1px solid #C4C4C4; +} + +body.register #main .landing_page_window .tabs .tab { + background-color: $color_background_grey; + color: #888888; + + font-size: 16px; + font-weight: 600; + background-color: unset; + color: #777777; + height: 39px; + display: flex; + justify-content: center; + align-items: center; + + +} +body.register #main .landing_page_window .tabs .tab.active{ + background-color: $color_background; + color: $color_blue; +} + +body.register #main .landing_page_window #login_holder .login_form { + text-align: left; +} + +body.register #main .landing_page_window #login_holder .login_form label:first-of-type{ + margin-top: 0px; +} + +body.register #main .landing_page_window #login_holder .login_form .lostpass { + position: unset; +} + + +body.register #main .landing_page_window .error_holder { + margin-top: 0px; +} + +body.register #main .landing_page_window input[type=submit]{ + width: 100%; + max-width: 100%; + + margin: 16px 0px; + +} + +// napačno geslo - registracija + +body.register #main .landing_page_window #registration_holder { + text-align: left; +} + +body.register #main .landing_page_window label:first-of-type { + margin-top: 0px; +} + +// ----------------------------------------- \ No newline at end of file