<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://jamesgwyer.com/assets/styles.css');

/* heavily inspired by https://oneminutepark.tv, created by Elliott Cost (https://elliott.computer) */

.channel-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 20px;
}

.block {
    border: 1px solid rgba(0, 0, 0, .25);
    border-radius: 4px;
    padding: 1em;
}

.block:hover { border: 1px solid rgba(0, 0, 0, 1); border-radius: 0; }

.block img {
    max-width: 100%;
    height: auto;
}

.block-title {
    font-weight: bold;
    margin-top: 10px;
}

.block-description {
    color: #666;
    font-size: 0.9em;
}</pre></body></html>