
.changelog-entry ul {

    display: inline-block;
    list-style: none;
}
.changelog-entry h2, h3, h4, li {
    font-family: 'Fira Code', 'Consolas', 'Courier New', monospace;
    color: rgba(255,255,255,0.8);

}

.changelog-entry h2 {
    margin-top: 10px;
}



.changelog-entry li {


    padding: 2px;
    margin: 2px 0;
    border-radius: 5px;
    box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .5);
}

.changelog-entry {
    display: inline-block;
    background-color: rgba(0,0,0,0.3);
    border-radius: 5px;
    padding: 5px;
    border: 1px solid rgba(0,0,0,1);
    margin: 10px 0;

}

#cursor::after {
    color: rgba(255,255,255,0.8);
    font-weight: bold;
    height: 100%;
    width: 1px;
    display: inline-block;

    content: "|";
    animation: blink 1s steps(2, start) infinite;
}

#notes {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    height: 0;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}