Skip to content

Commit 415f4c7

Browse files
Remove extra things from faciliators
1 parent f82f11f commit 415f4c7

File tree

3 files changed

+1
-154
lines changed

3 files changed

+1
-154
lines changed

_layouts/staffer.html

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,10 @@ <h3 class="staffer-name" id="{{ page.name | slugify }}">
1111
{%- else -%}
1212
{{ page.name }}
1313
{%- endif -%}
14-
{%- if page.pronouns -%}
15-
<span class="staffer-badge">{{ page.pronouns }}</span>
16-
{%- endif -%}
1714
</h3>
1815

1916
{%- if page.role -%}
20-
<span class="staffer-badge label-{{ page.role }}">{{ page.role }}</span>
21-
{%- endif -%}
22-
23-
{%- if page.email -%}
24-
<p><a href="mailto:{{ page.email }}">{{ page.email }}</a></p>
25-
{%- endif -%}
26-
27-
{%- if page.github -%}
28-
<p><a href="https://github.com/{{ page.github }}">GitHub: @{{ page.github }}</a></p>
29-
{%- endif -%}
30-
31-
{%- if page.linkedin -%}
32-
<p><a href="{{ page.linkedin }}">LinkedIn</a></p>
33-
{%- endif -%}
34-
35-
{%- if page.office_hours -%}
36-
<p class="staffer-meta">Office Hours: {{ page.office_hours | markdownify | strip_html }}</p>
17+
<p class="staffer-role">{{ page.role }}</p>
3718
{%- endif -%}
3819

3920
{{ content }}

_sass/custom.scss

Lines changed: 0 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -47,51 +47,16 @@
4747
}
4848
}
4949

50-
.staffer-badge {
51-
display: inline-block;
52-
background-color: #f6f8fa;
53-
color: #0366d6 !important;
54-
padding: 0.16em 0.56em;
55-
border-radius: 6px;
56-
font-size: 0.8em;
57-
font-weight: 500;
58-
margin-left: 0.5rem;
59-
text-transform: uppercase;
60-
border: 1px solid #e1e4e8;
61-
}
62-
63-
/* Specific styling for pronouns badges (not role badges) */
64-
.staffer-name .staffer-badge {
65-
background-color: #f6f8fa !important;
66-
color: #0366d6 !important;
67-
border: 1px solid #e1e4e8 !important;
68-
}
69-
7050
.staffer-role {
7151
font-weight: 500;
7252
color: #0366d6;
7353
margin: 0.25rem 0;
7454
font-size: 1rem;
7555
}
7656

77-
.staffer-meta {
78-
font-size: 0.9rem;
79-
color: #586069;
80-
margin: 0.25rem 0;
81-
}
82-
8357
p {
8458
margin: 0.25rem 0;
8559
line-height: 1.5;
86-
87-
a {
88-
color: #0366d6;
89-
text-decoration: none;
90-
91-
&:hover {
92-
text-decoration: underline;
93-
}
94-
}
9560
}
9661

9762
// Responsive design
@@ -107,38 +72,7 @@
10772
}
10873
}
10974

110-
/* Role-specific styling */
111-
.label-EdVP {
112-
background-color: #624099 !important;
113-
color: white !important;
114-
border: none !important;
115-
font-size: 0.9em !important;
116-
padding: 0.25em 0.75em !important;
117-
}
11875

119-
.label-Instructor {
120-
background-color: #5e1c82 !important;
121-
color: white !important;
122-
border: none !important;
123-
font-size: 0.9em !important;
124-
padding: 0.25em 0.75em !important;
125-
}
126-
127-
.label-TA {
128-
background-color: #935CBC !important;
129-
color: white !important;
130-
border: none !important;
131-
font-size: 0.9em !important;
132-
padding: 0.25em 0.75em !important;
133-
}
134-
135-
.label-Mentor {
136-
background-color: #006C67 !important;
137-
color: white !important;
138-
border: none !important;
139-
font-size: 0.9em !important;
140-
padding: 0.25em 0.75em !important;
141-
}
14276

14377
/* Responsive design for role containers */
14478
@media (max-width: 768px) {

docs/staff.md

Lines changed: 0 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -54,86 +54,18 @@ description: Meet the CRUP team and instructors.
5454
text-decoration: underline;
5555
}
5656

57-
.staffer-badge {
58-
display: inline-block;
59-
background-color: #f6f8fa;
60-
color: #0366d6 !important;
61-
padding: 0.16em 0.56em;
62-
border-radius: 6px;
63-
font-size: 0.8em;
64-
font-weight: 500;
65-
margin-left: 0.5rem;
66-
text-transform: uppercase;
67-
border: 1px solid #e1e4e8;
68-
}
69-
70-
/* Specific styling for pronouns badges (not role badges) */
71-
.staffer-name .staffer-badge {
72-
background-color: #f6f8fa !important;
73-
color: #0366d6 !important;
74-
border: 1px solid #e1e4e8 !important;
75-
}
76-
7757
.staffer-role {
7858
font-weight: 500;
7959
color: #0366d6;
8060
margin: 0.25rem 0;
8161
font-size: 1rem;
8262
}
8363

84-
.staffer-meta {
85-
font-size: 0.9rem;
86-
color: #586069;
87-
margin: 0.25rem 0;
88-
}
89-
9064
.staffer p {
9165
margin: 0.25rem 0;
9266
line-height: 1.5;
9367
}
9468

95-
.staffer p a {
96-
color: #0366d6;
97-
text-decoration: none;
98-
}
99-
100-
.staffer p a:hover {
101-
text-decoration: underline;
102-
}
103-
104-
/* Role-specific styling */
105-
.label-EdVP {
106-
background-color: #624099 !important;
107-
color: white !important;
108-
border: none !important;
109-
font-size: 0.9em !important;
110-
padding: 0.25em 0.75em !important;
111-
}
112-
113-
.label-Instructor {
114-
background-color: #5e1c82 !important;
115-
color: white !important;
116-
border: none !important;
117-
font-size: 0.9em !important;
118-
padding: 0.25em 0.75em !important;
119-
}
120-
121-
.label-TA {
122-
background-color: #935CBC !important;
123-
color: white !important;
124-
border: none !important;
125-
font-size: 0.9em !important;
126-
padding: 0.25em 0.75em !important;
127-
}
128-
129-
.label-Mentor {
130-
background-color: #006C67 !important;
131-
color: white !important;
132-
border: none !important;
133-
font-size: 0.9em !important;
134-
padding: 0.25em 0.75em !important;
135-
}
136-
13769
/* Responsive design */
13870
@media (max-width: 768px) {
13971
.staffer {

0 commit comments

Comments
 (0)