From c4de24aeac7ab6020ca67b20312bd08c8f207cd7 Mon Sep 17 00:00:00 2001 From: Kevin Lin <kevinl@cs.uw.edu> Date: Mon, 16 Mar 2020 10:37:55 -0700 Subject: [PATCH] _layouts, _sass: Add staffer-meta class --- _layouts/staffer.html | 4 ++-- _sass/custom/staffer.scss | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/_layouts/staffer.html b/_layouts/staffer.html index ed718c5..d5e86af 100644 --- a/_layouts/staffer.html +++ b/_layouts/staffer.html @@ -17,10 +17,10 @@ <p><a href="mailto:{{ page.email }}">{{ page.email }}</a></p> {% endif %} {% if page.section %} - <p class="text-grey-dk-000">Quiz Section: {{ page.section | markdownify | strip_html }}</p> + <p class="staffer-meta">Quiz Section: {{ page.section | markdownify | strip_html }}</p> {% endif %} {% if page.office-hours %} - <p class="text-grey-dk-000">Office Hours: {{ page.office-hours | markdownify | strip_html }}</p> + <p class="staffer-meta">Office Hours: {{ page.office-hours | markdownify | strip_html }}</p> {% endif %} {{ content }} </div> diff --git a/_sass/custom/staffer.scss b/_sass/custom/staffer.scss index 31c9a20..8e87d30 100644 --- a/_sass/custom/staffer.scss +++ b/_sass/custom/staffer.scss @@ -23,3 +23,7 @@ .staffer-pronouns { @extend .label, .text-grey-dk-100, .bg-grey-lt-200; } + +.staffer-meta { + @extend .text-grey-dk-000; +} -- GitLab