@charset "UTF-8";
/* THIS MAKES THE BOX SCROLL */
.my-scroll-box {
    width: 300px;         /* Change this to make the box wider or narrower */
    height: 250px;        /* Change this to make the box taller or shorter */
    background: #ffffff;  /* Background color of the box */
    color: #000000;       /* Text color */
    border: 2px solid #ffffff; /* The classic box outline */
    padding: 15px;
    
    overflow-y: scroll;   /* MANDATORY: This forces the vertical scrollbar */
}

/* Optional look for the entry text inside the box */
.blog-entry {
    margin-bottom: 15px;
    border-bottom: 1px dashed #444;
    padding-bottom: 10px;
}
.entry-date {
    font-weight: bold;
    color: #000000;
    font-size: 0.85rem;
}
