4,114
edits
No edit summary |
No edit summary |
||
Line 1,728: | Line 1,728: | ||
position: relative; | position: relative; | ||
} | } | ||
.submit-hide { | .submit-hide { | ||
opacity: 0; /* Make it invisible initially */ | opacity: 0; /* Make it invisible initially */ | ||
Line 1,740: | Line 1,736: | ||
transition: opacity 0.8s ease, visibility 0.8s; | transition: opacity 0.8s ease, visibility 0.8s; | ||
} | } | ||
#submit:hover + .submit-hide { | |||
display: block; | |||
opacity: 1; /* Make it fully visible on hover */ | |||
visibility: visible; /* Make it interactable */ | |||
} | |||