mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-31 04:02:29 +00:00
26 lines
505 B
CSS
26 lines
505 B
CSS
.ficha-container {
|
|
position: relative;
|
|
width: 900px; /* Largura da ficha de personagem */
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.ficha-imagem {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.campo {
|
|
position: absolute;
|
|
background-color: rgba(255, 255, 255, 0.7); /* Fundo semitransparente */
|
|
border: 1px solid #000;
|
|
padding: 5px;
|
|
font-size: 18px;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
|
|
#attr_destino {
|
|
width: 20px;
|
|
height: 20px;
|
|
accent-color: red; /* Para alterar a cor de seleção */
|
|
} |