/**
 * Provides the styling for the topics-index page.
 */

/* Grid for the two tag columns */
.tag-grid {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas: "left right";
}

/* Topics will be placed in one column when width < 480px */
@media (max-width:480px) {
    .tag-grid {
        display: block;
    }
}

/* column-one of tags is to the left */
.column-one {
    grid-area: left;
}

/* column-two of tags is to the right */
.column-two {
    grid-area: right;
}

/* Listed post urls should have smaller text */
li {
    font-size: 15px;
}
