LOGIN/REGISTER FORM - nepravilna registracija popravki bugov
This commit is contained in:
parent
ab3ae9273b
commit
55a70a308d
@ -1404,6 +1404,77 @@ body.login #main .landing_page_window label:first-of-type {
|
|||||||
margin-top: 0px;
|
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 -------------------------------------- */
|
/* GDPR ZAHTEVEK -------------------------------------- */
|
||||||
#main {
|
#main {
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------
|
Loading…
x
Reference in New Issue
Block a user