Files
yuanhe-checkin-electron/src/components/BackButton.css
2025-11-20 10:00:02 +08:00

37 lines
721 B
CSS

.back-button {
position: relative;
width: 395px;
height: 112px;
background: url("../assets/buttons/back-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;
}
.back-button:hover {
transform: scale(1.02);
opacity: 0.9;
}
.back-button:active {
transform: scale(0.98);
}
.back-button-text {
width: 99px;
height: 49px;
overflow-wrap: break-word;
color: rgba(0, 45, 93, 1);
font-size: 51px;
font-family: NotoSansCJKsc-Bold;
font-weight: 700;
text-align: center;
white-space: nowrap;
line-height: 51px;
}