
/*sidebar container*/

#sidebar-spot {
    position: -webkit-sticky; 
    position: sticky; 

    top: 0;
    left: 0;

    padding-bottom: 5000px;
    overflow: hidden;


    width: 12%; /* Sidebar width */
    height: 100%; /*probably unnecessary*/

    z-index: 1000;

    background-image: linear-gradient(180deg, #9b7a00, #000000 10%);

}

/*sidebar contents*/

.sidebar {
    width: 100%;
    height: 100%;

    padding-top: 31px;
    padding-bottom: 100%;

}

.sidelinks {
    list-style-type: none; /*no stupid bullet point*/
    padding: 15px;
}

.sidelinks li {

}