Template:Stakeholder count widget/styles.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 7: | Line 7: | ||
} | } | ||
/* Make each tile a | /* Make each tile look like a centered card */ | ||
.stakeholder-count-widget-tile | .stakeholder-count-widget-tile { | ||
text-align: center; | |||
padding: 10px 0; | padding: 10px 0; | ||
} | } | ||
/* Count styling */ | |||
.stakeholder-count-widget-tile .count { | .stakeholder-count-widget-tile .count { | ||
display: block; | |||
font-size: 1.3em; | font-size: 1.3em; | ||
font-weight: 700; | font-weight: 700; | ||
margin: | margin: 6px 0; | ||
} | } | ||
.stakeholder-count-widget-tile | /* "See ___" links */ | ||
font-size: 0. | .stakeholder-count-widget-tile a { | ||
font-size: 0.9em; | |||
} | } | ||
Revision as of 13:16, 20 November 2025
/* Dashboard layout */
.stakeholder-count-widget {
display: flex;
gap: 1em;
flex-wrap: wrap;
margin: 1em 0;
}
/* Make each tile look like a centered card */
.stakeholder-count-widget-tile {
text-align: center;
padding: 10px 0;
}
/* Count styling */
.stakeholder-count-widget-tile .count {
display: block;
font-size: 1.3em;
font-weight: 700;
margin: 6px 0;
}
/* "See ___" links */
.stakeholder-count-widget-tile a {
font-size: 0.9em;
}