Skip to content

Commit 6adffc9

Browse files
committed
modified: _sass/_base.scss
modified: _site/404.html modified: _site/_pages/dropdown/index.html modified: _site/assets/css/main.css modified: _site/assets/css/main.css.map modified: _site/blog/index.html modified: _site/cv/index.html modified: _site/feed.xml modified: _site/index.html modified: _site/news/announcement_1/index.html modified: _site/news/announcement_2/index.html modified: _site/news/announcement_3/index.html modified: _site/news/announcement_4/index.html modified: _site/news/announcement_5/index.html modified: _site/news/announcement_6/index.html modified: _site/news/index.html modified: _site/people/chen_bin.html modified: _site/people/fan_jie.html modified: _site/people/hou_qihang.html modified: _site/people/index.html modified: _site/people/liu_maolin.html modified: _site/people/ma_tianjiao.html modified: _site/people/ni_kexin.html modified: _site/people/simo.html modified: _site/people/wang_changqing.html modified: _site/people/wang_hao.html modified: _site/people/wang_qingxuan.html modified: _site/people/yang_qi.html modified: _site/people/zhang_xilin.html modified: _site/people/zhu_pinpin.html modified: _site/projects/1_project/index.html modified: _site/projects/4_project/index.html modified: _site/projects/5_project/index.html modified: _site/projects/index.html modified: _site/publication/index.html modified: _site/repository/index.html modified: _site/robots.txt modified: _site/sitemap.xml modified: _site/teaching/index.html modified: "_site/\344\270\255\346\226\207/404.html" modified: "_site/\344\270\255\346\226\207/_pages/dropdown/index.html" modified: "_site/\344\270\255\346\226\207/assets/css/main.css" modified: "_site/\344\270\255\346\226\207/assets/css/main.css.map" modified: "_site/\344\270\255\346\226\207/blog/index.html" modified: "_site/\344\270\255\346\226\207/cv/index.html" modified: "_site/\344\270\255\346\226\207/feed.xml" modified: "_site/\344\270\255\346\226\207/index.html" modified: "_site/\344\270\255\346\226\207/news/announcement_1/index.html" modified: "_site/\344\270\255\346\226\207/news/announcement_2/index.html" modified: "_site/\344\270\255\346\226\207/news/announcement_3/index.html" modified: "_site/\344\270\255\346\226\207/news/announcement_4/index.html" modified: "_site/\344\270\255\346\226\207/news/announcement_5/index.html" modified: "_site/\344\270\255\346\226\207/news/announcement_6/index.html" modified: "_site/\344\270\255\346\226\207/news/index.html" modified: "_site/\344\270\255\346\226\207/people/chen_bin.html" modified: "_site/\344\270\255\346\226\207/people/fan_jie.html" modified: "_site/\344\270\255\346\226\207/people/hou_qihang.html" modified: "_site/\344\270\255\346\226\207/people/index.html" modified: "_site/\344\270\255\346\226\207/people/liu_maolin.html" modified: "_site/\344\270\255\346\226\207/people/ma_tianjiao.html" modified: "_site/\344\270\255\346\226\207/people/ni_kexin.html" modified: "_site/\344\270\255\346\226\207/people/simo.html" modified: "_site/\344\270\255\346\226\207/people/wang_changqing.html" modified: "_site/\344\270\255\346\226\207/people/wang_hao.html" modified: "_site/\344\270\255\346\226\207/people/wang_qingxuan.html" modified: "_site/\344\270\255\346\226\207/people/yang_qi.html" modified: "_site/\344\270\255\346\226\207/people/zhang_xilin.html" modified: "_site/\344\270\255\346\226\207/people/zhu_pinpin.html" modified: "_site/\344\270\255\346\226\207/projects/1_project/index.html" modified: "_site/\344\270\255\346\226\207/projects/4_project/index.html" modified: "_site/\344\270\255\346\226\207/projects/5_project/index.html" modified: "_site/\344\270\255\346\226\207/projects/index.html" modified: "_site/\344\270\255\346\226\207/publication/index.html" modified: "_site/\344\270\255\346\226\207/repository/index.html" modified: "_site/\344\270\255\346\226\207/robots.txt" modified: "_site/\344\270\255\346\226\207/sitemap.xml" modified: "_site/\344\270\255\346\226\207/teaching/index.html"
1 parent 00625fe commit 6adffc9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+265
-181
lines changed

_sass/_base.scss

Lines changed: 38 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,21 @@ table {
5454
}
5555

5656
tr:nth-child(even) {
57-
background-color: rgba(0, 0, 0, 0.02);
57+
background-color: var(--global-bg-color);
5858
}
5959

