@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* for future reference (and for whoever's checking this out) i put all the banner-related styles in a separate file so i can change it easier,
rather than looking through files. 
who knows, i might optimize it a bit one day. */

.banner {
    background-color: var(--content-color);
    color: var(--bg);
    width: 104%;
    margin-bottom: 10px;
    margin-left: -2%;
    margin-top: -2%;
    min-height: 20%;
    text-align: center;
    padding: 1% 0 1% 0;
    position: relative;
}

/* TODO: get vercel status and change this to "Hosting service is having issues. New articles will not be published until this is resolved." as per vercel status*/
.banner::before {
    content: 'Welcome to The Pitlane Post.'
}

.banner-close {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-flex;
    white-space: nowrap;
    direction: ltr;
    position: absolute;
    right: 1%;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    padding: 0;
}
.noshow {
    visibility: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 0px !important;
}
