extensao_tradutor / style.css
meccatronis's picture
Upload style.css with huggingface_hub
5cb397b verified
#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;
}