|
2 | 2 | {% if date is not none or location is not none %} |
3 | 3 | <div class="experience-tags{% if inline %} experience-tags-inline{% endif %}{% if centered %} text-center{% endif %}"> |
4 | 4 | {% if inline %} |
5 | | - <p class="text-muted small mb-0"> |
| 5 | + <p class="text-muted mb-0"> |
6 | 6 | {% if date is not none %}{{date}}{% endif %} |
7 | 7 | {% if date is not none and location is not none %} • {% endif %} |
8 | 8 | {% if location is not none %}{{location}}{% endif %} |
9 | 9 | </p> |
10 | 10 | {% else %} |
11 | 11 | {% if date is not none %} |
12 | | - <p class="text-muted small mb-0">{{date}}</p> |
| 12 | + <p class="text-muted mb-0">{{date}}</p> |
13 | 13 | {% endif %} |
14 | 14 | {% if location is not none %} |
15 | | - <p class="text-muted small mb-0">{{location}}</p> |
| 15 | + <p class="text-muted mb-0">{{location}}</p> |
16 | 16 | {% endif %} |
17 | 17 | {% endif %} |
18 | 18 | </div> |
|
22 | 22 | {% macro heading_vertical(institution, role, extra, description=none, centered=false) -%} |
23 | 23 | <div class="experience-heading-vertical{% if centered %} text-center{% endif %}"> |
24 | 24 | {% if institution is not none %} |
25 | | - <h5 class="mb-0 m-0 p-0">{{institution}}</h5> |
| 25 | + <div class="experience-heading-institution">{{institution}}</div> |
26 | 26 | {% endif %} |
27 | 27 | {% if role is not none %} |
28 | | - <p class="mb-0 fw-light">{{role}}</p> |
| 28 | + <p class="experience-heading-role">{{role}}</p> |
29 | 29 | {% endif %} |
30 | 30 | {% if extra is not none %} |
31 | | - <p class="mb-0 small text-muted">{{extra}}</p> |
| 31 | + <p class="experience-heading-extra text-muted">{{extra}}</p> |
32 | 32 | {% endif %} |
33 | 33 | {% if description is not none %} |
34 | | - <p class="experience-description small text-muted mb-0">{{description}}</p> |
| 34 | + <p class="experience-description text-muted">{{description}}</p> |
35 | 35 | {% endif %} |
36 | 36 | </div> |
37 | 37 | {%- endmacro %} |
38 | 38 |
|
39 | 39 | {% macro heading_inline(institution, role, extra, description=none) -%} |
40 | 40 | <span class="experience-inline-desktop"> |
41 | | - {% if role is not none %}<span class="experience-inline-role fw-light">{{role}}</span>{% endif %} |
| 41 | + {% if role is not none %}<span class="experience-inline-role">{{role}}</span>{% endif %} |
42 | 42 | {% if role is not none and institution is not none %} |
43 | 43 | <span class="experience-inline-divider"> - </span> |
44 | 44 | {% endif %} |
45 | | - {% if institution is not none %}<span class="experience-inline-institution h5 mb-0 m-0 p-0">{{institution}}</span>{% endif %} |
| 45 | + {% if institution is not none %}<span class="experience-inline-institution">{{institution}}</span>{% endif %} |
46 | 46 | {% if extra is not none %} |
47 | | - <span class="experience-inline-extra text-muted small">{{extra}}</span> |
| 47 | + <span class="experience-inline-extra text-muted">{{extra}}</span> |
48 | 48 | {% endif %} |
49 | 49 | </span> |
50 | 50 | {% if description is not none %} |
51 | | -<span class="experience-description experience-inline-description text-muted small">{{description}}</span> |
| 51 | +<span class="experience-description experience-inline-description text-muted">{{description}}</span> |
52 | 52 | {% endif %} |
53 | 53 | <span class="experience-inline-mobile"> |
54 | 54 | {% if institution is not none %} |
55 | | - <span class="experience-mobile-institution h5 mb-0 m-0 p-0">{{institution}}</span> |
| 55 | + <span class="experience-mobile-institution">{{institution}}</span> |
56 | 56 | {% endif %} |
57 | 57 | {% if role is not none %} |
58 | | - <span class="experience-mobile-role fw-light">{{role}}</span> |
| 58 | + <span class="experience-mobile-role">{{role}}</span> |
59 | 59 | {% endif %} |
60 | 60 | {% if extra is not none %} |
61 | | - <span class="experience-mobile-extra text-muted small">{{extra}}</span> |
| 61 | + <span class="experience-mobile-extra text-muted">{{extra}}</span> |
62 | 62 | {% endif %} |
63 | 63 | {% if description is not none %} |
64 | | - <span class="experience-description experience-mobile-description text-muted small">{{description}}</span> |
| 64 | + <span class="experience-description experience-mobile-description text-muted">{{description}}</span> |
65 | 65 | {% endif %} |
66 | 66 | </span> |
67 | 67 | {%- endmacro %} |
|
0 commit comments