Template:Game links/style.css: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* [[Category:Template styles]] */ | |||
.gl-container { | .gl-container { | ||
display: grid; | display: grid; | ||
| Line 10: | Line 11: | ||
font-size: 150%; | font-size: 150%; | ||
font-weight: bold; | font-weight: bold; | ||
background-color: var(--background-color-object-neutral); | |||
border: 1px solid var(--border-color-object-subtle); | |||
padding: 5px; | padding: 5px; | ||
} | } | ||
Latest revision as of 23:02, 6 April 2026
/* [[Category:Template styles]] */
.gl-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
grid-column-gap: 5px;
grid-row-gap: 5px;
text-align: center;
}
.gl-cell {
font-size: 150%;
font-weight: bold;
background-color: var(--background-color-object-neutral);
border: 1px solid var(--border-color-object-subtle);
padding: 5px;
}