Files
roll20-character-sheets/ADnD_2E_Revised/css/announcements.css
T

35 lines
807 B
CSS

/*#region Announcement styling start */
input.sheet-show-announcement:checked ~ .sheet-hidden {
display: revert;
}
div.sheet-announcement {
width: 95%;
margin: 5px;
border: 3px solid #ff0000;
border-radius: 8px;
padding: 8px;
background: #ababab;
box-sizing: border-box;
}
.sheet-selectable {
font-style: italic;
font-weight: bold;
color: #181E72;
-webkit-user-select: all; /* Chrome all / Safari all */
-moz-user-select: all; /* Firefox all */
-ms-user-select: all; /* IE 10+ */
user-select: all; /* Likely future */
}
img.expandable {
transition:transform 0.25s ease;
}
img.expandable:hover {
-webkit-transform:scale(3); /* or some other value */
transform:scale(3);
}
/*#endregion Announcement styling end */