Oracle apex login page beautification Tutorial
Oracle apex login page beautification Tutorial Script:
2. Change login page template as go to page level property -> Appearance -> Template Options -> set template page layout as split
3. Download a background image from freepik.com
4. upload this background image in your apex application shared folder:
4. Add the below javascript code to your login page -> page level -> inline -> paste the code
Javascript code:
.t-PageBody--login form#wwvFlowForm{
background:url(#WORKSPACE_FILES#Capture.jpg);
background-repeat:no-repeat;
background-Size:cover;
}
Span.t-Login-logo{
background-image : url( #WORKSPACE_FILES#logo_learn_oracle.png);
background-Size :cover;
width :75px;
height :75px;
}
.t-Login-region{
position:relative;
width:400px;
--height:300px;
margin:0Auto;
background:rgba(165, 145, 145, 0.3);
padding:20px 22px;
border:1px solid;
border-top-color:#fbce4a;
border-left-color:#fbce4a;
border-bottom-color:#fbce4a;
border-right-color:#fbce4a;
border-radius:5%;
}
.t-Login-containerBody {
flex-grow: 0;
BACKGROUND-COLOR: #2E2E2E;
flex-shrink: 0;
flex-basis: auto;
display: flex;
flex-direction: column;
margin-top: auto;
margin-bottom: px;
align-items: center;
}
.t-LoginPage--split .t-Login-container {
background-color: transparent;
}
.t-Form-checkboxLabel, .t-Form-inputContainer .checkbox_group label, .t-Form-inputContainer .radio_group label, .t-Form-label, .t-Form-radioLabel {
color:#fbce4a;
}
.t-Login-region .t-Login-body .apex-item-text {
font-size: 16px;
padding: 4px 36px;
height: 40px;
border-radius: 15px;
}
.a-Button--hot, .t-Button--hot:not(.t-Button--simple), body .ui-button.ui-button--hot, body .ui-state-default.ui-priority-primary {
border-radius: 20px;
}
a-Button--hot:hover, .a-Button--hot:not(:active):focus, .t-Button--hot:not(.t-Button--simple):hover, .t-Button--hot:not(.t-Button--simple):not(:active):focus, body .ui-button.ui-button--hot:hover, body .ui-button.ui-button--hot:not(:active):focus, body .ui-state-default.ui-priority-primary:hover, body .ui-state-default.ui-priority-primary:not(:active):focus {
background-color:#6d5714f2;
}
.a-Icon {
color: yellow;
}
5. Code explanation :
6. Finally Save and run this page.
Enjoy !!
Comments
Post a Comment