File size: 810 Bytes
5cb397b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | #tradutor-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
cursor: crosshair;
z-index: 999998;
}
#tradutor-selecao {
position: fixed;
border: 2px dashed #00ff00;
background: rgba(0, 255, 0, 0.1);
display: none;
z-index: 999999;
}
.tradutor-balao {
position: absolute;
background: #1a1a2e;
color: #fff;
padding: 12px 16px;
border-radius: 8px;
max-width: 400px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
z-index: 999999;
font-size: 14px;
line-height: 1.5;
}
.tradutor-conteudo {
margin-right: 20px;
}
.tradutor-fechar {
position: absolute;
top: 5px;
right: 8px;
background: none;
border: none;
color: #fff;
font-size: 18px;
cursor: pointer;
}
.tradutor-fechar:hover {
color: #ff4444;
}
|