2023-06-26 21:02:59 +01:00
|
|
|
<div id="container">
|
2023-07-07 11:27:28 +01:00
|
|
|
<p id="tick">✔</p>
|
|
|
|
<p>Done</p>
|
2023-06-26 21:02:59 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
2023-07-07 11:27:28 +01:00
|
|
|
#tick {
|
2023-06-26 21:02:59 +01:00
|
|
|
font-size: 45px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2023-07-07 11:27:28 +01:00
|
|
|
}
|
|
|
|
#container {
|
|
|
|
position: fixed;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
margin: auto;
|
|
|
|
background-color: var(--overlay-color);
|
|
|
|
border-radius: 15px;
|
|
|
|
padding: 20px;
|
|
|
|
padding-bottom: 1px;
|
|
|
|
min-width: 90px;
|
|
|
|
max-width: 90px;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
padding-top: 0px;
|
|
|
|
font-weight: bolder;
|
|
|
|
overflow-wrap: normal;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
</style>
|