Skip to content

Commit

Permalink
Update researches.html
Browse files Browse the repository at this point in the history
  • Loading branch information
YanChen32 authored Jan 22, 2025
1 parent 24109ae commit a7f4adf
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions _pages/researches.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@ <h2>Research Overview</h2>
{% include archive-single.html %}
{% endfor %}


<div class="research-grants">
{% capture projects_content %}
{% include_relative _proj.md %}
{% endcapture %}
{{ projects_content | markdownify }}
</div>


<style>
.research-overview {
max-width: 900px;
Expand Down Expand Up @@ -78,4 +87,74 @@ <h2>Research Overview</h2>
strong {
color: #34495e;
}

.research-grants {
max-width: 900px;
margin: 40px auto;
padding: 20px;
}

.paper-box {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin-bottom: 30px;
}

.paper-box-text {
line-height: 1.6;
}

.paper-box-text h1 {
color: #2c3e50;
margin-bottom: 30px;
}

.paper-box-text h3 {
color: #34495e;
margin: 20px 0;
}

.paper-box-text ul {
list-style-type: none;
padding-left: 0;
}

.paper-box-text li {
margin-bottom: 10px;
padding-left: 20px;
position: relative;
}

.paper-box-text li:before {
content: "•";
position: absolute;
left: 0;
color: #2980b9;
}

/* 配色方案 */
.paper-box-text [style*="color: #E74C3C"] {
font-weight: bold;
}

.paper-box-text [style*="color: #3498DB"] {
font-weight: bold;
}

.paper-box-text [style*="color: #2ECC71"] {
font-weight: bold;
}

/* Principal Investigator 标签样式 */
.paper-box-text [style*="background-color: #F1C40F"] {
display: inline-block;
padding: 2px 8px;
border-radius: 3px;
font-weight: bold;
color: #000;
}
</style>


0 comments on commit a7f4adf

Please sign in to comment.