#board { display: contents; } #answers { display: contents; } #game { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .5em; } @media only screen and (min-width: 700px) { #game { grid-template-columns: 1fr 1fr 1fr 1fr; } } .box { border: 1px darkslategrey dotted; border-radius: 4px; word-break: break-all; text-overflow: ellipsis; padding: .25em; padding-top: 2em; padding-bottom: 2em; text-align: center; font-family: Cantarell; cursor: pointer; user-select: none; } .box:hover { border: 1px darkslategrey solid; background: #f7f1e4; } .selected { border: 1px darkslategrey solid; background: #cec9bd !important; } #url { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .answer { grid-column-start: 1; grid-column-end: 4; border: 1px darkslategrey dotted; border-radius: 4px; word-break: break-all; text-overflow: ellipsis; padding: .25em; padding-top: 1em; padding-bottom: 1em; text-align: center; font-family: Cantarell; } @media only screen and (min-width: 700px) { .answer { grid-column-end: 5; } } .answerline { font-weight: bold; font-size: large; } .definition { font-size: small; } .source { float: right; font-size: small !important; font-style: normal; } .flag { font-size: small; font-weight: normal; } .flagged { font-size: small; font-weight: normal; font-style: italic; }