6060
tr:hover {
61-
background-color: rgba(0, 0, 0, 0.05);
61+
background-color: var(--global-card-bg-color);
6262
transition: all 0.3s ease;
6363
}
6464

6565
td a {
66-
color: var(--global-theme-color);
66+
color: var(--global-text-color);
6767
text-decoration: none;
6868
transition: color 0.3s ease;
6969

7070
&:hover {
71-
color: var(--global-hover-color);
71+
color: var(--global-theme-color);
7272
text-decoration: underline;
7373
}
7474
}
@@ -931,4 +931,38 @@ pre {
931931
color: var(--global-hover-color);
932932
opacity: 1;
933933
}
934+
}
935+
936+
// 深色模式特定样式
937+
html[data-theme="dark"] {
938+
table {
939+
border-color: var(--global-divider-color);
940+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
941+
942+
td,
943+
th {
944+
border-color: var(--global-divider-color);
945+
}
946+
947+
th {
948+
background-color: var(--global-theme-color);
949+
color: var(--global-bg-color);
950+
}
951+
952+
tr:nth-child(even) {
953+
background-color: var(--global-card-bg-color);
954+
}
955+
956+
tr:hover {
957+
background-color: var(--global-bg-color);
958+
}
959+
960+
td a {
961+
color: var(--global-text-color);
962+
963+
&:hover {
964+
color: var(--global-theme-color);
965+
}
966+
}
967+
}
934968
}

_site/404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<link rel="shortcut icon" href="/assets/img/logo.png">
4747

4848
<link rel="stylesheet" href="/assets/css/main.css">
49-
<link rel="canonical" href="http://localhost:4000/404.html">
49+
<link rel="canonical" href="https://hint-lab.github.io/404.html">
5050

5151
<!-- Dark Mode -->
5252

_site/_pages/dropdown/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/_pages/dropdown/">
48+
<link rel="canonical" href="https://hint-lab.github.io/_pages/dropdown/">
4949

5050
<!-- Dark Mode -->
5151

_site/assets/css/main.css

Lines changed: 29 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_site/assets/css/main.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_site/blog/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/blog/">
48+
<link rel="canonical" href="https://hint-lab.github.io/blog/">
4949

5050
<!-- Dark Mode -->
5151

_site/cv/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/cv/">
48+
<link rel="canonical" href="https://hint-lab.github.io/cv/">
4949

5050
<!-- Dark Mode -->
5151

_site/feed.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" hreflang="en" /><updated>2025-05-16T09:50:07+08:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">blank</title></feed>
1+
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="https://hint-lab.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://hint-lab.github.io/" rel="alternate" type="text/html" hreflang="en" /><updated>2025-05-16T09:59:30+08:00</updated><id>https://hint-lab.github.io/feed.xml</id><title type="html">blank</title></feed>

_site/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/">
48+
<link rel="canonical" href="https://hint-lab.github.io/">
4949

5050
<!-- Dark Mode -->
5151

@@ -148,7 +148,7 @@ <h1 class="post-title">
148148
</div>
149149

150150
<div class="clearfix">
151-
<p>Welcome to the H!NT (<strong>H</strong>uman-machine <strong>I</strong>nteraction &amp; <strong>N</strong>a<strong>T</strong>ural language understanding) Lab! H!NT is a industry-driven research laboratory newly created in 2023, and is headed by Professor <a href="https://hint-lab.github.io/people/zhu_pinpin" rel="external nofollow noopener" target="_blank">Pinpin Zhu</a>, collaborated with Associate Professor <a href="https://hint-lab.github.io/people/wang_hao" rel="external nofollow noopener" target="_blank">Hao Wang</a>. Most of our members are primarily based at <a href="https://cs.shu.edu.cn/" rel="external nofollow noopener" target="_blank">School of Computer Engineering and Science (CES)</a>, <a href="https://www.shu.edu.cn/" rel="external nofollow noopener" target="_blank">Shanghai University</a> .</p>
151+
<p>Welcome to the H!NT (<strong>H</strong>uman-machine <strong>I</strong>nteraction &amp; <strong>N</strong>a<strong>T</strong>ural language understanding) Lab! H!NT is a industry-driven research laboratory newly created in 2023, and is headed by Professor <a href="https://hint-lab.github.io/people/zhu_pinpin">Pinpin Zhu</a>, collaborated with Associate Professor <a href="https://hint-lab.github.io/people/wang_hao">Hao Wang</a>. Most of our members are primarily based at <a href="https://cs.shu.edu.cn/" rel="external nofollow noopener" target="_blank">School of Computer Engineering and Science (CES)</a>, <a href="https://www.shu.edu.cn/" rel="external nofollow noopener" target="_blank">Shanghai University</a> .</p>
152152

