35 lines
724 B
CSS
35 lines
724 B
CSS
.confirm-button {
|
|
position: relative;
|
|
width: 395px;
|
|
height: 112px;
|
|
background: url("../assets/buttons/confirm-button.png") center center no-repeat;
|
|
background-size: 100% 100%;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: transform 0.2s ease, opacity 0.2s ease;
|
|
}
|
|
|
|
.confirm-button:hover {
|
|
transform: scale(1.02);
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.confirm-button:active {
|
|
transform: scale(0.98);
|
|
}
|
|
|
|
.confirm-button-text {
|
|
height: 49px;
|
|
overflow-wrap: break-word;
|
|
color: rgba(255, 255, 255, 1);
|
|
font-size: 51px;
|
|
font-family: NotoSansCJKsc-Bold;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
line-height: 51px;
|
|
} |