LOGIN/REGISTER FORM - nepravilna registracija popravki bugov

This commit is contained in:
Nejc Kovač 2022-07-14 13:19:41 +02:00
parent ab3ae9273b
commit 55a70a308d
2 changed files with 155 additions and 1 deletions

View File

@ -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;

View File

@ -470,4 +470,87 @@ body.login #main .landing_page_window label:first-of-type {
}
//-------------------------------------
// 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;
}
// -----------------------------------------