Untitled

 avatar
unknown
plain_text
5 months ago
775 B
2
Indexable
button.log {
    display: block; /* Makes it occupy full width */
    margin: 20px auto; /* Centers the button horizontally */
    cursor: pointer;
    border: 2px solid #FF5733; /* Orange border */
    border-radius: 4px;
    font-weight: 600;
    width: 200px;
    padding: 10px 0;
    box-shadow: 0 0 20px rgba(255, 87, 51, 0.2); /* Soft orange glow */
    transition: 0.4s;
    color: white;
    background-color: #FF5733; /* Orange background */
}

button.log:hover {
    color: white;
    box-shadow: 0 0 20px rgba(255, 87, 51, 0.6); /* Intense glow on hover */
    background: linear-gradient(90deg, #FF5733, #0094F7); /* Orange to Blue Gradient */
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #FF5733, #0094F7) 1;
}
Editor is loading...
Leave a Comment