153153
<p><strong>Research synopsis</strong>: Our principal research interests lie in the development of deep learning and cognitive methodology, and large-scale computational system and architecture, for solving problems involving human-machine communication, natural language processing, and multimodal media or documents in state-of-the-art artificial intelligence (AI) systems.</p>
154154

_site/news/announcement_1/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/news/announcement_1/">
48+
<link rel="canonical" href="https://hint-lab.github.io/news/announcement_1/">
4949

5050
<!-- Dark Mode -->
5151

_site/news/announcement_2/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/news/announcement_2/">
48+
<link rel="canonical" href="https://hint-lab.github.io/news/announcement_2/">
4949

5050
<!-- Dark Mode -->
5151

_site/news/announcement_3/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/news/announcement_3/">
48+
<link rel="canonical" href="https://hint-lab.github.io/news/announcement_3/">
4949

5050
<!-- Dark Mode -->
5151

_site/news/announcement_4/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/news/announcement_4/">
48+
<link rel="canonical" href="https://hint-lab.github.io/news/announcement_4/">
4949

5050
<!-- Dark Mode -->
5151

_site/news/announcement_5/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/news/announcement_5/">
48+
<link rel="canonical" href="https://hint-lab.github.io/news/announcement_5/">
4949

5050
<!-- Dark Mode -->
5151

_site/news/announcement_6/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/news/announcement_6/">
48+
<link rel="canonical" href="https://hint-lab.github.io/news/announcement_6/">
4949

5050
<!-- Dark Mode -->
5151

_site/news/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/news/">
48+
<link rel="canonical" href="https://hint-lab.github.io/news/">
4949

5050
<!-- Dark Mode -->
5151

_site/people/chen_bin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/chen_bin">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/chen_bin">
4949

5050
<!-- Dark Mode -->
5151

_site/people/fan_jie.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/fan_jie">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/fan_jie">
4949

5050
<!-- Dark Mode -->
5151

_site/people/hou_qihang.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/hou_qihang">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/hou_qihang">
4949

5050
<!-- Dark Mode -->
5151

_site/people/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/">
4949

5050
<!-- Dark Mode -->
5151

_site/people/liu_maolin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/liu_maolin">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/liu_maolin">
4949

5050
<!-- Dark Mode -->
5151

_site/people/ma_tianjiao.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/ma_tianjiao">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/ma_tianjiao">
4949

5050
<!-- Dark Mode -->
5151

_site/people/ni_kexin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/ni_kexin">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/ni_kexin">
4949

5050
<!-- Dark Mode -->
5151

_site/people/simo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/simo">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/simo">
4949

5050
<!-- Dark Mode -->
5151

_site/people/wang_changqing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/wang_changqing">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/wang_changqing">
4949

5050
<!-- Dark Mode -->
5151

_site/people/wang_hao.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/wang_hao">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/wang_hao">
4949

5050
<!-- Dark Mode -->
5151

_site/people/wang_qingxuan.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/wang_qingxuan">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/wang_qingxuan">
4949

5050
<!-- Dark Mode -->
5151

_site/people/yang_qi.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/yang_qi">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/yang_qi">
4949

5050
<!-- Dark Mode -->
5151

_site/people/zhang_xilin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/zhang_xilin">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/zhang_xilin">
4949

5050
<!-- Dark Mode -->
5151

_site/people/zhu_pinpin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/people/zhu_pinpin">
48+
<link rel="canonical" href="https://hint-lab.github.io/people/zhu_pinpin">
4949

5050
<!-- Dark Mode -->
5151

_site/projects/1_project/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/projects/1_project/">
48+
<link rel="canonical" href="https://hint-lab.github.io/projects/1_project/">
4949

5050
<!-- Dark Mode -->
5151

_site/projects/4_project/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/projects/4_project/">
48+
<link rel="canonical" href="https://hint-lab.github.io/projects/4_project/">
4949

5050
<!-- Dark Mode -->
5151

_site/projects/5_project/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<link rel="shortcut icon" href="/assets/img/logo.png">
4646

4747
<link rel="stylesheet" href="/assets/css/main.css">
48-
<link rel="canonical" href="http://localhost:4000/projects/5_project/">
48+
<link rel="canonical" href="https://hint-lab.github.io/projects/5_project/">
4949

5050
<!-- Dark Mode -->
5151

0 commit comments

Comments
 (0)