<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Style the info grid container */
.info_grid_container {
    display: grid;
    grid-template-columns: 100%;
    gap: 30px;
    padding: 30px;
    justify-content: center;
}

/* Style the item in the grid */
.info_grid_container &gt; div {
    background-color: var(--color-board);
    border-radius: 15px;
    padding: 20px;
    color: var(--color-font);
    transition: background-color 1s;
}

/* Style the item in the grid */
.info_grid_container &gt; div:hover {
    cursor: pointer;
    background-color: var(--color-select);
}

/* Style the item depending on its classification */
.info_grid_container &gt; .announcement:hover {
    background-color: var(--color-blue);
}

/* Style the classification bar in the item */
.class_bar {
    width: 100%;
    height: 30px;
    font-size: 13px;
    padding: 5px 0px;
    color: var(--color-font);
}

/* Style the classification in the classification bar */
.class_bar &gt; span {
    font-size: 11px;
}

/* Style the title in the item */
.item_title {
    font-size: 20px;
    color: var(--color-font-highlight);
    font-weight: bold;
    padding: 10px 0px;
}

/* Style the image in the item */
.item_image {
    width: 100%;
}

/* Style the contents in the item */
.item_contents {
    display: none;
    font-size: 15px;
    color: var(--color-font-highlight);
    padding: 20px 0px;
}

/* Style the link in the contents in the item */
.item_contents &gt; a:link, .item_contents &gt; a:visited {
    text-decoration: none;
    color: var(--color-highlight);
}

/* Style the modal background*/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--color-background-blur);
    z-index: 3;
}

/* Style the container in the modal background */
.modal &gt; .modal_container {
    background-color: var(--color-board);
    margin: 100px auto;
    padding: 20px;
    width: 80%;
    border-radius: 15px;
}

/* Style the close button in the modal container */
.close {
    color: var(--color-font);
    float: right;
    font-size: 30px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: var(--color-font-highlight);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (min-width: 460px) {
    /* Style the info grid container */
    .info_grid_container {
        grid-template-columns: 400px;
    }
}

@media only screen and (min-width: 1000px) {
    /* Style the info grid container */
    .info_grid_container {
        grid-template-columns: 400px 400px;
    }

    /* Style the container in the modal background */
    .modal &gt; .modal_container {
        width: 800px;
    }
}</pre></body></html>