32 lines
535 B
CSS
32 lines
535 B
CSS
.small-lookup-box{
|
|
max-width: 100px;
|
|
height: 20px;
|
|
}
|
|
|
|
#done {
|
|
opacity: 0;
|
|
display: none;
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
margin: auto;
|
|
background-color: var(--overlay-color);
|
|
border-radius: 45px;
|
|
padding: 20px;
|
|
padding-bottom: 1px;
|
|
min-width: 90px;
|
|
max-width: 90px;
|
|
transition: opacity 0.25s;
|
|
}
|
|
|
|
#done img {
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
|
|
#done p {
|
|
padding-top: 0px;
|
|
font-weight: bolder;
|
|
overflow-wrap: normal;
|
|
} |