4,554
edits
No edit summary Tag: Manual revert |
No edit summary |
||
Line 238: | Line 238: | ||
border-bottom: 1px solid black; | border-bottom: 1px solid black; | ||
padding-bottom: 18px; | padding-bottom: 18px; | ||
display: flex; /* Use flexbox */ | |||
align-items: center; /* Align items vertically in the center */ | |||
justify-content: space-between; /* Space out title and icon */ | |||
} | } | ||
.article-title { | .article-title { | ||
Line 244: | Line 247: | ||
letter-spacing: 0.4px; | letter-spacing: 0.4px; | ||
text-align: center; | text-align: center; | ||
margin | margin: 0!important | ||
} | } | ||
.article-type { | .article-type { | ||
Line 280: | Line 283: | ||
} | } | ||
.external-link-icon { | .external-link-icon { | ||
display: | display: flex; /* Use flexbox */ | ||
align-items: center; /* Align items vertically in the center */ | |||
justify-content: center; /* Center the content horizontally */ | |||
width: 30px; /* Adjust the width as needed */ | |||
height: 30px; /* Adjust the height as needed */ | |||
} | } | ||
.external-link-icon img { | .external-link-icon img { | ||
width: 100%; | width: 100%; /* Make the image fill the container */ | ||
height: auto; | height: auto; /* Maintain aspect ratio */ | ||
} | } | ||