_login.scss 2.31 KB
// Broker login page CSS

#login-wrap {
    min-height : 400px;
    background: #ffffff;
    #container {
        margin : 100px auto;
        width  : 400px;

        h2 {
            font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
            font-size   : 30px;
            color       : #0096d6;
            padding     : 20px 20px 10px 20px;
        }

        #login-error {
            background-color : #FFEBE8;
            border           : 1px solid #C00;
            padding          : 20px;
            width            : 300px;
            margin-bottom    : 25px;
            p {
                padding : 0;
            }
        }
        label {
            display : block;
        }

        input[type=text], input[type=password] {
            width : 230px;
        }

        p {
            font-family: "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
            font-size   : 12px;
            color       : #706f73;
            padding     : 0 20px 0 20px;
        }

 
    }
}

// Member password reset page CSS

#password-wrap {
    min-height : 400px;

    #container {
        margin : 100px auto;
        width  : auto;

        @media screen and (min-width: $bp-large) {
            width  : 400px;
        }

        h2 {
            font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
            font-size   : 30px;
            color       : #0096d6;
            padding     : 20px 20px 10px 20px;
        }

        label {
            display : block;
        }

        input[type=text], input[type=password] {
            width : 230px;
        }

        p {
            font-family: "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
            font-size   : 12px;
            color       : #706f73;
            padding     : 0 20px 0 20px;
        }

    
    }
}

// 404 page design
.search {
    margin-top : 20px;
    label {
        font-family: "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
        font-size   : 13px;
        color       : #706f73;

    }

    #input-s {
        width : 250px;
    }
}

.submit {
    margin-top : 20px;
    input {
        background : #0096d6;
        color      : #ffffff;
        width      : 100px;
        border     : 1px solid #0096d6;
    }

    input:active {
        color      : #0096d6;
        background : none;
    }
}