MediaWiki:Mobile.css: Difference between revisions
no edit summary
imported>Jacob Robertson No edit summary |
imported>Jacob Robertson No edit summary |
||
Line 33: | Line 33: | ||
align-items: center; | align-items: center; | ||
} | } | ||
/***************** SKILLS TABLE ***********************************************************/ | |||
.st-table { | |||
display: grid; | |||
grid-template-rows: auto; | |||
grid-template-columns: 100%; | |||
gap: 2px; | |||
} | |||
.st-table a:link, .st-table a:visited { | |||
color: var(--map-outlines); | |||
} | |||
.st-table a:hover, .st-table a:active { | |||
color: var(--map-hover); | |||
text-decoration: none; | |||
} | |||
.st-header-row { | |||
height: 2em; | |||
} | |||
.st-header-cell { | |||
padding: .75em; | |||
border: 1px solid var(--map-outlines); | |||
font-weight: bold; | |||
background-color: var(--beacons-light); | |||
text-align: center; | |||
color: var(--map-outlines); | |||
} | |||
div.st-header-skills { | |||
background-color: var(--beacons-middle); | |||
color: white; | |||
} | |||
.st-header-guides { | |||
} | |||
.st-header-trails { | |||
} | |||
.st-header-beacons { | |||
} | |||
.st-header-milestones { | |||
} | |||
.st-row { | |||
display: grid; | |||
grid-template-columns: 25% 25% 20% 15% 15%; | |||
gap: 2px; | |||
min-height: 2em; | |||
} | |||
.st-cell { | |||
border: 1px solid var(--map-outlines); | |||
padding: .5em; | |||
} | |||
div.st-skill { | |||
background-color: var(--milestone-darkest); | |||
font-style: italic; | |||
font-weight: bold; | |||
color: white; | |||
} | |||
div.st-skill a { | |||
color: white; | |||
} | |||
div.st-guides { | |||
background-color: var(--milestone-dark); | |||
font-style: normal; | |||
} | |||
div.st-trails { | |||
background-color: var(--milestone-middle); | |||
font-style: normal; | |||
} | |||
div.st-beacons { | |||
background-color: var(--milestone-light); | |||
font-style: normal; | |||
} | |||
div.st-milestones { | |||
background-color: var(--milestone-lightest); | |||
font-style: normal; | |||
} | |||