Recipe Printer
Recipe Title
Nutritional Values
Nutritional details will appear here.
Source: Website Name
button {
display: block;
margin: 20px auto;
padding: 12px 25px;
font-size: 1.1em;
font-weight: bold;
color: #fff;
background: linear-gradient(135deg, #ff7a18, #ffca18);
border: none;
border-radius: 50px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
button:hover {
background: linear-gradient(135deg, #ffca18, #ff7a18);
transform: scale(1.05);
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 122, 24, 0.5);
}
button:active {
transform: scale(0.98);
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
button::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent);
opacity: 0;
transition: opacity 0.4s ease, transform 0.4s ease;
transform: scale(0.5);
z-index: 1;
pointer-events: none;
}
button:hover::after {
opacity: 1;
transform: scale(1.5);
}