

/* MAIN CSS FOR FAF Stocks */

/* Signin page */
html {
    height: 100%;
    box-sizing: border-box;
}

#stockslong {
    width: 300px;
}
#stocks-body {
    background: rgb(24,40,72);
    background: -moz-linear-gradient(90deg, rgb(11, 11, 69) 0%, rgb(96,96,96) 100%);
    background: -webkit-linear-gradient(90deg, rgb(11, 11, 69) 0%, rgb(96,96,96) 100%);
    background: linear-gradient(90deg, rgb(11, 11, 69) 0%, rrgb(96,96,96) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#182848",endColorstr="#4b6cb7",GradientType=1);
    position: relative;
    margin: 0;
    padding-bottom: 3rem;
    min-height: 100%;
}

.stocks-footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* BREAKPOINTS */
/* Small devices (landscape phones, 576px and up)*/
@media (max-width: 576px) {  
    #stockslong {
        width: 250px;
    }
    .stocks-footer {
        bottom: 30px;
    }
}