4,554
edits
No edit summary |
No edit summary |
||
Line 105: | Line 105: | ||
/* Style the article window */ | /* Style the article window */ | ||
#show-article-wrapper | #show-article-wrapper { | ||
display: none; | display: none; | ||
position: fixed; | position: fixed; | ||
Line 125: | Line 117: | ||
padding: 20px; | padding: 20px; | ||
border: 1px solid; | border: 1px solid; | ||
transition: transform 0.3s; /* Add transition for a smooth effect */ | |||
} | } | ||
#show-article-wrapper:hover { | |||
border: 5px solid red; /* Adjust the border style as needed */ | |||
} | |||
#show-article-content { | |||
/* Add any specific styles for #show-article-content if needed */ | |||
} | |||
#show-article { | |||
/* Styles for #show-article remain the same if no specific changes are needed */ | |||
} | |||