50 lines
890 B
CSS
50 lines
890 B
CSS
.card {
|
|
position: absolute;
|
|
top: calc(50% - 22rem);
|
|
left: calc(50% - 9rem);
|
|
width: 18rem;
|
|
height: 26rem;
|
|
padding: 10px;
|
|
background-color: rgba(255, 255, 255, 0.15);
|
|
border-radius: 10px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
border-right: 1px solid color(srgb 0.3784 0.4042 0.43);
|
|
border-top: 1px solid color(srgb 0.3784 0.4042 0.43);
|
|
}
|
|
|
|
.card > div > p:first-of-type {
|
|
font-size: 8rem;
|
|
margin: 0;
|
|
color: #bfcedd;
|
|
text-shadow: -4px 3px 7px #121316;
|
|
}
|
|
|
|
.card > div > p {
|
|
margin: 0;
|
|
color: #bfcedd;
|
|
text-align: center;
|
|
}
|
|
|
|
.card > .buttons {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
gap: 2px;
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
.card > .buttons > button {
|
|
flex: 1;
|
|
margin: 0;
|
|
}
|
|
|
|
.card > .buttons > :first-child {
|
|
background: none;
|
|
}
|