Initial commit
This commit is contained in:
37
src/components/ConfirmButton.css
Normal file
37
src/components/ConfirmButton.css
Normal file
@@ -0,0 +1,37 @@
|
||||
.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 {
|
||||
width: 151px;
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user