31 lines
516 B
CSS
31 lines
516 B
CSS
|
.small-lookup-box{
|
||
|
max-width: 100px;
|
||
|
height: 20px;
|
||
|
}
|
||
|
|
||
|
#done {
|
||
|
opacity: 0;
|
||
|
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;
|
||
|
}
|