forked from GitHub-Mirrors/foundry-sw5e
Removed unnecessary files
This commit is contained in:
parent
53064c0e09
commit
b4bc7fc550
9 changed files with 6 additions and 7846 deletions
BIN
.DS_Store
vendored
BIN
.DS_Store
vendored
Binary file not shown.
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -28,4 +28,10 @@ hs_err_pid*
|
|||
# IDE Folders
|
||||
.idea/
|
||||
.vs/
|
||||
.vscode/
|
||||
|
||||
# Nodejs Modules
|
||||
node_modules
|
||||
|
||||
# Compiled Files
|
||||
dist/
|
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
|
@ -1,2 +0,0 @@
|
|||
{
|
||||
}
|
1791
sw5e copy.css
1791
sw5e copy.css
File diff suppressed because it is too large
Load diff
799
sw5e-dark.css
799
sw5e-dark.css
|
@ -1,799 +0,0 @@
|
|||
/* ----------------------------------------- */
|
||||
/* Fonts */
|
||||
/* ----------------------------------------- */
|
||||
/* ----------------------------------------- */
|
||||
/* Sheet Styles */
|
||||
/* ----------------------------------------- */
|
||||
body.dark-theme {
|
||||
/*-----------
|
||||
** Chat Tab
|
||||
-----------*/
|
||||
/*-----------
|
||||
** Combat Tab
|
||||
-----------*/
|
||||
/*
|
||||
** Folders
|
||||
*/
|
||||
}
|
||||
body.dark-theme .app {
|
||||
background: linear-gradient(90deg, #626262 0, #4d4d4d 30%, #4d4d4d 70%, #626262);
|
||||
}
|
||||
body.dark-theme h1,
|
||||
body.dark-theme h2,
|
||||
body.dark-theme h3,
|
||||
body.dark-theme h4,
|
||||
body.dark-theme h5,
|
||||
body.dark-theme h6 {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme h3 {
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme a {
|
||||
color: #E81111;
|
||||
text-decoration: none;
|
||||
}
|
||||
body.dark-theme a:hover,
|
||||
body.dark-theme a:active {
|
||||
text-shadow: none;
|
||||
text-decoration: underline;
|
||||
}
|
||||
body.dark-theme blockquote {
|
||||
padding: 4px 8px;
|
||||
background-color: #FBF4F4;
|
||||
border: 1px solid #E81111;
|
||||
box-shadow: 0 0 20px rgba(232, 17, 17, 0.8);
|
||||
}
|
||||
body.dark-theme hr {
|
||||
border-width: 0 0 1px 0;
|
||||
border-bottom: 1px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme select {
|
||||
color: white;
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
body.dark-theme input[type="text"],
|
||||
body.dark-theme input[type="number"],
|
||||
body.dark-theme input[type="password"],
|
||||
body.dark-theme input[type="date"],
|
||||
body.dark-theme input[type="time"],
|
||||
body.dark-theme select,
|
||||
body.dark-theme textarea {
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme input[type="text"],
|
||||
body.dark-theme input[type="number"],
|
||||
body.dark-theme input[type="password"],
|
||||
body.dark-theme input[type="date"],
|
||||
body.dark-theme input[type="time"],
|
||||
body.dark-theme select,
|
||||
body.dark-theme textarea {
|
||||
border: 1px solid #828282;
|
||||
}
|
||||
body.dark-theme input[type="text"]:hover,
|
||||
body.dark-theme input[type="number"]:hover,
|
||||
body.dark-theme input[type="password"]:hover,
|
||||
body.dark-theme input[type="date"]:hover,
|
||||
body.dark-theme input[type="time"]:hover,
|
||||
body.dark-theme select:hover,
|
||||
body.dark-theme textarea:hover {
|
||||
border-color: #4f4f4f;
|
||||
}
|
||||
body.dark-theme input[type="text"]:focus,
|
||||
body.dark-theme input[type="number"]:focus,
|
||||
body.dark-theme input[type="password"]:focus,
|
||||
body.dark-theme input[type="date"]:focus,
|
||||
body.dark-theme input[type="time"]:focus,
|
||||
body.dark-theme select:focus,
|
||||
body.dark-theme textarea:focus {
|
||||
border-color: #E81111;
|
||||
}
|
||||
body.dark-theme input[type="text"]::placeholder,
|
||||
body.dark-theme input[type="number"]::placeholder,
|
||||
body.dark-theme input[type="password"]::placeholder,
|
||||
body.dark-theme input[type="date"]::placeholder,
|
||||
body.dark-theme input[type="time"]::placeholder,
|
||||
body.dark-theme select::placeholder,
|
||||
body.dark-theme textarea::placeholder {
|
||||
color: white;
|
||||
opacity: 0.5;
|
||||
}
|
||||
body.dark-theme input[type="text"] ::-ms-input-placeholder,
|
||||
body.dark-theme input[type="number"] ::-ms-input-placeholder,
|
||||
body.dark-theme input[type="password"] ::-ms-input-placeholder,
|
||||
body.dark-theme input[type="date"] ::-ms-input-placeholder,
|
||||
body.dark-theme input[type="time"] ::-ms-input-placeholder,
|
||||
body.dark-theme select ::-ms-input-placeholder,
|
||||
body.dark-theme textarea ::-ms-input-placeholder {
|
||||
/* Microsoft Edge */
|
||||
color: white;
|
||||
opacity: 0.5;
|
||||
}
|
||||
body.dark-theme button,
|
||||
body.dark-theme input[type="button"],
|
||||
body.dark-theme input[type="submit"],
|
||||
body.dark-theme input[type="reset"] {
|
||||
background: #E81111;
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme button:hover,
|
||||
body.dark-theme input[type="button"]:hover,
|
||||
body.dark-theme input[type="submit"]:hover,
|
||||
body.dark-theme input[type="reset"]:hover,
|
||||
body.dark-theme button:focus,
|
||||
body.dark-theme input[type="button"]:focus,
|
||||
body.dark-theme input[type="submit"]:focus,
|
||||
body.dark-theme input[type="reset"]:focus {
|
||||
background: #ef2424;
|
||||
}
|
||||
body.dark-theme button:disabled:hover,
|
||||
body.dark-theme input[type="button"]:disabled:hover,
|
||||
body.dark-theme input[type="submit"]:disabled:hover,
|
||||
body.dark-theme input[type="reset"]:disabled:hover,
|
||||
body.dark-theme button:disabled:focus,
|
||||
body.dark-theme input[type="button"]:disabled:focus,
|
||||
body.dark-theme input[type="submit"]:disabled:focus,
|
||||
body.dark-theme input[type="reset"]:disabled:focus {
|
||||
background: #E81111;
|
||||
}
|
||||
body.dark-theme input[type="reset"],
|
||||
body.dark-theme button.secondary,
|
||||
body.dark-theme button[type="reset"],
|
||||
body.dark-theme input[type="button"].secondary,
|
||||
body.dark-theme input[type="submit"].secondary {
|
||||
background: #828282;
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme input[type="reset"]:hover,
|
||||
body.dark-theme button.secondary:hover,
|
||||
body.dark-theme button[type="reset"]:hover,
|
||||
body.dark-theme input[type="button"].secondary:hover,
|
||||
body.dark-theme input[type="submit"].secondary:hover {
|
||||
background: #8f8f8f;
|
||||
}
|
||||
body.dark-theme input[type="reset"]:disabled:hover,
|
||||
body.dark-theme button.secondary:disabled:hover,
|
||||
body.dark-theme button[type="reset"]:disabled:hover,
|
||||
body.dark-theme input[type="button"].secondary:disabled:hover,
|
||||
body.dark-theme input[type="submit"].secondary:disabled:hover,
|
||||
body.dark-theme input[type="reset"]:disabled:focus,
|
||||
body.dark-theme button.secondary:disabled:focus,
|
||||
body.dark-theme button[type="reset"]:disabled:focus,
|
||||
body.dark-theme input[type="button"].secondary:disabled:focus,
|
||||
body.dark-theme input[type="submit"].secondary:disabled:focus {
|
||||
background: #828282;
|
||||
}
|
||||
body.dark-theme form button {
|
||||
border: none;
|
||||
}
|
||||
body.dark-theme form .notes,
|
||||
body.dark-theme form .hint {
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
body.dark-theme #sidebar-tabs {
|
||||
background: #2b2b2b;
|
||||
}
|
||||
body.dark-theme #sidebar-tabs > .collapse {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme #sidebar-tabs .item.active {
|
||||
color: #E81111;
|
||||
border-bottom: 3px solid #E81111;
|
||||
}
|
||||
body.dark-theme #chat-log .chat-message {
|
||||
background: #363636;
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme #chat-log .chat-message > header {
|
||||
color: #E81111;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme #chat-log .chat-message > header span {
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme .notification-pip {
|
||||
color: #0d99cc;
|
||||
}
|
||||
body.dark-theme .sw5e.chat-card .card-header h3,
|
||||
body.dark-theme .midi-qol-item-card .card-header h3 {
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme .sw5e.chat-card .card-header h3:hover,
|
||||
body.dark-theme .midi-qol-item-card .card-header h3:hover {
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme .sw5e.chat-card .card-buttons span,
|
||||
body.dark-theme .midi-qol-item-card .card-buttons span {
|
||||
border: 1px solid #828282;
|
||||
}
|
||||
body.dark-theme .sw5e.chat-card .card-footer,
|
||||
body.dark-theme .midi-qol-item-card .card-footer {
|
||||
border-top: 1px solid #7ed6f7;
|
||||
}
|
||||
body.dark-theme .sw5e.chat-card .card-footer span,
|
||||
body.dark-theme .midi-qol-item-card .card-footer span {
|
||||
border-right: 1px solid #D6D6D6;
|
||||
}
|
||||
body.dark-theme .sw5e.chat-card .card-footer span:last-child,
|
||||
body.dark-theme .midi-qol-item-card .card-footer span:last-child {
|
||||
border-right: none;
|
||||
}
|
||||
body.dark-theme .dice-roll .dice-formula {
|
||||
background: #4f4f4f;
|
||||
color: white;
|
||||
box-shadow: none;
|
||||
border-radius: 4px;
|
||||
}
|
||||
body.dark-theme .dice-roll .dice-total {
|
||||
background: #FBF4F4;
|
||||
border: 1px solid #E81111;
|
||||
box-shadow: 0 0 12px rgba(232, 17, 17, 0.8);
|
||||
}
|
||||
body.dark-theme .dice-roll .dice-total.success {
|
||||
color: #0dce0d;
|
||||
}
|
||||
body.dark-theme .dice-roll .dice-total.failure {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .dice-roll .dice-total.critical {
|
||||
color: #0dce0d;
|
||||
background: #bcdcbe;
|
||||
box-shadow: 0 0 12px rgba(13, 206, 13, 0.5);
|
||||
}
|
||||
body.dark-theme .dice-roll .dice-total.fumble {
|
||||
color: #E81111;
|
||||
background: #FBF4F4;
|
||||
box-shadow: 0 0 12px rgba(232, 17, 17, 0.5);
|
||||
}
|
||||
body.dark-theme #chat-controls .roll-type-select {
|
||||
background: #a9a9a9;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.dark-theme #chat-controls label {
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme #chat-form textarea {
|
||||
background: #a9a9a9;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.dark-theme #combat #combat-round {
|
||||
color: #E81111;
|
||||
border-bottom: 2px solid #E81111;
|
||||
}
|
||||
body.dark-theme #combat #combat-round .encounters h4 {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme #combat #combat-round .encounters a {
|
||||
color: #D6D6D6;
|
||||
}
|
||||
body.dark-theme #combat #combat-round .encounters a:hover {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme #combat #combat-tracker li.combatant {
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme #combat #combat-tracker li.combatant:nth-child(even) {
|
||||
background: rgba(79, 79, 79, 0.5);
|
||||
}
|
||||
body.dark-theme #combat #combat-tracker li.combatant h4 {
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme #combat #combat-tracker li.combatant .roll {
|
||||
color: #D6D6D6;
|
||||
}
|
||||
body.dark-theme #combat #combat-tracker li.combatant .roll:hover {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme #combat #combat-tracker li.combatant .combatant-control {
|
||||
color: #D6D6D6;
|
||||
}
|
||||
body.dark-theme #combat #combat-tracker li.combatant .combatant-control.active {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme #combat #combat-tracker li.combatant .token-resource {
|
||||
color: white;
|
||||
border-right: 1px solid #828282;
|
||||
}
|
||||
body.dark-theme #combat #combat-tracker li.combatant.active {
|
||||
color: #0d99cc;
|
||||
}
|
||||
body.dark-theme #combat #combat-tracker li.combatant.active .initiative,
|
||||
body.dark-theme #combat #combat-tracker li.combatant.active h4 {
|
||||
color: #0d99cc;
|
||||
}
|
||||
body.dark-theme #combat #combat-tracker li.combatant.hidden {
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme #combat #combat-controls {
|
||||
border-top: 1px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-header .header-search i.fa-search {
|
||||
color: #0d99cc;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-header .header-search input {
|
||||
background: #363636;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .subdirectory {
|
||||
background: #2b2b2b;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .subdirectory .folder {
|
||||
border-left: 2px solid rgba(130, 130, 130, 0.4);
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-list li + li {
|
||||
border-top: 1px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-list .folder > .folder-header {
|
||||
background: #2b2b2b;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-list .folder > .folder-header h3 {
|
||||
background: #2b2b2b;
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-list .folder > .folder-header h3 > i {
|
||||
color: #0d99cc;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-list .folder > .folder-header a {
|
||||
color: #D6D6D6;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-list .folder > .folder-header a:hover {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-list .folder.collapsed > .folder-header {
|
||||
background: #2b2b2b;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-list .folder + .entity {
|
||||
border-top: 1px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-list .actor,
|
||||
body.dark-theme .sidebar-tab .directory-list .item,
|
||||
body.dark-theme .sidebar-tab .directory-list .journal,
|
||||
body.dark-theme .sidebar-tab .directory-list .table {
|
||||
background: #2b2b2b;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-list .actor .entity-name,
|
||||
body.dark-theme .sidebar-tab .directory-list .item .entity-name,
|
||||
body.dark-theme .sidebar-tab .directory-list .journal .entity-name,
|
||||
body.dark-theme .sidebar-tab .directory-list .table .entity-name {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.dark-theme .sidebar-tab .directory-list .actor:nth-child(even),
|
||||
body.dark-theme .sidebar-tab .directory-list .item:nth-child(even),
|
||||
body.dark-theme .sidebar-tab .directory-list .journal:nth-child(even),
|
||||
body.dark-theme .sidebar-tab .directory-list .table:nth-child(even) {
|
||||
background: rgba(79, 79, 79, 0.3);
|
||||
}
|
||||
body.dark-theme #scenes .scene {
|
||||
border-top: 1px solid #0d99cc;
|
||||
border-left: 4px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme #scenes .scene::after {
|
||||
box-shadow: 0 0 20px #0d99cc inset;
|
||||
}
|
||||
body.dark-theme #scenes .scene h3 {
|
||||
background: #2b2b2b;
|
||||
}
|
||||
body.dark-theme #playlists .directory-list li.playlist {
|
||||
background: #2b2b2b;
|
||||
}
|
||||
body.dark-theme #playlists .directory-list li.playlist .playlist-header {
|
||||
background: #2b2b2b;
|
||||
color: #E81111;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme #playlists .directory-list li.playlist li.sound {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.dark-theme #playlists .directory-list li.playlist a.sound-control {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme #compendium .compendium-entity {
|
||||
background: #2b2b2b !important;
|
||||
}
|
||||
body.dark-theme #compendium .compendium-entity h3 {
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme #compendium .compendium-entity ol.compendium-list li.compendium-pack:nth-child(even) {
|
||||
background: rgba(79, 79, 79, 0.3);
|
||||
}
|
||||
body.dark-theme #compendium .compendium-entity ol.compendium-list li.compendium-pack .pack-title .status-icons {
|
||||
color: #828282;
|
||||
}
|
||||
body.dark-theme #compendium .compendium-entity ol.compendium-list li.compendium-pack footer.compendium-footer {
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme #settings h2 {
|
||||
color: #E81111;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme #settings #game-details,
|
||||
body.dark-theme #settings #settings-game,
|
||||
body.dark-theme #settings #settings-documentation,
|
||||
body.dark-theme #settings #settings-access {
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme #navigation #nav-toggle {
|
||||
background: rgba(126, 214, 247, 0.4);
|
||||
color: white;
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
body.dark-theme #navigation .nav-item {
|
||||
border: 1px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme #navigation #scene-list .scene {
|
||||
border: 1px solid #0d99cc;
|
||||
background: rgba(126, 214, 247, 0.4);
|
||||
}
|
||||
body.dark-theme #navigation #scene-list .scene a {
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme #navigation #scene-list .scene.gm {
|
||||
border: 1px solid #afc6d6;
|
||||
background: rgba(13, 153, 204, 0.4);
|
||||
}
|
||||
body.dark-theme #navigation #scene-list .scene.view,
|
||||
body.dark-theme #navigation #scene-list .scene.context {
|
||||
box-shadow: 0 0 8px #07516c;
|
||||
border-color: #0d99cc;
|
||||
}
|
||||
body.dark-theme #navigation #scene-list .scene.active {
|
||||
border-color: #f46b6b;
|
||||
background: rgba(232, 17, 17, 0.6);
|
||||
box-shadow: 0 0 8px #890a0a;
|
||||
}
|
||||
body.dark-theme #controls .scene-control,
|
||||
body.dark-theme #controls .control-tool {
|
||||
background: rgba(126, 214, 247, 0.4);
|
||||
color: white;
|
||||
border: 1px solid #0d99cc;
|
||||
box-shadow: none;
|
||||
}
|
||||
body.dark-theme #controls .scene-control:hover,
|
||||
body.dark-theme #controls .control-tool:hover {
|
||||
background: rgba(126, 214, 247, 0.4);
|
||||
box-shadow: 0 0 8px #07516c;
|
||||
}
|
||||
body.dark-theme #controls .scene-control.active,
|
||||
body.dark-theme #controls .control-tool.active {
|
||||
border-color: #f46b6b;
|
||||
background: rgba(232, 17, 17, 0.6);
|
||||
box-shadow: 0 0 8px #890a0a;
|
||||
}
|
||||
body.dark-theme #players {
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
}
|
||||
body.dark-theme #players h3 {
|
||||
background: #2b2b2b;
|
||||
border: none;
|
||||
margin: 0;
|
||||
padding: 0 8px;
|
||||
font-size: 17px;
|
||||
line-height: 30px;
|
||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
||||
border-radius: 4px 4px 0 0;
|
||||
}
|
||||
body.dark-theme #players h3 .players-mode {
|
||||
color: #828282;
|
||||
}
|
||||
body.dark-theme #players ol {
|
||||
margin: 4px 0;
|
||||
}
|
||||
body.dark-theme #players ol .player-name.self {
|
||||
color: inherit;
|
||||
font-weight: 700;
|
||||
}
|
||||
body.dark-theme #players ol .player {
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme #players ol .player-active {
|
||||
margin-top: 7px;
|
||||
}
|
||||
body.dark-theme #players ol .player-active.active {
|
||||
box-shadow: none;
|
||||
}
|
||||
body.dark-theme .window-app {
|
||||
border-radius: 4px;
|
||||
border: none;
|
||||
box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
body.dark-theme .window-app > header {
|
||||
background: #2b2b2b;
|
||||
border-radius: 4px 4px 0 0;
|
||||
border: none;
|
||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
body.dark-theme .window-app .window-content {
|
||||
background: linear-gradient(90deg, #626262 0, #4d4d4d 30%, #4d4d4d 70%, #626262);
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme .window-app .window-content footer {
|
||||
margin-top: 8px;
|
||||
}
|
||||
body.dark-theme .window-app.minimized > header,
|
||||
body.dark-theme .window-app.minimized > .window-header {
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
margin: 0;
|
||||
}
|
||||
body.dark-theme #client-settings nav.tabs {
|
||||
border: none;
|
||||
font-size: 17px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
body.dark-theme #client-settings nav.tabs a.item {
|
||||
border-bottom: 3px solid transparent;
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme #client-settings nav.tabs a.item:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
body.dark-theme #client-settings nav.tabs a.item.active {
|
||||
text-shadow: none;
|
||||
border-bottom-color: #E81111;
|
||||
}
|
||||
body.dark-theme #client-settings section.content {
|
||||
border: none;
|
||||
margin-top: 4px;
|
||||
}
|
||||
body.dark-theme .dialog-buttons {
|
||||
margin-top: 8px;
|
||||
}
|
||||
body.dark-theme .dialog-buttons button:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
body.dark-theme .dialog-buttons button:not(.default) {
|
||||
border: 1px solid #E81111;
|
||||
margin-right: 4px;
|
||||
background: #828282;
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme .dialog-buttons button:not(.default):hover {
|
||||
background: #8f8f8f;
|
||||
}
|
||||
body.dark-theme .dialog-buttons button.normal.default {
|
||||
border: none;
|
||||
background: #E81111;
|
||||
color: white;
|
||||
}
|
||||
body.dark-theme .dialog-buttons button.normal.default:hover {
|
||||
background: #ef2424;
|
||||
}
|
||||
body.dark-theme .panel {
|
||||
background: white;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet .window-content {
|
||||
color: #1C1C1C;
|
||||
background: linear-gradient(90deg, #afc6d6 0, #d6d6d6 30%, #d6d6d6 70%, #afc6d6);
|
||||
}
|
||||
body.dark-theme .sw5e.sheet .window-content input,
|
||||
body.dark-theme .sw5e.sheet .window-content select {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet .window-content input:hover,
|
||||
body.dark-theme .sw5e.sheet .window-content select:hover {
|
||||
border-color: #4f4f4f;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet .window-content input:focus,
|
||||
body.dark-theme .sw5e.sheet .window-content select:focus {
|
||||
border-color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet .window-content button:hover,
|
||||
body.dark-theme .sw5e.sheet .window-content button:focus {
|
||||
border-color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor input:hover,
|
||||
body.dark-theme .sw5e.sheet.actor select:hover,
|
||||
body.dark-theme .sw5e.sheet.actor textarea:hover {
|
||||
border-color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor input:focus,
|
||||
body.dark-theme .sw5e.sheet.actor select:focus,
|
||||
body.dark-theme .sw5e.sheet.actor textarea:focus {
|
||||
border-color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet section > h1 {
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header h1.character-name {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header h1.character-name input[type="text"] {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .level-experience .xpbar {
|
||||
border: 1px solid #4f4f4f;
|
||||
background-color: #afc6d6;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .level-experience .xpbar .bar {
|
||||
background-color: #0d99cc;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .summary input,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .summary .proficiency {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value input {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value .value-separator {
|
||||
color: #828282;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer button {
|
||||
border: 1px solid #D6D6D6;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer button:hover {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-points button,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-dice button,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer.initiative button {
|
||||
border: 1px solid #D6D6D6;
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-points button:hover,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-dice button:hover,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer.initiative button:hover {
|
||||
border-color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet nav.sheet-navigation .item {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet nav.sheet-navigation .item.active {
|
||||
color: #E81111;
|
||||
border-bottom-color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet nav.sheet-navigation .item.active:hover {
|
||||
background: rgba(79, 79, 79, 0.1);
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet nav.sheet-navigation .item:hover {
|
||||
background: rgba(79, 79, 79, 0.1);
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .filter-list .filter-item {
|
||||
border-bottom: 2px solid #828282;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .filter-list .filter-item:hover {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .filter-list .filter-item.active {
|
||||
color: #E81111;
|
||||
border-bottom-color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list-header {
|
||||
background: #f0f0f0;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list-title {
|
||||
border-bottom: 1px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list-header .item-detail,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list .item-detail {
|
||||
border-left: 1px solid #D6D6D6;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item:nth-child(even),
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item:nth-child(even) {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item h4,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item h4 {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name .item-image::before,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name .item-image::before {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name.rollable:hover .item-image:hover::before,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name.rollable:hover .item-image:hover::before {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-control:hover,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-control:hover {
|
||||
color: #E81111 !important;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-control.item-toggle,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-control.item-toggle {
|
||||
color: #828282;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-control.item-toggle.active,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-control.item-toggle.active {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li {
|
||||
border: 1px solid #D6D6D6;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li h2:hover {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-score {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-modifiers .ability-mod,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-modifiers .ability-save {
|
||||
border-color: #D6D6D6;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .skills li:nth-child(even) {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .skills li .proficiency-toggle {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .skills li .skill-name:hover {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources nav button {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources nav button.active {
|
||||
color: #E81111;
|
||||
border-bottom-color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources nav button.active:hover {
|
||||
background: rgba(232, 17, 17, 0.1);
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources nav button:hover {
|
||||
background: rgba(79, 79, 79, 0.1);
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .trait-selector i.fas {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .languages label:hover {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource h1 input {
|
||||
color: #E81111;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value input {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value .value-separator {
|
||||
color: #828282;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter h4.rollable:hover {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter .death-success i {
|
||||
color: #0dce0d;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter .death-fail i {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.inventory .currency {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.inventory .encumbrance-wrapper .encumbrance-label {
|
||||
background: #D6D6D6;
|
||||
color: #1C1C1C;
|
||||
border: 1px solid #1C1C1C;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.inventory .encumbrance-wrapper .encumbrance {
|
||||
background: #afc6d6;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.inventory .encumbrance-wrapper .encumbrance .encumbrance-bar {
|
||||
background: #0d99cc;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.force-powerbook .powercasting-ability label,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.tech-powerbook .powercasting-ability label,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.force-powerbook .powercasting-ability h3,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.tech-powerbook .powercasting-ability h3 {
|
||||
color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.force-powerbook .powercasting-ability label span,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.tech-powerbook .powercasting-ability label span,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.force-powerbook .powercasting-ability h3 span,
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.tech-powerbook .powercasting-ability h3 span {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.notes section > input {
|
||||
color: #E81111;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor.npc .swalt-sheet header div.creature-type:hover {
|
||||
border-color: #E81111;
|
||||
}
|
||||
body.dark-theme .sw5e.sheet.actor.npc .swalt-sheet header .experience {
|
||||
color: #4f4f4f;
|
||||
}
|
1759
sw5e-global.css
1759
sw5e-global.css
File diff suppressed because it is too large
Load diff
786
sw5e-light.css
786
sw5e-light.css
|
@ -1,786 +0,0 @@
|
|||
/* ----------------------------------------- */
|
||||
/* Fonts */
|
||||
/* ----------------------------------------- */
|
||||
/* ----------------------------------------- */
|
||||
/* Sheet Styles */
|
||||
/* ----------------------------------------- */
|
||||
body.light-theme {
|
||||
/*-----------
|
||||
** Chat Tab
|
||||
-----------*/
|
||||
/*-----------
|
||||
** Combat Tab
|
||||
-----------*/
|
||||
/*
|
||||
** Folders
|
||||
*/
|
||||
}
|
||||
body.light-theme .app {
|
||||
background: linear-gradient(90deg, #afc6d6 0, #d6d6d6 30%, #d6d6d6 70%, #afc6d6);
|
||||
}
|
||||
body.light-theme h1,
|
||||
body.light-theme h2,
|
||||
body.light-theme h3,
|
||||
body.light-theme h4,
|
||||
body.light-theme h5,
|
||||
body.light-theme h6 {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme h3 {
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.light-theme a {
|
||||
color: #c40f0f;
|
||||
text-decoration: none;
|
||||
}
|
||||
body.light-theme a:hover,
|
||||
body.light-theme a:active {
|
||||
text-shadow: none;
|
||||
text-decoration: underline;
|
||||
}
|
||||
body.light-theme blockquote {
|
||||
padding: 4px 8px;
|
||||
background-color: #afc6d6;
|
||||
border: 1px solid #0d99cc;
|
||||
box-shadow: 0 0 20px rgba(13, 153, 204, 0.8);
|
||||
}
|
||||
body.light-theme hr {
|
||||
border-width: 0 0 1px 0;
|
||||
border-bottom: 1px solid #0d99cc;
|
||||
}
|
||||
body.light-theme input[type="text"],
|
||||
body.light-theme input[type="number"],
|
||||
body.light-theme input[type="password"],
|
||||
body.light-theme input[type="date"],
|
||||
body.light-theme input[type="time"],
|
||||
body.light-theme select,
|
||||
body.light-theme textarea {
|
||||
border: 1px solid #828282;
|
||||
}
|
||||
body.light-theme input[type="text"]:hover,
|
||||
body.light-theme input[type="number"]:hover,
|
||||
body.light-theme input[type="password"]:hover,
|
||||
body.light-theme input[type="date"]:hover,
|
||||
body.light-theme input[type="time"]:hover,
|
||||
body.light-theme select:hover,
|
||||
body.light-theme textarea:hover {
|
||||
border-color: #4f4f4f;
|
||||
}
|
||||
body.light-theme input[type="text"]:focus,
|
||||
body.light-theme input[type="number"]:focus,
|
||||
body.light-theme input[type="password"]:focus,
|
||||
body.light-theme input[type="date"]:focus,
|
||||
body.light-theme input[type="time"]:focus,
|
||||
body.light-theme select:focus,
|
||||
body.light-theme textarea:focus {
|
||||
border-color: #c40f0f;
|
||||
}
|
||||
body.light-theme input[type="text"]::placeholder,
|
||||
body.light-theme input[type="number"]::placeholder,
|
||||
body.light-theme input[type="password"]::placeholder,
|
||||
body.light-theme input[type="date"]::placeholder,
|
||||
body.light-theme input[type="time"]::placeholder,
|
||||
body.light-theme select::placeholder,
|
||||
body.light-theme textarea::placeholder {
|
||||
color: #1C1C1C;
|
||||
opacity: 0.5;
|
||||
}
|
||||
body.light-theme input[type="text"] ::-ms-input-placeholder,
|
||||
body.light-theme input[type="number"] ::-ms-input-placeholder,
|
||||
body.light-theme input[type="password"] ::-ms-input-placeholder,
|
||||
body.light-theme input[type="date"] ::-ms-input-placeholder,
|
||||
body.light-theme input[type="time"] ::-ms-input-placeholder,
|
||||
body.light-theme select ::-ms-input-placeholder,
|
||||
body.light-theme textarea ::-ms-input-placeholder {
|
||||
/* Microsoft Edge */
|
||||
color: #1C1C1C;
|
||||
opacity: 0.5;
|
||||
}
|
||||
body.light-theme button,
|
||||
body.light-theme input[type="button"],
|
||||
body.light-theme input[type="submit"],
|
||||
body.light-theme input[type="reset"] {
|
||||
background: #c40f0f;
|
||||
color: white;
|
||||
}
|
||||
body.light-theme button:hover,
|
||||
body.light-theme input[type="button"]:hover,
|
||||
body.light-theme input[type="submit"]:hover,
|
||||
body.light-theme input[type="reset"]:hover,
|
||||
body.light-theme button:focus,
|
||||
body.light-theme input[type="button"]:focus,
|
||||
body.light-theme input[type="submit"]:focus,
|
||||
body.light-theme input[type="reset"]:focus {
|
||||
background: #dc1111;
|
||||
}
|
||||
body.light-theme button:disabled:hover,
|
||||
body.light-theme input[type="button"]:disabled:hover,
|
||||
body.light-theme input[type="submit"]:disabled:hover,
|
||||
body.light-theme input[type="reset"]:disabled:hover,
|
||||
body.light-theme button:disabled:focus,
|
||||
body.light-theme input[type="button"]:disabled:focus,
|
||||
body.light-theme input[type="submit"]:disabled:focus,
|
||||
body.light-theme input[type="reset"]:disabled:focus {
|
||||
background: #c40f0f;
|
||||
}
|
||||
body.light-theme input[type="reset"],
|
||||
body.light-theme button.secondary,
|
||||
body.light-theme button[type="reset"],
|
||||
body.light-theme input[type="button"].secondary,
|
||||
body.light-theme input[type="submit"].secondary {
|
||||
background: #D6D6D6;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme input[type="reset"]:hover,
|
||||
body.light-theme button.secondary:hover,
|
||||
body.light-theme button[type="reset"]:hover,
|
||||
body.light-theme input[type="button"].secondary:hover,
|
||||
body.light-theme input[type="submit"].secondary:hover {
|
||||
background: #e3e3e3;
|
||||
}
|
||||
body.light-theme input[type="reset"]:disabled:hover,
|
||||
body.light-theme button.secondary:disabled:hover,
|
||||
body.light-theme button[type="reset"]:disabled:hover,
|
||||
body.light-theme input[type="button"].secondary:disabled:hover,
|
||||
body.light-theme input[type="submit"].secondary:disabled:hover,
|
||||
body.light-theme input[type="reset"]:disabled:focus,
|
||||
body.light-theme button.secondary:disabled:focus,
|
||||
body.light-theme button[type="reset"]:disabled:focus,
|
||||
body.light-theme input[type="button"].secondary:disabled:focus,
|
||||
body.light-theme input[type="submit"].secondary:disabled:focus {
|
||||
background: #D6D6D6;
|
||||
}
|
||||
body.light-theme form button {
|
||||
border: none;
|
||||
}
|
||||
body.light-theme form .notes,
|
||||
body.light-theme form .hint {
|
||||
color: rgba(28, 28, 28, 0.8);
|
||||
}
|
||||
body.light-theme #sidebar-tabs {
|
||||
background: white;
|
||||
}
|
||||
body.light-theme #sidebar-tabs > .collapse {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme #sidebar-tabs .item.active {
|
||||
color: #c40f0f;
|
||||
border-bottom: 3px solid #c40f0f;
|
||||
}
|
||||
body.light-theme #chat-log .chat-message {
|
||||
background: white;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme #chat-log .chat-message > header {
|
||||
color: #c40f0f;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.light-theme #chat-log .chat-message > header span {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .notification-pip {
|
||||
color: #0d99cc;
|
||||
}
|
||||
body.light-theme .sw5e.chat-card .card-header h3,
|
||||
body.light-theme .midi-qol-item-card .card-header h3 {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .sw5e.chat-card .card-header h3:hover,
|
||||
body.light-theme .midi-qol-item-card .card-header h3:hover {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .sw5e.chat-card .card-buttons span,
|
||||
body.light-theme .midi-qol-item-card .card-buttons span {
|
||||
border: 1px solid #828282;
|
||||
}
|
||||
body.light-theme .sw5e.chat-card .card-footer,
|
||||
body.light-theme .midi-qol-item-card .card-footer {
|
||||
border-top: 1px solid #7ed6f7;
|
||||
}
|
||||
body.light-theme .sw5e.chat-card .card-footer span,
|
||||
body.light-theme .midi-qol-item-card .card-footer span {
|
||||
border-right: 1px solid #D6D6D6;
|
||||
}
|
||||
body.light-theme .sw5e.chat-card .card-footer span:last-child,
|
||||
body.light-theme .midi-qol-item-card .card-footer span:last-child {
|
||||
border-right: none;
|
||||
}
|
||||
body.light-theme .dice-roll .dice-formula {
|
||||
background: #D6D6D6;
|
||||
color: #1C1C1C;
|
||||
box-shadow: none;
|
||||
border-radius: 4px;
|
||||
}
|
||||
body.light-theme .dice-roll .dice-total {
|
||||
background: #afc6d6;
|
||||
border: 1px solid #0d99cc;
|
||||
box-shadow: 0 0 12px rgba(13, 153, 204, 0.8);
|
||||
}
|
||||
body.light-theme .dice-roll .dice-total.success {
|
||||
color: #0dce0d;
|
||||
}
|
||||
body.light-theme .dice-roll .dice-total.failure {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .dice-roll .dice-total.critical {
|
||||
color: #0dce0d;
|
||||
background: #bcdcbe;
|
||||
box-shadow: 0 0 12px rgba(13, 206, 13, 0.5);
|
||||
}
|
||||
body.light-theme .dice-roll .dice-total.fumble {
|
||||
color: #c40f0f;
|
||||
background: #FBF4F4;
|
||||
box-shadow: 0 0 12px rgba(196, 15, 15, 0.5);
|
||||
}
|
||||
body.light-theme #chat-controls .roll-type-select {
|
||||
background: #a9a9a9;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme #chat-controls label {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme #chat-form textarea {
|
||||
background: #a9a9a9;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme #combat #combat-round {
|
||||
color: #c40f0f;
|
||||
border-bottom: 2px solid #c40f0f;
|
||||
}
|
||||
body.light-theme #combat #combat-round .encounters h4 {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme #combat #combat-round .encounters a {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.light-theme #combat #combat-round .encounters a:hover {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme #combat #combat-tracker li.combatant {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme #combat #combat-tracker li.combatant:nth-child(even) {
|
||||
background: rgba(175, 198, 214, 0.5);
|
||||
}
|
||||
body.light-theme #combat #combat-tracker li.combatant h4 {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme #combat #combat-tracker li.combatant .roll {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.light-theme #combat #combat-tracker li.combatant .roll:hover {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme #combat #combat-tracker li.combatant .combatant-control {
|
||||
color: #828282;
|
||||
}
|
||||
body.light-theme #combat #combat-tracker li.combatant .combatant-control.active {
|
||||
color: #363636;
|
||||
}
|
||||
body.light-theme #combat #combat-tracker li.combatant .token-resource {
|
||||
color: #4f4f4f;
|
||||
border-right: 1px solid #828282;
|
||||
}
|
||||
body.light-theme #combat #combat-tracker li.combatant.active {
|
||||
color: #0d99cc;
|
||||
}
|
||||
body.light-theme #combat #combat-tracker li.combatant.active .initiative,
|
||||
body.light-theme #combat #combat-tracker li.combatant.active h4 {
|
||||
color: #0d99cc;
|
||||
}
|
||||
body.light-theme #combat #combat-tracker li.combatant.hidden {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme #combat #combat-controls {
|
||||
border-top: 1px solid #0d99cc;
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-header .header-search i.fa-search {
|
||||
color: #0d99cc;
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-header .header-search input {
|
||||
background: white;
|
||||
}
|
||||
body.light-theme .sidebar-tab .subdirectory {
|
||||
background: white;
|
||||
}
|
||||
body.light-theme .sidebar-tab .subdirectory .folder {
|
||||
border-left: 2px solid rgba(28, 28, 28, 0.4);
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-list li + li {
|
||||
border-top: 1px solid #0d99cc;
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-list .folder > .folder-header {
|
||||
background: white;
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-list .folder > .folder-header h3 {
|
||||
background: white;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-list .folder > .folder-header h3 > i {
|
||||
color: #0d99cc;
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-list .folder > .folder-header a {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-list .folder > .folder-header a:hover {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-list .folder.collapsed > .folder-header {
|
||||
background: white;
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-list .folder + .entity {
|
||||
border-top: 1px solid #0d99cc;
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-list .actor,
|
||||
body.light-theme .sidebar-tab .directory-list .item,
|
||||
body.light-theme .sidebar-tab .directory-list .journal,
|
||||
body.light-theme .sidebar-tab .directory-list .table {
|
||||
background: white;
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-list .actor .entity-name,
|
||||
body.light-theme .sidebar-tab .directory-list .item .entity-name,
|
||||
body.light-theme .sidebar-tab .directory-list .journal .entity-name,
|
||||
body.light-theme .sidebar-tab .directory-list .table .entity-name {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .sidebar-tab .directory-list .actor:nth-child(even),
|
||||
body.light-theme .sidebar-tab .directory-list .item:nth-child(even),
|
||||
body.light-theme .sidebar-tab .directory-list .journal:nth-child(even),
|
||||
body.light-theme .sidebar-tab .directory-list .table:nth-child(even) {
|
||||
background: rgba(175, 198, 214, 0.3);
|
||||
}
|
||||
body.light-theme #scenes .scene {
|
||||
border-top: 1px solid #0d99cc;
|
||||
border-left: 4px solid #0d99cc;
|
||||
}
|
||||
body.light-theme #scenes .scene::after {
|
||||
box-shadow: 0 0 20px #0d99cc inset;
|
||||
}
|
||||
body.light-theme #scenes .scene h3 {
|
||||
background: white;
|
||||
}
|
||||
body.light-theme #playlists .directory-list li.playlist {
|
||||
background: white;
|
||||
}
|
||||
body.light-theme #playlists .directory-list li.playlist .playlist-header {
|
||||
background: white;
|
||||
color: #c40f0f;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.light-theme #playlists .directory-list li.playlist li.sound {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme #playlists .directory-list li.playlist a.sound-control {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme #compendium .compendium-entity {
|
||||
background: white !important;
|
||||
}
|
||||
body.light-theme #compendium .compendium-entity h3 {
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.light-theme #compendium .compendium-entity ol.compendium-list li.compendium-pack:nth-child(even) {
|
||||
background: rgba(175, 198, 214, 0.3);
|
||||
}
|
||||
body.light-theme #compendium .compendium-entity ol.compendium-list li.compendium-pack .pack-title .status-icons {
|
||||
color: #828282;
|
||||
}
|
||||
body.light-theme #compendium .compendium-entity ol.compendium-list li.compendium-pack footer.compendium-footer {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme #settings h2 {
|
||||
color: #c40f0f;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.light-theme #settings #game-details,
|
||||
body.light-theme #settings #settings-game,
|
||||
body.light-theme #settings #settings-documentation,
|
||||
body.light-theme #settings #settings-access {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme #navigation #nav-toggle {
|
||||
background: rgba(126, 214, 247, 0.4);
|
||||
color: white;
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
body.light-theme #navigation .nav-item {
|
||||
border: 1px solid #0d99cc;
|
||||
}
|
||||
body.light-theme #navigation #scene-list .scene {
|
||||
border: 1px solid #0d99cc;
|
||||
background: rgba(126, 214, 247, 0.4);
|
||||
}
|
||||
body.light-theme #navigation #scene-list .scene a {
|
||||
color: white;
|
||||
}
|
||||
body.light-theme #navigation #scene-list .scene.gm {
|
||||
border: 1px solid #afc6d6;
|
||||
background: rgba(13, 153, 204, 0.4);
|
||||
}
|
||||
body.light-theme #navigation #scene-list .scene.view,
|
||||
body.light-theme #navigation #scene-list .scene.context {
|
||||
box-shadow: 0 0 8px #07516c;
|
||||
border-color: #0d99cc;
|
||||
}
|
||||
body.light-theme #navigation #scene-list .scene.active {
|
||||
border-color: #f14848;
|
||||
background: rgba(196, 15, 15, 0.6);
|
||||
box-shadow: 0 0 8px #650808;
|
||||
}
|
||||
body.light-theme #controls .scene-control,
|
||||
body.light-theme #controls .control-tool {
|
||||
background: rgba(126, 214, 247, 0.4);
|
||||
color: white;
|
||||
border: 1px solid #0d99cc;
|
||||
box-shadow: none;
|
||||
}
|
||||
body.light-theme #controls .scene-control:hover,
|
||||
body.light-theme #controls .control-tool:hover {
|
||||
background: rgba(126, 214, 247, 0.4);
|
||||
box-shadow: 0 0 8px #07516c;
|
||||
}
|
||||
body.light-theme #controls .scene-control.active,
|
||||
body.light-theme #controls .control-tool.active {
|
||||
border-color: #f14848;
|
||||
background: rgba(196, 15, 15, 0.6);
|
||||
box-shadow: 0 0 8px #650808;
|
||||
}
|
||||
body.light-theme #players {
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
}
|
||||
body.light-theme #players h3 {
|
||||
background: white;
|
||||
border: none;
|
||||
margin: 0;
|
||||
padding: 0 8px;
|
||||
font-size: 17px;
|
||||
line-height: 30px;
|
||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
||||
border-radius: 4px 4px 0 0;
|
||||
}
|
||||
body.light-theme #players h3 .players-mode {
|
||||
color: #828282;
|
||||
}
|
||||
body.light-theme #players ol {
|
||||
margin: 4px 0;
|
||||
}
|
||||
body.light-theme #players ol .player-name.self {
|
||||
color: inherit;
|
||||
font-weight: 700;
|
||||
}
|
||||
body.light-theme #players ol .player {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme #players ol .player-active {
|
||||
margin-top: 7px;
|
||||
}
|
||||
body.light-theme #players ol .player-active.active {
|
||||
box-shadow: none;
|
||||
}
|
||||
body.light-theme .window-app {
|
||||
border-radius: 4px;
|
||||
border: none;
|
||||
box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
body.light-theme .window-app > header {
|
||||
background: white;
|
||||
border-radius: 4px 4px 0 0;
|
||||
border: none;
|
||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
body.light-theme .window-app .window-content {
|
||||
background: linear-gradient(90deg, #afc6d6 0, #d6d6d6 30%, #d6d6d6 70%, #afc6d6);
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .window-app .window-content footer {
|
||||
margin-top: 8px;
|
||||
}
|
||||
body.light-theme .window-app.minimized > header,
|
||||
body.light-theme .window-app.minimized > .window-header {
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
margin: 0;
|
||||
}
|
||||
body.light-theme #client-settings nav.tabs {
|
||||
border: none;
|
||||
font-size: 17px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
body.light-theme #client-settings nav.tabs a.item {
|
||||
border-bottom: 3px solid transparent;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme #client-settings nav.tabs a.item:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
body.light-theme #client-settings nav.tabs a.item.active {
|
||||
text-shadow: none;
|
||||
border-bottom-color: #c40f0f;
|
||||
}
|
||||
body.light-theme #client-settings section.content {
|
||||
border: none;
|
||||
margin-top: 4px;
|
||||
}
|
||||
body.light-theme .dialog-buttons {
|
||||
margin-top: 8px;
|
||||
}
|
||||
body.light-theme .dialog-buttons button:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
body.light-theme .dialog-buttons button:not(.default) {
|
||||
border: 1px solid #c40f0f;
|
||||
margin-right: 4px;
|
||||
background: #D6D6D6;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .dialog-buttons button:not(.default):hover {
|
||||
background: #e3e3e3;
|
||||
}
|
||||
body.light-theme .dialog-buttons button.normal.default {
|
||||
border: none;
|
||||
background: #c40f0f;
|
||||
color: white;
|
||||
}
|
||||
body.light-theme .dialog-buttons button.normal.default:hover {
|
||||
background: #dc1111;
|
||||
}
|
||||
body.light-theme .panel {
|
||||
background: white;
|
||||
}
|
||||
body.light-theme .sw5e.sheet .window-content {
|
||||
color: #1C1C1C;
|
||||
background: linear-gradient(90deg, #afc6d6 0, #d6d6d6 30%, #d6d6d6 70%, #afc6d6);
|
||||
}
|
||||
body.light-theme .sw5e.sheet .window-content input,
|
||||
body.light-theme .sw5e.sheet .window-content select {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .sw5e.sheet .window-content input:hover,
|
||||
body.light-theme .sw5e.sheet .window-content select:hover {
|
||||
border-color: #4f4f4f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet .window-content input:focus,
|
||||
body.light-theme .sw5e.sheet .window-content select:focus {
|
||||
border-color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet .window-content button:hover,
|
||||
body.light-theme .sw5e.sheet .window-content button:focus {
|
||||
border-color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor input:hover,
|
||||
body.light-theme .sw5e.sheet.actor select:hover,
|
||||
body.light-theme .sw5e.sheet.actor textarea:hover {
|
||||
border-color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor input:focus,
|
||||
body.light-theme .sw5e.sheet.actor select:focus,
|
||||
body.light-theme .sw5e.sheet.actor textarea:focus {
|
||||
border-color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet section > h1 {
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header h1.character-name {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header h1.character-name input[type="text"] {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .level-experience .xpbar {
|
||||
border: 1px solid #4f4f4f;
|
||||
background-color: #afc6d6;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .level-experience .xpbar .bar {
|
||||
background-color: #0d99cc;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .summary input,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .summary .proficiency {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value input {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value .value-separator {
|
||||
color: #828282;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer button {
|
||||
border: 1px solid #D6D6D6;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer button:hover {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-points button,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-dice button,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer.initiative button {
|
||||
border: 1px solid #D6D6D6;
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-points button:hover,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-dice button:hover,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet header .attributes footer.initiative button:hover {
|
||||
border-color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet nav.sheet-navigation .item {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet nav.sheet-navigation .item.active {
|
||||
color: #c40f0f;
|
||||
border-bottom-color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet nav.sheet-navigation .item.active:hover {
|
||||
background: rgba(79, 79, 79, 0.1);
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet nav.sheet-navigation .item:hover {
|
||||
background: rgba(79, 79, 79, 0.1);
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .filter-list .filter-item {
|
||||
border-bottom: 2px solid #828282;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .filter-list .filter-item:hover {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .filter-list .filter-item.active {
|
||||
color: #c40f0f;
|
||||
border-bottom-color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list-header {
|
||||
background: #f0f0f0;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list-title {
|
||||
border-bottom: 1px solid #0d99cc;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list-header .item-detail,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list .item-detail {
|
||||
border-left: 1px solid #D6D6D6;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item:nth-child(even),
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item:nth-child(even) {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item h4,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item h4 {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name .item-image::before,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name .item-image::before {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name.rollable:hover .item-image:hover::before,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name.rollable:hover .item-image:hover::before {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-control:hover,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-control:hover {
|
||||
color: #c40f0f !important;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-control.item-toggle,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-control.item-toggle {
|
||||
color: #828282;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-control.item-toggle.active,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-control.item-toggle.active {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li {
|
||||
border: 1px solid #D6D6D6;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li h2:hover {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-score {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-modifiers .ability-mod,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-modifiers .ability-save {
|
||||
border-color: #D6D6D6;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .skills li:nth-child(even) {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .skills li .proficiency-toggle {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .skills li .skill-name:hover {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources nav button {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources nav button.active {
|
||||
color: #c40f0f;
|
||||
border-bottom-color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources nav button.active:hover {
|
||||
background: rgba(196, 15, 15, 0.1);
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources nav button:hover {
|
||||
background: rgba(79, 79, 79, 0.1);
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .trait-selector i.fas {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .languages label:hover {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource h1 input {
|
||||
color: #c40f0f;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value input {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value .value-separator {
|
||||
color: #828282;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter h4.rollable:hover {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter .death-success i {
|
||||
color: #0dce0d;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter .death-fail i {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.inventory .currency {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.inventory .encumbrance-wrapper .encumbrance-label {
|
||||
background: #D6D6D6;
|
||||
color: #1C1C1C;
|
||||
border: 1px solid #1C1C1C;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.inventory .encumbrance-wrapper .encumbrance {
|
||||
background: #afc6d6;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.inventory .encumbrance-wrapper .encumbrance .encumbrance-bar {
|
||||
background: #0d99cc;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.force-powerbook .powercasting-ability label,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.tech-powerbook .powercasting-ability label,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.force-powerbook .powercasting-ability h3,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.tech-powerbook .powercasting-ability h3 {
|
||||
color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.force-powerbook .powercasting-ability label span,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.tech-powerbook .powercasting-ability label span,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.force-powerbook .powercasting-ability h3 span,
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.tech-powerbook .powercasting-ability h3 span {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.notes section > input {
|
||||
color: #c40f0f;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor.npc .swalt-sheet header div.creature-type:hover {
|
||||
border-color: #c40f0f;
|
||||
}
|
||||
body.light-theme .sw5e.sheet.actor.npc .swalt-sheet header .experience {
|
||||
color: #4f4f4f;
|
||||
}
|
757
sw5e-update.css
757
sw5e-update.css
|
@ -1,757 +0,0 @@
|
|||
/* ----------------------------------------- */
|
||||
/* Fonts */
|
||||
/* ----------------------------------------- */
|
||||
/* russo-one-regular - latin */
|
||||
@font-face {
|
||||
font-family: 'Russo One';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url('./fonts/RussoOne.ttf');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Russo One';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url('./fonts/RussoOne.ttf');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Russo One';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url('./fonts/RussoOne.ttf');
|
||||
}
|
||||
/* open-sans-regular - latin */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url('./fonts/OpenSans-Regular.ttf');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url('./fonts/OpenSans-Italic.ttf');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url('./fonts/OpenSans-Bold.ttf');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: url('./fonts/OpenSans-BoldItalic.ttf');
|
||||
}
|
||||
/* ----------------------------------------- */
|
||||
/* Sheet Styles */
|
||||
/* ----------------------------------------- */
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
::-webkit-scrollbar-track {
|
||||
border: 1px solid #0d99cc;
|
||||
border-radius: 4px;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
outline: none;
|
||||
border-radius: 4px;
|
||||
background: #0d99cc;
|
||||
border: none;
|
||||
}
|
||||
:root {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #0d99cc #afc6d6;
|
||||
}
|
||||
body {
|
||||
font-family: 'Open Sans';
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
}
|
||||
h1 {
|
||||
font-family: 'Russo One';
|
||||
font-size: 34px;
|
||||
font-weight: 400;
|
||||
}
|
||||
h2 {
|
||||
font-family: 'Russo One';
|
||||
font-size: 27px;
|
||||
font-weight: 400;
|
||||
}
|
||||
h3 {
|
||||
font-family: 'Russo One';
|
||||
font-size: 21px;
|
||||
font-weight: 400;
|
||||
}
|
||||
h4 {
|
||||
font-family: 'Russo One';
|
||||
font-size: 17px;
|
||||
font-weight: 400;
|
||||
}
|
||||
h5,
|
||||
h6 {
|
||||
font-family: 'Russo One';
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
}
|
||||
a {
|
||||
color: #c40f0f;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover,
|
||||
a:active {
|
||||
text-shadow: none;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.app {
|
||||
background: linear-gradient(90deg, #afc6d6 0%, #D6D6D6 30%, #D6D6D6 70%, #afc6d6);
|
||||
border: none;
|
||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
#context-menu {
|
||||
background: none;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
color: #1C1C1C;
|
||||
padding: 0 8px;
|
||||
}
|
||||
#context-menu ol.context-items {
|
||||
background: white;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #828282;
|
||||
box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
#context-menu ol.context-items li.context-item:first-child {
|
||||
border-top-left-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
}
|
||||
#context-menu ol.context-items li.context-item:last-child {
|
||||
border-bottom-left-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
#context-menu ol.context-items li.context-item i {
|
||||
color: #0d99cc;
|
||||
}
|
||||
#context-menu ol.context-items li.context-item:hover {
|
||||
background: #c40f0f;
|
||||
color: white;
|
||||
text-shadow: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
#context-menu ol.context-items li.context-item:hover i {
|
||||
color: white;
|
||||
}
|
||||
#context-menu ol.context-items li.context-item + li {
|
||||
border-top: 1px solid #D6D6D6;
|
||||
}
|
||||
input[type="text"],
|
||||
input[type="number"],
|
||||
input[type="password"],
|
||||
input[type="date"],
|
||||
input[type="time"],
|
||||
select,
|
||||
textarea {
|
||||
border: 1px solid #828282;
|
||||
border-radius: 4px;
|
||||
color: #1C1C1C;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
input[type="text"]:hover,
|
||||
input[type="number"]:hover,
|
||||
input[type="password"]:hover,
|
||||
input[type="date"]:hover,
|
||||
input[type="time"]:hover,
|
||||
select:hover,
|
||||
textarea:hover {
|
||||
border-color: #4f4f4f;
|
||||
box-shadow: none;
|
||||
}
|
||||
input[type="text"]:focus,
|
||||
input[type="number"]:focus,
|
||||
input[type="password"]:focus,
|
||||
input[type="date"]:focus,
|
||||
input[type="time"]:focus,
|
||||
select:focus,
|
||||
textarea:focus {
|
||||
border-color: #c40f0f;
|
||||
box-shadow: none;
|
||||
}
|
||||
input[type=range] {
|
||||
-webkit-appearance: none;
|
||||
/* Hides the slider so that custom slider can be made */
|
||||
width: 100%;
|
||||
/* Specific width is required for Firefox. */
|
||||
background: transparent;
|
||||
/* Otherwise white in Chrome */
|
||||
}
|
||||
input[type=range]::-webkit-slider-thumb {
|
||||
-webkit-appearance: none;
|
||||
background: #c40f0f;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 32px;
|
||||
cursor: pointer;
|
||||
box-shadow: none;
|
||||
}
|
||||
input[type=range]::-moz-range-thumb {
|
||||
-webkit-appearance: none;
|
||||
background: #c40f0f;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 32px;
|
||||
cursor: pointer;
|
||||
box-shadow: none;
|
||||
}
|
||||
input[type=range]::-ms-thumb {
|
||||
-webkit-appearance: none;
|
||||
background: #c40f0f;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 32px;
|
||||
cursor: pointer;
|
||||
box-shadow: none;
|
||||
}
|
||||
input[type=range]::-webkit-slider-runnable-track {
|
||||
width: 100%;
|
||||
height: 6px;
|
||||
cursor: pointer;
|
||||
background: #7ed6f7;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #0d99cc;
|
||||
box-shadow: none;
|
||||
}
|
||||
input[type=range]:focus::-webkit-slider-runnable-track {
|
||||
background: #0d99cc;
|
||||
}
|
||||
input[type=range]::-moz-range-track {
|
||||
width: 100%;
|
||||
height: 6px;
|
||||
cursor: pointer;
|
||||
background: #7ed6f7;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #0d99cc;
|
||||
box-shadow: none;
|
||||
}
|
||||
input[type=range]::-ms-track {
|
||||
width: 100%;
|
||||
height: 6px;
|
||||
cursor: pointer;
|
||||
background: #7ed6f7;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #0d99cc;
|
||||
box-shadow: none;
|
||||
}
|
||||
input[type=range]:focus {
|
||||
outline: none;
|
||||
/* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
|
||||
}
|
||||
input[type=range]::-ms-track {
|
||||
width: 100%;
|
||||
cursor: pointer;
|
||||
/* Hides the slider so custom styles can be added */
|
||||
background: transparent;
|
||||
border-color: transparent;
|
||||
color: transparent;
|
||||
}
|
||||
button {
|
||||
font-family: 'Open Sans';
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
background: #c40f0f;
|
||||
color: white;
|
||||
text-align: center;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
button:hover,
|
||||
button:focus {
|
||||
box-shadow: none;
|
||||
background: #dc1111;
|
||||
}
|
||||
#sidebar {
|
||||
border: none;
|
||||
}
|
||||
#sidebar-tabs {
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
background: white;
|
||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
#sidebar-tabs > .collapse {
|
||||
color: #c40f0f;
|
||||
}
|
||||
#sidebar-tabs .item {
|
||||
font-size: 16px;
|
||||
}
|
||||
#sidebar-tabs .item.active {
|
||||
color: #c40f0f;
|
||||
border: none;
|
||||
border-bottom: 3px solid #c40f0f;
|
||||
box-shadow: none;
|
||||
background: none;
|
||||
text-shadow: none;
|
||||
}
|
||||
/*-----------
|
||||
** Chat Tab
|
||||
-----------*/
|
||||
#chat-log .chat-message {
|
||||
background: white;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
margin-bottom: 8px;
|
||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
#chat-log .chat-message > header {
|
||||
color: #c40f0f;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
#chat-log .chat-message > header span {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
.notification-pip {
|
||||
color: #0d99cc;
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.chat-card {
|
||||
font-size: 13px;
|
||||
}
|
||||
.sw5e.chat-card .card-header {
|
||||
padding: 0;
|
||||
border: none;
|
||||
}
|
||||
.sw5e.chat-card .card-header img {
|
||||
flex: 0 0 36px;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.sw5e.chat-card .card-header h3 {
|
||||
flex: 1;
|
||||
margin: 0;
|
||||
line-height: 36px;
|
||||
font-family: 'Russo One';
|
||||
font-size: 17px;
|
||||
font-weight: 400;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
.sw5e.chat-card .card-header h3:hover {
|
||||
color: #1C1C1C;
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.chat-card .card-content {
|
||||
margin: 4px 0;
|
||||
}
|
||||
.sw5e.chat-card .card-content h3 {
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
font-weight: bold;
|
||||
}
|
||||
.sw5e.chat-card .card-content > * {
|
||||
-webkit-user-select: text;
|
||||
-moz-user-select: text;
|
||||
-ms-user-select: text;
|
||||
user-select: text;
|
||||
}
|
||||
.sw5e.chat-card .card-buttons {
|
||||
margin: 4px 0;
|
||||
}
|
||||
.sw5e.chat-card .card-buttons span {
|
||||
display: block;
|
||||
line-height: 28px;
|
||||
text-align: center;
|
||||
border: 1px solid #828282;
|
||||
}
|
||||
.sw5e.chat-card .card-buttons button {
|
||||
font-family: 'Open Sans';
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
padding: 4px 0;
|
||||
height: auto;
|
||||
line-height: 1.6;
|
||||
margin: 4px 0;
|
||||
background: #c40f0f;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.sw5e.chat-card .card-buttons button:hover,
|
||||
.sw5e.chat-card .card-buttons button:focus {
|
||||
background-color: #dc1111;
|
||||
box-shadow: none;
|
||||
}
|
||||
.sw5e.chat-card .card-footer {
|
||||
padding: 4px 0 0;
|
||||
border-top: 1px solid #7ed6f7;
|
||||
}
|
||||
.sw5e.chat-card .card-footer span {
|
||||
border-right: 2px groove #FFF;
|
||||
padding: 0 3px 0 0;
|
||||
font-size: 10px;
|
||||
}
|
||||
.sw5e.chat-card .card-footer span:last-child {
|
||||
border-right: none;
|
||||
padding-right: 0;
|
||||
}
|
||||
.dice-roll .dice-formula {
|
||||
background: none;
|
||||
border: none;
|
||||
}
|
||||
.dice-roll .dice-total {
|
||||
background: #afc6d6;
|
||||
border: 1px solid #0d99cc;
|
||||
border-radius: 0;
|
||||
padding: 4px 0;
|
||||
box-shadow: 0 0 12px rgba(13, 153, 204, 0.5);
|
||||
}
|
||||
.dice-roll .dice-total.success {
|
||||
color: inherit;
|
||||
background: #c7d0c0;
|
||||
border: 1px solid #006c00;
|
||||
}
|
||||
.dice-roll .dice-total.failure {
|
||||
color: inherit;
|
||||
background: #ffdddd;
|
||||
border: 1px solid #6e0000;
|
||||
}
|
||||
.dice-roll .dice-total.critical {
|
||||
color: #0dce0d;
|
||||
background: #bcdcbe;
|
||||
box-shadow: 0 0 12px rgba(13, 206, 13, 0.5);
|
||||
}
|
||||
.dice-roll .dice-total.fumble {
|
||||
color: red;
|
||||
}
|
||||
#chat-controls {
|
||||
padding-top: 4px;
|
||||
}
|
||||
#chat-controls label {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
#chat-form textarea {
|
||||
background: white;
|
||||
}
|
||||
#chat-form textarea:focus {
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
}
|
||||
/*-----------
|
||||
** Combat Tab
|
||||
-----------*/
|
||||
#combat #combat-round {
|
||||
color: #c40f0f;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
#combat #combat-round .encounters h4 {
|
||||
color: #c40f0f;
|
||||
}
|
||||
#combat #combat-round .encounters a {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
#combat #combat-round .encounters a:hover {
|
||||
color: #c40f0f;
|
||||
}
|
||||
#combat #combat-tracker li.combatant {
|
||||
padding: 4px 0;
|
||||
color: #1C1C1C;
|
||||
background: none;
|
||||
}
|
||||
#combat #combat-tracker li.combatant:nth-child(even) {
|
||||
background: rgba(175, 198, 214, 0.5);
|
||||
}
|
||||
#combat #combat-tracker li.combatant h4 {
|
||||
color: #1C1C1C;
|
||||
text-shadow: none;
|
||||
}
|
||||
#combat #combat-tracker li.combatant .roll {
|
||||
background: none;
|
||||
color: #4f4f4f;
|
||||
}
|
||||
#combat #combat-tracker li.combatant .roll::before {
|
||||
content: "\f6cf";
|
||||
font-family: "Font Awesome 5 Free";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-rendering: auto;
|
||||
font-weight: 900;
|
||||
font-size: 28px;
|
||||
}
|
||||
#combat #combat-tracker li.combatant .roll:hover {
|
||||
color: #c40f0f;
|
||||
}
|
||||
#combat #combat-tracker li.combatant .combatant-control {
|
||||
color: #828282;
|
||||
text-shadow: none;
|
||||
}
|
||||
#combat #combat-tracker li.combatant .combatant-control.active {
|
||||
color: #363636;
|
||||
}
|
||||
#combat #combat-tracker li.combatant .token-resource {
|
||||
color: #4f4f4f;
|
||||
border-right: 1px solid #828282;
|
||||
}
|
||||
#combat #combat-tracker li.combatant .initiative {
|
||||
text-shadow: none;
|
||||
}
|
||||
#combat #combat-tracker li.combatant.active {
|
||||
color: #0d99cc;
|
||||
}
|
||||
#combat #combat-tracker li.combatant.active .initiative,
|
||||
#combat #combat-tracker li.combatant.active h4 {
|
||||
color: #0d99cc;
|
||||
}
|
||||
#combat #combat-tracker li.combatant.hidden {
|
||||
opacity: 0.5;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
#combat #combat-controls {
|
||||
padding-top: 0;
|
||||
border-top: 1px solid #0d99cc;
|
||||
}
|
||||
/*
|
||||
** Folders
|
||||
*/
|
||||
.sidebar-tab .directory-header {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
.sidebar-tab .directory-header .header-search {
|
||||
position: relative;
|
||||
}
|
||||
.sidebar-tab .directory-header .header-search i.fa-search {
|
||||
position: absolute;
|
||||
left: 8px;
|
||||
color: #0d99cc;
|
||||
}
|
||||
.sidebar-tab .directory-header .header-search input {
|
||||
text-align: left;
|
||||
padding-left: 22px;
|
||||
background: white;
|
||||
}
|
||||
.sidebar-tab .directory-header .header-search input:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.sidebar-tab .subdirectory {
|
||||
border: none;
|
||||
margin-left: 8px;
|
||||
background: white;
|
||||
min-height: 8px;
|
||||
}
|
||||
.sidebar-tab .subdirectory .folder {
|
||||
border-left: 2px solid rgba(28, 28, 28, 0.4);
|
||||
}
|
||||
.sidebar-tab .directory-list {
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
.sidebar-tab .directory-list li + li {
|
||||
border-top: 1px solid #0d99cc;
|
||||
}
|
||||
.sidebar-tab .directory-list .folder > .folder-header {
|
||||
line-height: default;
|
||||
padding: 0 0 0 8px;
|
||||
position: relative;
|
||||
border: none;
|
||||
background: white;
|
||||
}
|
||||
.sidebar-tab .directory-list .folder > .folder-header h3 {
|
||||
padding: 8px 4px;
|
||||
background: white;
|
||||
color: #1C1C1C;
|
||||
font-family: 'Open Sans';
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.sidebar-tab .directory-list .folder > .folder-header h3 > i {
|
||||
margin-right: 4px;
|
||||
color: #0d99cc;
|
||||
}
|
||||
.sidebar-tab .directory-list .folder > .folder-header a {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 4px;
|
||||
height: 100%;
|
||||
padding: 0 4px;
|
||||
color: #828282;
|
||||
}
|
||||
.sidebar-tab .directory-list .folder > .folder-header a:hover {
|
||||
color: #c40f0f;
|
||||
}
|
||||
.sidebar-tab .directory-list .folder > .folder-header a i {
|
||||
margin-top: 12px;
|
||||
}
|
||||
.sidebar-tab .directory-list .folder > .folder-header a.create-folder {
|
||||
right: 28px;
|
||||
}
|
||||
.sidebar-tab .directory-list .folder.collapsed > .folder-header {
|
||||
background: white;
|
||||
}
|
||||
.sidebar-tab .directory-list .folder + .entity {
|
||||
border-top: 1px solid #0d99cc;
|
||||
}
|
||||
.sidebar-tab .directory-list .directory-item img {
|
||||
flex: 0 0 32px;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
align-self: center;
|
||||
}
|
||||
.sidebar-tab .directory-list .actor,
|
||||
.sidebar-tab .directory-list .item,
|
||||
.sidebar-tab .directory-list .journal,
|
||||
.sidebar-tab .directory-list .table {
|
||||
background: white;
|
||||
border: none;
|
||||
}
|
||||
.sidebar-tab .directory-list .actor .entity-name,
|
||||
.sidebar-tab .directory-list .item .entity-name,
|
||||
.sidebar-tab .directory-list .journal .entity-name,
|
||||
.sidebar-tab .directory-list .table .entity-name {
|
||||
font-family: 'Open Sans';
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
.sidebar-tab .directory-list .actor:nth-child(even),
|
||||
.sidebar-tab .directory-list .item:nth-child(even),
|
||||
.sidebar-tab .directory-list .journal:nth-child(even),
|
||||
.sidebar-tab .directory-list .table:nth-child(even) {
|
||||
background: rgba(175, 198, 214, 0.3);
|
||||
}
|
||||
#scenes .subdirectory {
|
||||
border-left: none;
|
||||
}
|
||||
#scenes .scene {
|
||||
border: none;
|
||||
border-top: 1px solid #0d99cc;
|
||||
border-left: 4px solid #0d99cc;
|
||||
box-shadow: none;
|
||||
position: relative;
|
||||
height: 128px;
|
||||
}
|
||||
#scenes .scene + .scene {
|
||||
margin-top: 4px;
|
||||
}
|
||||
#scenes .scene::after {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 99px;
|
||||
position: absolute;
|
||||
top: 28px;
|
||||
left: 0;
|
||||
box-shadow: 0 0 20px #0d99cc inset;
|
||||
}
|
||||
#scenes .scene h3 {
|
||||
font-family: 'Open Sans';
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
text-align: left;
|
||||
text-shadow: none;
|
||||
padding: 4px 4px 4px 12px;
|
||||
background: white;
|
||||
line-height: 1.6;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
#playlists .directory-list {
|
||||
padding: 0 8px;
|
||||
}
|
||||
#playlists .directory-list li.playlist {
|
||||
padding: 8px;
|
||||
border-radius: 4px;
|
||||
background: white;
|
||||
margin-bottom: 8px;
|
||||
border-top: inherit;
|
||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
#playlists .directory-list li.playlist .playlist-header {
|
||||
background: white;
|
||||
color: #c40f0f;
|
||||
text-decoration: none;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
}
|
||||
#playlists .directory-list li.playlist li.sound {
|
||||
border: none;
|
||||
color: #1C1C1C;
|
||||
}
|
||||
#playlists .directory-list li.playlist li.sound h4 {
|
||||
font-family: 'Open Sans';
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
}
|
||||
#playlists .directory-list li.playlist a.sound-control {
|
||||
color: #c40f0f;
|
||||
}
|
||||
#compendium .compendium-entity {
|
||||
margin: 0 4px;
|
||||
padding: 8px;
|
||||
background: white !important;
|
||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
||||
border-radius: 4px;
|
||||
border: none;
|
||||
}
|
||||
#compendium .compendium-entity + .compendium-entity {
|
||||
margin-top: 4px;
|
||||
}
|
||||
#compendium .compendium-entity h3 {
|
||||
border: none;
|
||||
color: #c40f0f;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
font-family: 'Russo One';
|
||||
font-size: 17px;
|
||||
font-weight: 400;
|
||||
padding: 0;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
#compendium .compendium-entity ol.compendium-list li.compendium-pack {
|
||||
margin: 0;
|
||||
padding: 4px;
|
||||
border: none;
|
||||
}
|
||||
#compendium .compendium-entity ol.compendium-list li.compendium-pack:nth-child(even) {
|
||||
background: rgba(175, 198, 214, 0.3);
|
||||
}
|
||||
#compendium .compendium-entity ol.compendium-list li.compendium-pack .pack-title {
|
||||
margin: 0;
|
||||
position: relative;
|
||||
}
|
||||
#compendium .compendium-entity ol.compendium-list li.compendium-pack .pack-title a {
|
||||
font-family: 'Open Sans';
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
}
|
||||
#compendium .compendium-entity ol.compendium-list li.compendium-pack .pack-title a i {
|
||||
display: none;
|
||||
}
|
||||
#compendium .compendium-entity ol.compendium-list li.compendium-pack .pack-title .status-icons {
|
||||
top: 4px;
|
||||
color: #828282;
|
||||
font-size: 13px;
|
||||
}
|
||||
#compendium .compendium-entity ol.compendium-list li.compendium-pack footer.compendium-footer {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
#settings h2 {
|
||||
color: #c40f0f;
|
||||
border: none;
|
||||
border-bottom: 2px solid #0d99cc;
|
||||
margin: 0 8px;
|
||||
padding: 0;
|
||||
}
|
||||
#settings #game-details,
|
||||
#settings #settings-game,
|
||||
#settings #settings-documentation,
|
||||
#settings #settings-access {
|
||||
padding: 0 8px;
|
||||
margin: 0 0 8px;
|
||||
color: #1C1C1C;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue