mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
74 lines
No EOL
1.9 KiB
HTML
74 lines
No EOL
1.9 KiB
HTML
<div class="container">
|
|
<div class="container-inner">
|
|
<div class="content">
|
|
<p>Do you want to Continue?</p>
|
|
</div>
|
|
<div class="buttons">
|
|
<button class="confirm" type="button">Confirm</button>
|
|
<button class="cancel" type="button">Cancel</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by mnikita7767 - Tags: card */
|
|
.container-inner {
|
|
background: #a4363e;
|
|
box-sizing: border-box;
|
|
border-radius: 30px;
|
|
box-shadow: 5px 6px 0px -2px #620d15, -6px 5px 0px -2px #620d15,
|
|
0px -2px 0px 2px #ee9191, 0px 10px 0px 0px #610c14,
|
|
0px -10px 0px 1px #e66565, 0px 0px 180px 90px #0d2f66;
|
|
padding: 20px;
|
|
width: 310px;
|
|
}
|
|
.container-inner .content {
|
|
background: radial-gradient(#fffbf3, #ffe19e);
|
|
border-radius: 20px 18px 20px 18px;
|
|
box-shadow: 0px 0px 0px 6px #5e1e21, 0px 0px 8px 6px #84222b,
|
|
inset 0px 0px 15px 0px #614506, 6px 6px 1px 1px #e66565,
|
|
-6px 6px 1px 1px #e66565;
|
|
font-family: "Skranji", cursive;
|
|
padding: 25px;
|
|
}
|
|
.container-inner .content p {
|
|
color: #461417;
|
|
font-size: 30px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
}
|
|
.buttons {
|
|
margin-top: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 40px;
|
|
}
|
|
button {
|
|
border-radius: 20px;
|
|
border: 2px solid #49181e;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
font-size: 20px;
|
|
padding-inline: 20px;
|
|
padding-block: 15px;
|
|
text-shadow: 1px 2px 3px #000000;
|
|
}
|
|
.confirm {
|
|
background: linear-gradient(#ced869, #536d1b);
|
|
box-shadow: 0px 0px 0px 4px #7e1522, 0px 2px 0px 3px #e66565;
|
|
}
|
|
.confirm:hover {
|
|
box-shadow: 0px 0px 0px 4px #7e1522, 0px 2px 0px 3px #e66565,
|
|
inset 2px 2px 10px 3px #4e6217;
|
|
}
|
|
.cancel {
|
|
background: linear-gradient(#ea7079, #891a1a);
|
|
box-shadow: 0px 0px 0px 4px #7e1522, 0px 2px 0px 3px #e66565;
|
|
}
|
|
.cancel:hover {
|
|
box-shadow: 0px 0px 0px 4px #7e1522, 0px 2px 0px 3px #e66565,
|
|
inset 2px 2px 10px 3px #822828;
|
|
}
|
|
|
|
</style>
|
|
|