Skip to content

Commit

Permalink
upgraded visual aspects (round pictures, fixed card height, adjusted …
Browse files Browse the repository at this point in the history
…lists)
  • Loading branch information
romsto committed Nov 20, 2024
1 parent 25f416d commit 96b7fd7
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 11 deletions.
2 changes: 1 addition & 1 deletion _layouts/person.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ <h2 class="other-category">Contact</h2>
{% if ppublication.size > 0 %}
<div class="other-info">
<h2 class="other-category">Publications</h2>
<ul>
<ul class="person-publications">
{% for publication in ppublication %}
{% assign ppublication_detail = publication | split: "|" %}
{% if ppublication_detail.size > 2 %}
Expand Down
4 changes: 2 additions & 2 deletions _people/storair.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ korean_name: 로망
position: M.S. Student
department: Department of Computer Science and Engineering
interests:
- "Adaptive Computation in Transformers"
- "Information Retrieval"
- "Adaptive Computation"
- "LLM Inference"
education:
- "M.S. in Computer Science and Engineering, Seoul National University 2023~"
- "M.Eng. in Computer Science (Dual Degree), IMT Mines Alès (France) 2021~"
Expand Down
47 changes: 40 additions & 7 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -378,8 +378,13 @@ footer {
font-size: 18px;
font-weight: 600;
margin-bottom: 5px;
text-decoration: none;
text-decoration: underline transparent;
color: var(--text-color);
transition: text-decoration 0.3s ease-in-out;
}

.publication-title:hover {
text-decoration-color: var(--text-color);
}

.publication-authors {
Expand Down Expand Up @@ -421,20 +426,29 @@ footer {
display: flex;
width: 48%;
margin-bottom: 30px;
height: 200px;
}

.person-image-container {
width: 200px;
height: 200px;
overflow: hidden;
position: relative;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
transition: border-radius 0.3s ease;
}

.person-image-container:hover {
border-radius: 0%;
}

.person-image-container img {
max-width: 100%;
max-height: 100%;
display: inline;
height: 100%;
width: auto;
}

.person-info-container {
Expand Down Expand Up @@ -472,13 +486,29 @@ footer {
text-decoration: underline;
}

@counter-style thumbs {
system: cyclic;
symbols: "‣";
suffix: " ";
}

.person-interests {
list-style-type: none;
list-style-type: thumbs;
padding: 0;
margin: 0;
margin-left: 15px;
}

@counter-style paper {
system: cyclic;
symbols: "📄";
suffix: " ";
}

.person-publications {
list-style-type: paper;
}

.alumni {
font-size: 16px;
font-weight: 600;
Expand Down Expand Up @@ -524,12 +554,15 @@ a.person-publication:hover {
justify-content: center;
align-items: center;
overflow: hidden;
position: relative;
border-radius: 50%;
margin-right: 30px;
}

.photo img {
max-width: 100%;
max-height: 100%;
display: inline;
height: 100%;
width: auto;
}

.person-description {
Expand Down
Binary file modified assets/images/people/storair.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion people.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h1 class="category">LDILab's Family</h1>
{% assign count = 0 %}
{% for interest in member.interests %}
{% assign count = count | plus: 1 %}
{% if count <= 3 %}
{% if count <= 2 %}
<li>{{ interest }}</li>
{% else %}
<li>...</li>
Expand Down

0 comments on commit 96b7fd7

Please sign in to comment.