4,554
edits
No edit summary Tag: Reverted |
No edit summary Tag: Manual revert |
||
Line 115: | Line 115: | ||
margin-top: 2%; | margin-top: 2%; | ||
background-color: white; | background-color: white; | ||
border: 1px solid; | |||
transition: transform 0.001s ease, border 0.001s ease; /* Add transitions with ease timing function */ | transition: transform 0.001s ease, border 0.001s ease; /* Add transitions with ease timing function */ | ||
} | } | ||
Line 121: | Line 122: | ||
position: relative; /* Add position relative */ | position: relative; /* Add position relative */ | ||
z-index: 1; /* Ensure it's above the wrapper */ | z-index: 1; /* Ensure it's above the wrapper */ | ||
padding: 20px; | padding: 20px; | ||
transition: transform 0.001s ease, border 0.001s ease; | transition: transform 0.001s ease, border 0.001s ease; | ||
Line 129: | Line 129: | ||
/* Styles for show-article when hovered */ | /* Styles for show-article when hovered */ | ||
transform: rotate(2.5deg); /* Rotate the content */ | transform: rotate(2.5deg); /* Rotate the content */ | ||
border: 1px solid; | |||
background-color: white; | background-color: white; | ||
padding: 20px; | padding: 20px; | ||
Line 136: | Line 137: | ||
border: 1px solid black; /* Adjust the border style as needed */ | border: 1px solid black; /* Adjust the border style as needed */ | ||
transform: rotate(-2.5deg); /* Rotate the wrapper */ | transform: rotate(-2.5deg); /* Rotate the wrapper */ | ||
} | |||
#show-article-content { | |||
/* Add any specific styles for #show-article-content if needed */ | |||
} | } | ||