Skip to content

Commit fc69467

Browse files
committed
add colors to publications, change selected awards and academic services to lists
1 parent 1ba2ab4 commit fc69467

File tree

10 files changed

+30
-14
lines changed

10 files changed

+30
-14
lines changed

_awards/announcement_1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ inline: true
55
related_posts: false
66
---
77

8-
Silver Medal (Category D) in Chinese [National Olympiad in Informatics (NOI)](https://en.wikipedia.org/wiki/National_Olympiad_in_Informatics)
8+
Silver Medal (Category D) in Chinese [National Olympiad in Informatics (NOI)](https://en.wikipedia.org/wiki/National_Olympiad_in_Informatics), 2017

_awards/announcement_2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ inline: true
55
related_posts: false
66
---
77

8-
China National Scholarship
8+
China National Scholarship, 2019

_awards/announcement_3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ inline: true
55
related_posts: false
66
---
77

8-
Gold Medal in ICPC Asia Regional Contest (Twice, in Nanjing and Nanchang)
8+
Gold Medal in ICPC Asia Regional Contest (in Nanjing and Nanchang), 2019

_awards/announcement_4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ inline: true
55
related_posts: false
66
---
77

8-
Silver Medal in [International Collegiate Programming Contest (ICPC)](https://icpc.global/) Asia-East Continent Final (Thrice, in 2018, 2019, and 2020)
8+
Silver Medal in [International Collegiate Programming Contest (ICPC)](https://icpc.global/) Asia-East Continent Final, 2018, 2019, and 2020

_awards/announcement_5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ inline: true
55
related_posts: false
66
---
77

8-
Gold Medal in CCF Collegiate Computer Systems & Programming Contest (CCSP)
8+
Gold Medal in CCF Collegiate Computer Systems & Programming Contest (CCSP), 2021

_awards/announcement_6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ inline: true
55
related_posts: false
66
---
77

8-
[China Computer Federation (CCF)](https://www.ccf.org.cn/en/) [Elite Collegiate Award](https://www.ccf.org.cn/en/Awards/CCF_Awards/#:~:text=Elite%20Collegiate%20Award)
8+
[China Computer Federation (CCF)](https://www.ccf.org.cn/en/) [Elite Collegiate Award](https://www.ccf.org.cn/en/Awards/CCF_Awards/#:~:text=Elite%20Collegiate%20Award), 2021

_awards/announcement_7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ inline: true
55
related_posts: false
66
---
77

8-
Outstanding Graduate Student of Beijing
8+
Outstanding Graduate Student of Beijing (for undergraduate), 2022

_data/venues.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
"AJP":
2-
url: https://aapt.scitation.org/journal/ajp
3-
color: "#00369f"
1+
"Preprint":
2+
color: "#e1edfd"
43

54
"ICDT 2024":
65
url: https://dastlab.github.io/edbticdt2024
6+
color: "#4a96f2"
77

88
"STOC 2024":
99
url: http://acm-stoc.org/stoc2024
1010

1111
"TKDE 2024":
1212
url: https://www.computer.org/csdl/journal/tk
13+
color: "#4a96f2"
1314

1415
"SODA 2026":
1516
url: https://www.siam.org/conferences-events/siam-conferences/soda26

_includes/academic_services.liquid

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
{% assign services = site.services | reverse %}
55
{% for item in services %}
66
<tr>
7-
<th scope="row" style="width: 10%">{{ item.date | date: '%Y' }}</th>
8-
<td>
7+
<td class="bullet-cell">
98
{% if item.inline %}
109
{{ item.content | remove: '<p>' | remove: '</p>' | emojify }}
1110
{% endif %}

_includes/selected_awards.liquid

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
{% assign awards = site.awards | reverse %}
55
{% for item in awards %}
66
<tr>
7-
<th scope="row" style="width: 10%">{{ item.date | date: '%Y' }}</th>
8-
<td>
7+
<td class="bullet-cell">
98
{% if item.inline %}
109
{{ item.content | remove: '<p>' | remove: '</p>' | emojify }}
1110
{% endif %}
@@ -15,3 +14,20 @@
1514
</table>
1615
</div>
1716
</div>
17+
18+
<style>
19+
.bullet-cell {
20+
position: relative;
21+
padding-left: 2.5rem !important;
22+
}
23+
24+
.bullet-cell::before {
25+
content: "";
26+
position: absolute;
27+
left: 1rem;
28+
color: #1772d0;
29+
font-size: 1.8em;
30+
font-weight: bold;
31+
line-height: 1;
32+
}
33+
</style>

0 commit comments

Comments
 (0)