Decrease the font size of the training guide table

This commit is contained in:
kez 2022-12-22 08:50:39 -08:00 committed by kezzle
parent c5167202ac
commit e795eb788f
2 changed files with 10 additions and 6 deletions

View File

@ -69,6 +69,10 @@ main li {
padding-right: 3.5rem !important;
}
.font-size-1-1-rem {
font-size: 1.1rem !important;
}
.js-filter-dropdowns {
.dropdown {
width: min-content;

View File

@ -13,14 +13,14 @@
<h1>{{ resource['name'] }}</h1>
</div>
<div class="row col resource-table">
<span class="text-muted h5 font-weight-600 col-6 col-lg-2 pl-0 border-bottom">{{ _('Maintained by') }}</span>
<span class="h5 font-weight-600 col-6 col-lg-2 border-bottom">{{ resource['author'] }}</span>
<span class="text-muted font-size-1-1-rem font-weight-600 col-6 col-lg-2 pl-0 border-bottom">{{ _('Maintained by') }}</span>
<span class="font-size-1-1-rem font-weight-600 col-6 col-lg-2 border-bottom">{{ resource['author'] }}</span>
<div class="w-100"></div>
<span class="text-muted h5 font-weight-600 col-6 col-lg-2 pl-0 border-bottom">{{ _('Last updated') }}</span>
<span class="h5 font-weight-600 col-6 col-lg-2 border-bottom">{{ resource['date'] }}</span>
<span class="text-muted font-size-1-1-rem font-weight-600 col-6 col-lg-2 pl-0 border-bottom">{{ _('Last updated') }}</span>
<span class="font-size-1-1-rem font-weight-600 col-6 col-lg-2 border-bottom">{{ resource['date'] }}</span>
<div class="w-100"></div>
<span class="text-muted h5 font-weight-600 col-6 col-lg-2 pl-0">{{ _('Estimated time') }}</span>
<span class="h5 font-weight-600 col-6 col-lg-2">{{ this.estimated_time or 'FIXME: NO TIME ESTIMATE' }}</span>
<span class="text-muted font-size-1-1-rem font-weight-600 col-6 col-lg-2 pl-0">{{ _('Estimated time') }}</span>
<span class="font-size-1-1-rem font-weight-600 col-6 col-lg-2">{{ this.estimated_time or 'FIXME: NO TIME ESTIMATE' }}</span>
</div>
<p class="mb-5">{{ resource['description'] }}</p>
{% if this.objectives %}