18 lines
364 B
CSS
18 lines
364 B
CSS
|
|
.button {
|
||
|
|
width: 100%;
|
||
|
|
padding: 1rem;
|
||
|
|
background: #a8d5e8;
|
||
|
|
border: none;
|
||
|
|
border-radius: 1rem;
|
||
|
|
font-size: 1.25rem;
|
||
|
|
font-weight: 600;
|
||
|
|
cursor: pointer;
|
||
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
|
||
|
|
transition: transform 80ms ease, box-shadow 80ms ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button:active {
|
||
|
|
transform: translateY(2px);
|
||
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
|
||
|
|
}
|