4,554
edits
No edit summary Tag: Manual revert |
No edit summary |
||
| Line 105: | Line 105: | ||
/* Style the article window */ | /* Style the article window */ | ||
#show-article { | #show-article { | ||
display: none; | display: none; | ||
position: fixed; | position: fixed; | ||
top: 0; | top: 0; | ||
right: 0; | right: 0; | ||
width: 37%; | width: 37%; | ||
height: | height: 100%; | ||
margin-right: 2%; | margin-right: 2%; | ||
margin-top: 2%; | margin-top: 2%; | ||
background-color: white; | background-color: white; | ||
padding: 20px; | padding: 20px; | ||
border: 1px solid; | border: 1px solid; | ||
transition: | transition: all 0.3s ease-out; /* Add transition for smooth effect */ | ||
} | } | ||
#show-article:hover { | #show-article:hover { | ||
/* Adjust border size on hover */ | /* Adjust border size on hover */ | ||
border-width: | border-width: 1px 5px 5px 1px; /* top, right, bottom, left */ | ||
box-shadow: | box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2); /* right, bottom, blur, color */ | ||
} | } | ||
.article-metadata { | .article-metadata { | ||