4,090
edits
No edit summary |
No edit summary |
||
Line 1,775: | Line 1,775: | ||
#simpleSearch:hover .closing-bracket, #simpleSearchSpecial:hover .closing-bracket { | #simpleSearch:hover .closing-bracket, #simpleSearchSpecial:hover .closing-bracket { | ||
display: inline-block; | display: inline-block; | ||
} | |||
.submit-hide { | |||
opacity: 0; /* Make it invisible initially */ | |||
visibility: hidden; /* Ensure it's not interactable */ | |||
display: none; | |||
color: black; | |||
font-size: 28px; | |||
line-height: 34px; | |||
letter-spacing: 1.4px; | |||
width: 200%; | |||
border-bottom: 1px solid black; | |||
padding-bottom: 5px; | |||
padding-top: 5px; | |||
transition: opacity 0.8s ease, visibility 0.8s; | |||
} | } | ||
.submitEntry { | .submitEntry { | ||
Line 1,782: | Line 1,796: | ||
letter-spacing: 0.95px; | letter-spacing: 0.95px; | ||
font-family: 'HALColant-TextRegular'; | font-family: 'HALColant-TextRegular'; | ||
} | } | ||
.submitEntry button { | .submitEntry button { | ||
Line 1,793: | Line 1,803: | ||
letter-spacing: 0.95px; | letter-spacing: 0.95px; | ||
font-family: 'HALColant-TextRegular'; | font-family: 'HALColant-TextRegular'; | ||
background: none; | background: none; | ||
border: none; | border: none; | ||
} | } | ||
. | .submitEntry button:hover { | ||
text-decoration: underline; | |||
cursor: pointer; | |||
} | } | ||
.submitEntry button:hover + .submit-hide { | .submitEntry button:hover + .submit-hide { | ||
display: block; | display: block; | ||
Line 1,817: | Line 1,817: | ||
/* Keep the rest of your styles unchanged */ | /* Keep the rest of your styles unchanged */ | ||
} | } | ||
/* ----->END------ FOOTER and SEARCH */ | /* ----->END------ FOOTER and SEARCH */ | ||