Skip to content

Commit b106a05

Browse files
committed
Update About
1 parent ce0f350 commit b106a05

1 file changed

Lines changed: 34 additions & 26 deletions

File tree

_layouts/about-page.html

Lines changed: 34 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -22,45 +22,54 @@
2222
margin-bottom: 4rem;
2323
}
2424

25-
/* --- Info Panel General Style --- */
25+
/* --- Info Panel: Final Polished Version --- */
2626
.info-panel {
27+
display: flex; /* Flexbox 레이아웃 적용 */
28+
flex-direction: column; /* 아이템을 세로로 정렬 */
29+
gap: 1.2rem; /* 모든 섹션 사이의 간격을 1.2rem으로 완벽히 통일 */
2730
text-align: left;
28-
line-height: 1.6;
31+
line-height: 1.5;
2932
}
3033

3134
.info-name {
3235
font-size: 3em;
3336
font-weight: 700;
34-
margin-bottom: 1rem;
3537
line-height: 1.2;
38+
margin: 0; /* gap으로 제어하므로 개별 마진 불필요 */
3639
}
3740

38-
/* --- 그룹핑 및 기본 스타일 --- */
41+
/* --- 각 정보 그룹 스타일 --- */
3942
.info-affiliation, .info-details, .info-research, .info-links {
40-
padding-top: 1rem; /* margin-top을 없애고 이 값으로만 간격 조절 */
41-
border-top: 1px solid #e5e5e5; /* 그룹을 나누는 옅은 선 */
43+
margin: 0; /* 개별 마진 제거 */
4244
}
4345

46+
/* 선(border)이 필요한 그룹에만 선과 선 아래 공간(padding) 추가 */
47+
.info-affiliation, .info-details, .info-research, .info-links {
48+
border-top: 1px solid #e5e5e5;
49+
padding-top: 1.2rem; /* 선과 내용물 사이의 간격 */
50+
}
51+
52+
/* --- 텍스트 및 내부 간격 --- */
4453
.info-title {
4554
font-size: 1.2em;
4655
font-weight: 600;
47-
color: #1d1d1f; /* 애플의 메인 텍스트 블랙 */
48-
margin-top: 0; /* <-- 이 한 줄을 추가해주세요 */
49-
margin-bottom: 0;
56+
color: #1d1d1f;
57+
margin: 0;
5058
}
5159

5260
.info-university {
5361
font-size: 1.1em;
54-
color: #86868b; /* 애플의 보조 텍스트 그레이 */
55-
margin-bottom: 0.5rem;
62+
color: #86868b;
63+
margin: 0;
5664
}
5765

58-
/* --- 상세 정보 링크 --- */
5966
.info-details p {
6067
font-size: 1.1em;
6168
color: #555;
62-
margin-top: 0; /* <-- 이 한 줄을 추가해주세요 */
63-
margin-bottom: 1rem;
69+
margin: 0;
70+
}
71+
.info-details p:not(:last-child) {
72+
margin-bottom: 0.5rem; /* Lab과 Advisor 사이의 간격 */
6473
}
6574

6675
.info-details p strong {
@@ -69,49 +78,48 @@
6978
}
7079

7180
.info-details a {
72-
color: #0071e3; /* 애플 블루 */
81+
color: #0071e3;
7382
text-decoration: none;
7483
font-weight: 500;
7584
}
7685
.info-details a:hover {
7786
text-decoration: underline;
7887
}
7988

80-
/* --- 연구 분야 리스트 --- */
8189
.info-research h4 {
8290
font-size: 1.2em;
8391
font-weight: 600;
8492
color: #1d1d1f;
85-
margin-bottom: 0.rem;
86-
margin-top: 0; /* <-- 이 한 줄을 추가해주세요 */
93+
margin: 0 0 1rem 0; /* 제목과 목록 사이 간격 */
8794
}
8895

8996
.info-research ul {
9097
list-style: none;
9198
padding-left: 0;
99+
margin: 0;
92100
}
93101

94102
.info-research li {
95103
font-size: 1.1em;
96104
padding-left: 1.5em;
97105
position: relative;
98-
margin-bottom: 0.5rem;
99106
color: #555;
100107
}
108+
.info-research li:not(:last-child) {
109+
margin-bottom: 0.5rem; /* 목록 아이템 사이 간격 */
110+
}
101111

102112
.info-research li::before {
103-
content: "–"; /* 불릿을 대시(-)로 변경 */
113+
content: "–";
104114
position: absolute;
105115
left: 0;
106-
color: #0071e3; /* 불릿 포인트에 색상 강조 */
116+
color: #0071e3;
107117
}
108118

109-
110119
/* --- 아이콘 링크 버튼 --- */
111120
.info-links {
112-
padding-top: 1rem;
113121
display: flex;
114-
gap: 1rem; /* 버튼 사이 간격 */
122+
gap: 1rem;
115123
flex-wrap: wrap;
116124
}
117125

@@ -122,7 +130,7 @@
122130
background-color: #f5f5f7;
123131
color: #1d1d1f;
124132
padding: 0.7rem 1.4rem;
125-
border-radius: 99px; /* 알약 모양 */
133+
border-radius: 99px;
126134
text-decoration: none;
127135
font-weight: 600;
128136
font-size: 1em;
@@ -285,7 +293,7 @@ <h4>Research Interests</h4>
285293

286294
<nav class="qa-nav-wrapper">
287295
<a href="/research-interests/" class="qa-link-card">
288-
<h2>What are your main research interests?</h2>
296+
<h2>What are your research interests in detail?</h2>
289297
</a>
290298
<a href="/#pursuits" class="qa-link-card">
291299
<h2>What do you enjoy doing outside of research?</h2>

0 commit comments

Comments
 (0)