/*
update log!! taken from https://pastebin.com/s1WB4sTn

keyz note: i found this from mikucoded.neocities.org!
*/
/******************************************************************************/

#log,
#log:hover {
    position: fixed;
    top: 140px;
    right: 20px;
    z-index: 3;
    overflow: hidden;
    padding: 5px 5px 5px 5px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 4px 7px #89c4cb;
    width: 20px;
    height: 18px;
}
#log:hover {
    width: 280px;
    height: 400px;
    padding: 5px 5px 5px 5px;
    border-radius: 5px;
    box-shadow: 0 0 7px 10px #89c4cb;
}

#title,
#log:hover #title {
    opacity: 0;
    font: 0 bubblegum;
    height: 20px;
    background: linear-gradient(#61a7c1, white);
    background-clip: text; /* standard property */
    -webkit-background-clip: text; /* WebKit browsers */
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.5px #8094bd;
}
#log:hover #title {
    opacity: 1;
    font: 19px bubblegum;
}

#info,
#log:hover #info {
    opacity: 0;
    height: 0;
    overflow: auto;
    padding-top: 2px;
    font: 0 pixel;
    color: #303030;
    line-height: 10px;
    text-align: left;
}

#log:hover #info {
    opacity: 0.99;
    height: 340px;
    font: 0.67rem pixel;
    line-height: 14px;
}

#log mark,
#log:hover mark {
    opacity: 0;
    font-size: 0;
    background: linear-gradient(#afc5e0, #fff);
    border: 0.7px solid #afdfe0;
    border-radius: 15px;
    padding: 1px 4px 0.5px 4px;
    color: #303030;
}
#log:hover mark {
    opacity: 1;
    font-size: 0.67rem;
}

#log,
#log:hover,
#info,
#log:hover #info,
#title,
#log:hover #title,
#log mark,
#log:hover mark {
    transition: all 0.5s ease-in-out; /* standard property */
    -webkit-transition: all 0.5s ease-in-out; /* WebKit browsers */
    -moz-transition: all 0.5s ease-in-out; /* Firefox (older versions) */
    -o-transition: all 0.5s ease-in-out; /* Opera (older versions) */
}

#log br {
    display: block;
    content: "";
    margin-top: 10px;
}

@font-face {
    font-family: bubblegum;
    src: url(https://dl.dropbox.com/s/lisoxfxadojjlqo/bubblegum.ttf);
}
