mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-31 04:02:29 +00:00
35 lines
807 B
CSS
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 */
|