main.css

176 lines | 3.352 kB Blame History Raw Download
/* style.css */
/* BASIC STYLINGS
============================================================================= */
body {
    padding-top: 20px;
}

.provider {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
}

.provider:hover {
    background-color: #e3e3e3;
    border-color: #cccccc;
    border-size: 1px;
    padding: 10px;
}

.dropzone{
    margin: auto;
    background-color: #efefef;
    border: 2px dotted #cccccc;
    /*width: 300px;*/
    height: 200px;
    text-align: center;
}

.dz-error-mark{
    display: none;
}
.dz-success-mark{
    display:none;
}
/* form styling */
#form-container {
    /*background: #2f2f2f;*/
    margin-bottom: 20px;
    border-radius: 5px;
    /*text-align: center;*/
}

#form-container .page-header {
    /*background: #151515;*/
    margin: 0;
    /*padding: 30px;*/
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

/* numbered buttons */

#status-buttons a {
    /*color: #FFF;*/
    display: inline-block;
    font-size: 18px;
    margin-right: 10px;
    text-align: center;
    text-transform: uppercase;
}

#status-buttons a:hover {
    text-decoration: none;
}

/* we will style the span as the circled number */
#status-buttons span {
    /*background: #080808;*/
    display: block;
    height: 40px;
    margin: 0 auto 10px;
    padding-top: 9px;
    width: 40px;
    border-radius: 50%;
    /*border: 1px solid #28a4c9;*/
}

/* active buttons turn light green-blue*/
#status-buttons a.active span {
    background: #28a4c9;
    color: white;
    font-weight: bold;
}

/* style.css */
/* ANIMATION STYLINGS
============================================================================= */
#signup-form {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    /*padding: 30px;*/
}

#form-views {
    width: auto;
}

/* basic styling for entering and leaving */
/* left and right added to ensure full width */
#form-views.ng-enter,
#form-views.ng-leave {
    position: absolute;
    left: 30px;
    right: 30px;
    transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
}

/* enter animation */
#form-views.ng-enter {
    -webkit-animation: slideInRight 0.5s both ease;
    -moz-animation: slideInRight 0.5s both ease;
    animation: slideInRight 0.5s both ease;
}

/* leave animation */
#form-views.ng-leave {
    -webkit-animation: slideOutLeft 0.5s both ease;
    -moz-animation: slideOutLeft 0.5s both ease;
    animation: slideOutLeft 0.5s both ease;
}

/* ANIMATIONS
============================================================================= */
/* slide out to the left */
@keyframes slideOutLeft {
    to {
        transform: translateX(-200%);
    }
}

@-moz-keyframes slideOutLeft {
    to {
        -moz-transform: translateX(-200%);
    }
}

@-webkit-keyframes slideOutLeft {
    to {
        -webkit-transform: translateX(-200%);
    }
}

/* slide in from the right */
@keyframes slideInRight {
    from {
        transform: translateX(200%);
    }
    to {
        transform: translateX(0);
    }
}

@-moz-keyframes slideInRight {
    from {
        -moz-transform: translateX(200%);
    }
    to {
        -moz-transform: translateX(0);
    }
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translateX(200%);
    }
    to {
        -webkit-transform: translateX(0);
    }
}