mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
Made sure the files were .HTML and .CSS this is a new sheet for Final Fantasy 5e which is a system i have made.
1600 lines
34 KiB
CSS
1600 lines
34 KiB
CSS
/* ================================
|
|
FINAL FANTASY 5E ROLL20 SHEET
|
|
UPDATED CSS BATCH 6A
|
|
Base, larger inputs, header,
|
|
buttons, main shell
|
|
================================ */
|
|
|
|
.charsheet {
|
|
background: #020617;
|
|
color: #e5f0ff;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
/* ================================
|
|
MAIN SHELL
|
|
================================ */
|
|
|
|
.ff7-shell {
|
|
background:
|
|
radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 30%),
|
|
radial-gradient(circle at top right, rgba(147, 51, 234, 0.12), transparent 28%),
|
|
linear-gradient(180deg, #0f172a 0%, #020617 58%, #000000 100%);
|
|
color: #e5f0ff;
|
|
padding: 16px;
|
|
border: 1px solid #2563eb;
|
|
border-radius: 16px;
|
|
box-shadow:
|
|
0 0 22px rgba(37, 99, 235, 0.28),
|
|
inset 0 0 22px rgba(15, 23, 42, 0.9);
|
|
}
|
|
|
|
/* ================================
|
|
HEADER
|
|
================================ */
|
|
|
|
.ff7-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: stretch;
|
|
gap: 12px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.logo-panel {
|
|
flex: 1;
|
|
background:
|
|
linear-gradient(135deg, rgba(30, 64, 175, 0.95), rgba(15, 23, 42, 0.96)),
|
|
linear-gradient(90deg, rgba(96, 165, 250, 0.25), transparent);
|
|
border: 1px solid #60a5fa;
|
|
border-radius: 14px;
|
|
padding: 13px 18px;
|
|
box-shadow:
|
|
inset 0 0 16px rgba(96, 165, 250, 0.18),
|
|
0 0 10px rgba(37, 99, 235, 0.22);
|
|
}
|
|
|
|
.logo-text {
|
|
display: block;
|
|
color: #ffffff;
|
|
font-size: 22px;
|
|
font-weight: 900;
|
|
letter-spacing: 1.2px;
|
|
line-height: 1.1;
|
|
text-shadow: 0 0 8px rgba(96, 165, 250, 0.65);
|
|
}
|
|
|
|
.sub-text {
|
|
display: block;
|
|
color: #bfdbfe;
|
|
font-size: 10px;
|
|
opacity: 0.95;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1.8px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
/* ================================
|
|
LABELS + BIGGER INPUTS
|
|
================================ */
|
|
|
|
label {
|
|
display: block;
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
color: #93c5fd;
|
|
margin-top: 7px;
|
|
margin-bottom: 4px;
|
|
letter-spacing: 0.55px;
|
|
font-weight: 900;
|
|
}
|
|
|
|
input,
|
|
select,
|
|
textarea {
|
|
width: 100%;
|
|
min-height: 36px;
|
|
background: rgba(2, 6, 23, 0.98);
|
|
color: #e5f0ff;
|
|
border: 1px solid #475569;
|
|
border-radius: 8px;
|
|
padding: 8px 9px;
|
|
box-sizing: border-box;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
input[type="number"] {
|
|
min-width: 92px;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
font-weight: 900;
|
|
}
|
|
|
|
input[type="text"] {
|
|
min-width: 120px;
|
|
}
|
|
|
|
select {
|
|
min-width: 150px;
|
|
}
|
|
|
|
textarea {
|
|
min-height: 110px;
|
|
resize: vertical;
|
|
line-height: 1.45;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
input:focus,
|
|
select:focus,
|
|
textarea:focus {
|
|
outline: none;
|
|
border-color: #60a5fa;
|
|
box-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
|
|
}
|
|
|
|
input[readonly],
|
|
textarea[readonly] {
|
|
background: rgba(15, 23, 42, 0.9);
|
|
color: #bfdbfe;
|
|
border-color: #334155;
|
|
}
|
|
|
|
/* Hidden automation fields should not create visual space. */
|
|
input[type="hidden"] {
|
|
display: none !important;
|
|
}
|
|
|
|
/* ================================
|
|
DISPLAY STAT PAIRS
|
|
For AC, proficiency, speed, spell stats, etc.
|
|
================================ */
|
|
|
|
.display-stat-pair {
|
|
display: grid;
|
|
grid-template-columns: minmax(100px, 140px) 1fr;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.display-stat-pair input[type="number"] {
|
|
width: 100%;
|
|
min-width: 100px;
|
|
height: 42px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.display-stat-pair > span {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 42px;
|
|
background:
|
|
linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
|
|
border: 1px solid #60a5fa;
|
|
border-radius: 10px;
|
|
color: #ffffff;
|
|
font-size: 22px;
|
|
font-weight: 900;
|
|
text-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
|
|
}
|
|
|
|
/* ================================
|
|
BUTTONS
|
|
================================ */
|
|
|
|
.mode-buttons,
|
|
.tab-buttons {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
align-content: center;
|
|
}
|
|
|
|
.character-tabs,
|
|
.monster-tabs,
|
|
.vehicle-tabs {
|
|
margin-bottom: 12px;
|
|
padding: 8px;
|
|
background: rgba(2, 6, 23, 0.55);
|
|
border: 1px solid #1e3a8a;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
button[type="roll"]::before,
|
|
button[type="action"]::before {
|
|
content: "";
|
|
}
|
|
|
|
.mode-buttons button,
|
|
.tab-buttons button,
|
|
button[type="roll"],
|
|
button[type="action"] {
|
|
background: linear-gradient(135deg, #1e40af, #0f172a);
|
|
color: #ffffff;
|
|
border: 1px solid #60a5fa;
|
|
border-radius: 7px;
|
|
padding: 5px 9px;
|
|
min-height: 28px;
|
|
font-weight: 900;
|
|
cursor: pointer;
|
|
text-transform: uppercase;
|
|
font-size: 10px;
|
|
letter-spacing: 0.45px;
|
|
line-height: 1.1;
|
|
box-shadow: inset 0 0 8px rgba(96, 165, 250, 0.12);
|
|
}
|
|
|
|
.mode-buttons button {
|
|
min-width: 88px;
|
|
}
|
|
|
|
.tab-buttons button {
|
|
min-width: 74px;
|
|
}
|
|
|
|
button[type="roll"] {
|
|
min-width: 58px;
|
|
}
|
|
|
|
.mode-buttons button:hover,
|
|
.tab-buttons button:hover,
|
|
button[type="roll"]:hover,
|
|
button[type="action"]:hover {
|
|
background: linear-gradient(135deg, #2563eb, #1e3a8a);
|
|
border-color: #bfdbfe;
|
|
box-shadow:
|
|
0 0 8px rgba(96, 165, 250, 0.55),
|
|
inset 0 0 8px rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.button-strip {
|
|
grid-column: 1 / -1;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.button-strip button {
|
|
width: auto;
|
|
min-width: 66px;
|
|
max-width: 130px;
|
|
padding: 5px 9px;
|
|
}
|
|
|
|
/* ================================
|
|
MODE VISIBILITY
|
|
================================ */
|
|
|
|
.mode-character,
|
|
.mode-monster,
|
|
.mode-vehicle {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-mode[value="character"] ~ .mode-character {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-mode[value="monster"] ~ .mode-monster {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-mode[value="vehicle"] ~ .mode-vehicle {
|
|
display: block;
|
|
}
|
|
|
|
/* ================================
|
|
TAB VISIBILITY
|
|
================================ */
|
|
|
|
.tab-panel {
|
|
display: none;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.sheet-tab[value="overview"] ~ .mode-character .tab-overview,
|
|
.sheet-tab[value="cp"] ~ .mode-character .tab-cp,
|
|
.sheet-tab[value="combat"] ~ .mode-character .tab-combat,
|
|
.sheet-tab[value="magic"] ~ .mode-character .tab-magic,
|
|
.sheet-tab[value="equipment"] ~ .mode-character .tab-equipment,
|
|
.sheet-tab[value="status"] ~ .mode-character .tab-status,
|
|
.sheet-tab[value="bio"] ~ .mode-character .tab-bio {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-tab[value="monster-core"] ~ .mode-monster .tab-monster-core,
|
|
.sheet-tab[value="monster-actions"] ~ .mode-monster .tab-monster-actions,
|
|
.sheet-tab[value="monster-status"] ~ .mode-monster .tab-monster-status,
|
|
.sheet-tab[value="monster-import"] ~ .mode-monster .tab-monster-import {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-tab[value="vehicle-core"] ~ .mode-vehicle .tab-vehicle-core,
|
|
.sheet-tab[value="vehicle-weapons"] ~ .mode-vehicle .tab-vehicle-weapons,
|
|
.sheet-tab[value="vehicle-systems"] ~ .mode-vehicle .tab-vehicle-systems,
|
|
.sheet-tab[value="vehicle-scale"] ~ .mode-vehicle .tab-vehicle-scale {
|
|
display: block;
|
|
}
|
|
/* ================================
|
|
UPDATED CSS BATCH 6B
|
|
Cards, grids, resources,
|
|
bigger HP / MP / Limit fields
|
|
================================ */
|
|
|
|
/* ================================
|
|
CARDS / PANELS
|
|
================================ */
|
|
|
|
.ff7-card {
|
|
background:
|
|
linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98)),
|
|
radial-gradient(circle at top, rgba(37, 99, 235, 0.12), transparent 50%);
|
|
border: 1px solid #334155;
|
|
border-radius: 14px;
|
|
padding: 14px;
|
|
margin-bottom: 14px;
|
|
box-shadow:
|
|
inset 0 0 12px rgba(30, 64, 175, 0.18),
|
|
0 8px 18px rgba(0, 0, 0, 0.22);
|
|
}
|
|
|
|
.ff7-card h2,
|
|
.ff7-card h3 {
|
|
color: #dbeafe;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
border-bottom: 1px solid #1e40af;
|
|
padding-bottom: 5px;
|
|
margin: 0 0 10px 0;
|
|
font-weight: 900;
|
|
text-shadow: 0 0 6px rgba(96, 165, 250, 0.35);
|
|
}
|
|
|
|
.ff7-card h2 {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.ff7-card h3 {
|
|
font-size: 12px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.sheet-help {
|
|
background: rgba(15, 23, 42, 0.85);
|
|
border: 1px solid #334155;
|
|
border-radius: 9px;
|
|
padding: 8px 10px;
|
|
color: #cbd5e1;
|
|
font-size: 12px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
/* ================================
|
|
PRIMARY GRIDS
|
|
================================ */
|
|
|
|
.top-summary-grid {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr;
|
|
gap: 14px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.overview-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 14px;
|
|
}
|
|
|
|
.identity-top-grid,
|
|
.job-grid,
|
|
.job-info-grid,
|
|
.exp-grid,
|
|
.choice-grid,
|
|
.derived-grid,
|
|
.spellcasting-grid,
|
|
.equipment-grid,
|
|
.bio-grid,
|
|
.monster-profile-grid,
|
|
.quick-roll-grid,
|
|
.boss-grid,
|
|
.damage-helper-grid,
|
|
.vehicle-profile-grid,
|
|
.crew-grid,
|
|
.scale-grid {
|
|
display: grid;
|
|
gap: 9px;
|
|
}
|
|
|
|
.identity-top-grid {
|
|
grid-template-columns: 2fr 1fr 1.1fr 1.1fr;
|
|
}
|
|
|
|
.job-grid,
|
|
.job-info-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.exp-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.choice-grid,
|
|
.boss-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.derived-grid,
|
|
.spellcasting-grid,
|
|
.equipment-grid,
|
|
.monster-profile-grid,
|
|
.damage-helper-grid,
|
|
.vehicle-profile-grid,
|
|
.scale-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.bio-grid {
|
|
grid-template-columns: 2fr 2fr 1fr;
|
|
}
|
|
|
|
.quick-roll-grid {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
|
|
.crew-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.quick-roll-grid > div,
|
|
.crew-grid > div,
|
|
.derived-grid > div,
|
|
.exp-grid > div,
|
|
.identity-top-grid > div,
|
|
.job-grid > div,
|
|
.job-info-grid > div,
|
|
.spellcasting-grid > div,
|
|
.equipment-grid > div,
|
|
.monster-profile-grid > div,
|
|
.damage-helper-grid > div,
|
|
.vehicle-profile-grid > div,
|
|
.scale-grid > div,
|
|
.bio-grid > div {
|
|
background: rgba(15, 23, 42, 0.55);
|
|
border: 1px solid rgba(51, 65, 85, 0.8);
|
|
border-radius: 9px;
|
|
padding: 9px;
|
|
min-width: 0;
|
|
}
|
|
|
|
/* ================================
|
|
RESOURCE BAR
|
|
HP / MP / LIMIT / SHIELD
|
|
================================ */
|
|
|
|
.resource-bar {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.resource {
|
|
background:
|
|
linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
|
|
border: 1px solid #2563eb;
|
|
border-radius: 12px;
|
|
padding: 12px;
|
|
min-width: 285px;
|
|
flex: 1;
|
|
box-shadow: inset 0 0 10px rgba(37, 99, 235, 0.17);
|
|
}
|
|
|
|
.resource.hp {
|
|
border-color: #ef4444;
|
|
box-shadow: inset 0 0 10px rgba(239, 68, 68, 0.15);
|
|
}
|
|
|
|
.resource.mp {
|
|
border-color: #38bdf8;
|
|
box-shadow: inset 0 0 10px rgba(56, 189, 248, 0.15);
|
|
}
|
|
|
|
.resource.limit {
|
|
border-color: #facc15;
|
|
box-shadow: inset 0 0 10px rgba(250, 204, 21, 0.14);
|
|
}
|
|
|
|
.resource label {
|
|
color: #bfdbfe;
|
|
margin-top: 0;
|
|
margin-bottom: 6px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
/* Main current / max resource line */
|
|
|
|
.resource-main {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.resource-main input[type="number"],
|
|
.resource-main input[type="text"] {
|
|
width: 118px;
|
|
min-width: 118px;
|
|
max-width: 118px;
|
|
height: 48px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
padding: 8px 6px;
|
|
font-weight: 900;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.resource-main span {
|
|
display: inline-flex;
|
|
width: 18px;
|
|
min-width: 18px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #bfdbfe;
|
|
font-weight: 900;
|
|
font-size: 18px;
|
|
}
|
|
|
|
/* Single-value resources like Boss Phase, HP %, Condition */
|
|
|
|
.resource-main.single-resource input[type="number"],
|
|
.resource-main.single-resource input[type="text"] {
|
|
width: 100%;
|
|
min-width: 160px;
|
|
max-width: none;
|
|
}
|
|
|
|
/* Add / subtract resource line */
|
|
|
|
.resource-adjust {
|
|
display: grid;
|
|
grid-template-columns: minmax(110px, 1fr) 74px 74px;
|
|
gap: 7px;
|
|
align-items: center;
|
|
}
|
|
|
|
.resource-adjust input[type="number"],
|
|
.resource-adjust input[type="text"] {
|
|
width: 100%;
|
|
min-width: 110px;
|
|
height: 42px;
|
|
text-align: center;
|
|
font-size: 15px;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.resource-adjust button {
|
|
padding: 5px 5px;
|
|
font-size: 9px;
|
|
min-width: 0;
|
|
white-space: nowrap;
|
|
height: 34px;
|
|
}
|
|
|
|
.exp-adjust {
|
|
margin-top: 10px;
|
|
grid-template-columns: minmax(130px, 1fr) 78px 78px;
|
|
}
|
|
|
|
.exp-adjust input[type="number"] {
|
|
min-width: 130px;
|
|
}
|
|
|
|
/* ================================
|
|
STATS / CP
|
|
================================ */
|
|
|
|
.stat-grid,
|
|
.cp-grid,
|
|
.element-grid {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.stat-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.cp-grid {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
|
|
.stat-grid div,
|
|
.cp-grid div {
|
|
background: rgba(17, 24, 39, 0.9);
|
|
border: 1px solid #1e293b;
|
|
border-radius: 9px;
|
|
padding: 9px;
|
|
}
|
|
|
|
.stat-grid input[type="number"] {
|
|
width: 100%;
|
|
min-width: 105px;
|
|
height: 44px;
|
|
font-size: 17px;
|
|
}
|
|
|
|
.stat-grid span {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 36px;
|
|
margin-top: 6px;
|
|
background: rgba(2, 6, 23, 0.88);
|
|
border: 1px solid #60a5fa;
|
|
border-radius: 9px;
|
|
color: #ffffff;
|
|
font-size: 20px;
|
|
font-weight: 900;
|
|
text-shadow: 0 0 7px rgba(96, 165, 250, 0.55);
|
|
}
|
|
|
|
/* ================================
|
|
INITIATIVE
|
|
================================ */
|
|
|
|
.initiative-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(120px, 1fr) auto;
|
|
gap: 8px;
|
|
align-items: end;
|
|
}
|
|
|
|
.initiative-row input[type="number"] {
|
|
width: 100%;
|
|
min-width: 120px;
|
|
height: 44px;
|
|
font-size: 17px;
|
|
}
|
|
|
|
.initiative-row button {
|
|
height: 34px;
|
|
margin-top: 0;
|
|
white-space: nowrap;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
/* ================================
|
|
GENERAL NUMBER FIELD SAFETY
|
|
Prevent tiny number boxes anywhere.
|
|
================================ */
|
|
|
|
.ff7-shell input[type="number"] {
|
|
min-width: 90px;
|
|
}
|
|
|
|
.repeat-row input[type="number"],
|
|
.quick-roll-grid input[type="number"],
|
|
.crew-grid input[type="number"],
|
|
.damage-helper-grid input[type="number"],
|
|
.scale-grid input[type="number"],
|
|
.cp-grid input[type="number"],
|
|
.exp-grid input[type="number"],
|
|
.equipment-grid input[type="number"],
|
|
.vehicle-profile-grid input[type="number"],
|
|
.monster-profile-grid input[type="number"],
|
|
.spellcasting-grid input[type="number"] {
|
|
min-width: 100px;
|
|
height: 40px;
|
|
}
|
|
/* ================================
|
|
UPDATED CSS BATCH 6C
|
|
Ability checks, saves, skills,
|
|
repeating sections
|
|
================================ */
|
|
|
|
/* ================================
|
|
CHECKS / SAVES / SKILLS
|
|
================================ */
|
|
|
|
.checks-card {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.ability-check-grid,
|
|
.save-grid,
|
|
.skill-auto-grid {
|
|
display: grid;
|
|
gap: 7px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.ability-check-row,
|
|
.save-row,
|
|
.skill-auto-row {
|
|
display: grid;
|
|
gap: 7px;
|
|
align-items: center;
|
|
background:
|
|
linear-gradient(145deg, rgba(17, 24, 39, 0.88), rgba(2, 6, 23, 0.82));
|
|
border: 1px solid #1e293b;
|
|
border-radius: 10px;
|
|
padding: 8px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.ability-check-row {
|
|
grid-template-columns: 1.25fr 82px 86px minmax(95px, 110px) minmax(95px, 110px) 62px;
|
|
}
|
|
|
|
.save-row {
|
|
grid-template-columns: 1.3fr 82px minmax(95px, 110px) minmax(95px, 110px) 62px;
|
|
}
|
|
|
|
.skill-auto-row {
|
|
grid-template-columns: 1.35fr 82px 86px minmax(95px, 110px) minmax(95px, 110px) 62px;
|
|
}
|
|
|
|
.header-row {
|
|
background:
|
|
linear-gradient(135deg, rgba(30, 64, 175, 0.92), rgba(15, 23, 42, 0.96));
|
|
border-color: #3b82f6;
|
|
color: #dbeafe;
|
|
font-weight: 900;
|
|
text-transform: uppercase;
|
|
font-size: 10px;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.ability-check-row span,
|
|
.save-row span,
|
|
.skill-auto-row span {
|
|
color: #e5f0ff;
|
|
font-weight: 900;
|
|
line-height: 1.15;
|
|
min-width: 0;
|
|
}
|
|
|
|
.skill-auto-row small {
|
|
color: #93c5fd;
|
|
font-weight: 900;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.ability-check-row label,
|
|
.save-row label,
|
|
.skill-auto-row label {
|
|
margin: 0;
|
|
color: #cbd5e1;
|
|
text-transform: none;
|
|
font-size: 10px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: 4px;
|
|
letter-spacing: 0;
|
|
font-weight: 800;
|
|
min-width: 0;
|
|
}
|
|
|
|
.ability-check-row input[type="checkbox"],
|
|
.save-row input[type="checkbox"],
|
|
.skill-auto-row input[type="checkbox"] {
|
|
width: auto;
|
|
min-width: 0;
|
|
height: auto;
|
|
min-height: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.ability-check-row input[type="number"],
|
|
.save-row input[type="number"],
|
|
.skill-auto-row input[type="number"] {
|
|
width: 100%;
|
|
min-width: 95px;
|
|
height: 40px;
|
|
text-align: center;
|
|
padding: 6px 8px;
|
|
font-size: 15px;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.ability-check-row input[readonly],
|
|
.save-row input[readonly],
|
|
.skill-auto-row input[readonly] {
|
|
border-color: #60a5fa;
|
|
color: #ffffff;
|
|
background:
|
|
linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
|
|
box-shadow: inset 0 0 8px rgba(96, 165, 250, 0.16);
|
|
}
|
|
|
|
.ability-check-row button,
|
|
.save-row button,
|
|
.skill-auto-row button {
|
|
width: 100%;
|
|
min-width: 54px;
|
|
height: 30px;
|
|
padding: 4px;
|
|
font-size: 9px;
|
|
}
|
|
|
|
/* ================================
|
|
OLD QUICK CHECK GRID FALLBACK
|
|
================================ */
|
|
|
|
.check-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(6, 1fr);
|
|
gap: 7px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.check-grid button {
|
|
width: 100%;
|
|
min-width: 0;
|
|
padding: 5px 4px;
|
|
}
|
|
|
|
/* ================================
|
|
REPEATING SECTIONS
|
|
================================ */
|
|
|
|
.repcontainer {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.repitem {
|
|
margin-bottom: 11px;
|
|
}
|
|
|
|
.repcontrol {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.repcontrol button {
|
|
background: #1e3a8a;
|
|
color: white;
|
|
border: 1px solid #60a5fa;
|
|
border-radius: 8px;
|
|
padding: 6px 10px;
|
|
font-size: 10px;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.repeat-row {
|
|
background:
|
|
linear-gradient(145deg, rgba(17, 24, 39, 0.93), rgba(2, 6, 23, 0.93));
|
|
border: 1px solid #1e293b;
|
|
border-radius: 12px;
|
|
padding: 11px;
|
|
display: grid;
|
|
gap: 9px;
|
|
margin-bottom: 11px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.repeat-row.two {
|
|
grid-template-columns: 1fr 2fr;
|
|
}
|
|
|
|
.repeat-row.three {
|
|
grid-template-columns: 2fr 1fr 1fr;
|
|
}
|
|
|
|
.repeat-row.combat,
|
|
.repeat-row.technique,
|
|
.repeat-row.spell,
|
|
.repeat-row.summon,
|
|
.repeat-row.npc-action,
|
|
.repeat-row.vehicle-weapon,
|
|
.repeat-row.weapon,
|
|
.repeat-row.accessory,
|
|
.repeat-row.status-timer,
|
|
.repeat-row.holding {
|
|
grid-template-columns: repeat(3, minmax(150px, 1fr));
|
|
}
|
|
|
|
.repeat-row.materia-advanced {
|
|
grid-template-columns: repeat(4, minmax(135px, 1fr));
|
|
}
|
|
|
|
.repeat-row.inventory {
|
|
grid-template-columns: 2fr 1fr 1fr;
|
|
}
|
|
|
|
.repeat-row.vehicle-system {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.repeat-row input,
|
|
.repeat-row select {
|
|
min-height: 38px;
|
|
}
|
|
|
|
.repeat-row input[type="number"] {
|
|
min-width: 105px;
|
|
height: 40px;
|
|
}
|
|
|
|
.repeat-row textarea {
|
|
grid-column: 1 / -1;
|
|
min-height: 120px;
|
|
}
|
|
|
|
.repeat-row > button[type="roll"] {
|
|
grid-column: 1 / -1;
|
|
width: auto;
|
|
justify-self: start;
|
|
}
|
|
|
|
.repeat-row .button-strip {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
/* ================================
|
|
MONSTER QUICK ROLLS / CREW ROLLS
|
|
================================ */
|
|
|
|
.quick-roll-grid > div,
|
|
.crew-grid > div {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.quick-roll-grid input[type="number"],
|
|
.crew-grid input[type="number"] {
|
|
width: 100%;
|
|
min-width: 105px;
|
|
height: 40px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.quick-roll-grid button,
|
|
.crew-grid button {
|
|
width: auto;
|
|
justify-self: start;
|
|
min-width: 62px;
|
|
}
|
|
|
|
/* ================================
|
|
STATUS / ELEMENTS
|
|
================================ */
|
|
|
|
.element-row {
|
|
display: grid;
|
|
grid-template-columns: 1fr minmax(150px, 1fr);
|
|
gap: 10px;
|
|
align-items: center;
|
|
background: rgba(17, 24, 39, 0.86);
|
|
border: 1px solid #1e293b;
|
|
border-radius: 9px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.element-row.header {
|
|
background: linear-gradient(135deg, #1e3a8a, #0f172a);
|
|
color: #ffffff;
|
|
font-weight: 900;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.6px;
|
|
}
|
|
|
|
.element-row label {
|
|
margin: 0;
|
|
}
|
|
|
|
.status-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 8px;
|
|
}
|
|
|
|
.status-grid label {
|
|
background: rgba(17, 24, 39, 0.88);
|
|
border: 1px solid #1e293b;
|
|
border-radius: 9px;
|
|
padding: 9px;
|
|
color: #e5f0ff;
|
|
text-transform: none;
|
|
font-size: 12px;
|
|
letter-spacing: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.status-grid input[type="checkbox"] {
|
|
width: auto;
|
|
min-width: 0;
|
|
height: auto;
|
|
min-height: 0;
|
|
margin-right: 6px;
|
|
}
|
|
/* ================================
|
|
UPDATED CSS BATCH 6D
|
|
Monster / vehicle accents,
|
|
chat cards, responsive fixes
|
|
================================ */
|
|
|
|
/* ================================
|
|
COMPENDIUM / IMPORT
|
|
================================ */
|
|
|
|
.compendium-drop-target {
|
|
border: 1px dashed #60a5fa;
|
|
background:
|
|
linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.95)),
|
|
radial-gradient(circle at center, rgba(96, 165, 250, 0.12), transparent 65%);
|
|
}
|
|
|
|
.compendium-drop-target h2 {
|
|
color: #dbeafe;
|
|
}
|
|
|
|
.compendium-drop-target::before {
|
|
content: "Drop / Import Target";
|
|
display: block;
|
|
color: #93c5fd;
|
|
font-size: 10px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1.1px;
|
|
margin-bottom: 6px;
|
|
font-weight: 900;
|
|
}
|
|
|
|
/* ================================
|
|
MONSTER ACCENT
|
|
================================ */
|
|
|
|
.mode-monster .ff7-card {
|
|
border-color: #7f1d1d;
|
|
box-shadow:
|
|
inset 0 0 12px rgba(220, 38, 38, 0.16),
|
|
0 8px 18px rgba(0, 0, 0, 0.22);
|
|
}
|
|
|
|
.mode-monster .ff7-card h2,
|
|
.mode-monster .ff7-card h3 {
|
|
color: #fecaca;
|
|
border-bottom-color: #7f1d1d;
|
|
text-shadow: 0 0 6px rgba(248, 113, 113, 0.32);
|
|
}
|
|
|
|
.mode-monster .tab-buttons,
|
|
.monster-tabs {
|
|
border-color: #7f1d1d;
|
|
}
|
|
|
|
.mode-monster .tab-buttons button,
|
|
.monster-tabs button {
|
|
background: linear-gradient(135deg, #7f1d1d, #0f172a);
|
|
border-color: #f87171;
|
|
}
|
|
|
|
.mode-monster .tab-buttons button:hover,
|
|
.monster-tabs button:hover {
|
|
background: linear-gradient(135deg, #dc2626, #7f1d1d);
|
|
box-shadow: 0 0 8px rgba(248, 113, 113, 0.55);
|
|
}
|
|
|
|
/* ================================
|
|
VEHICLE ACCENT
|
|
================================ */
|
|
|
|
.mode-vehicle .ff7-card {
|
|
border-color: #0e7490;
|
|
box-shadow:
|
|
inset 0 0 12px rgba(34, 211, 238, 0.16),
|
|
0 8px 18px rgba(0, 0, 0, 0.22);
|
|
}
|
|
|
|
.mode-vehicle .ff7-card h2,
|
|
.mode-vehicle .ff7-card h3 {
|
|
color: #cffafe;
|
|
border-bottom-color: #0e7490;
|
|
text-shadow: 0 0 6px rgba(103, 232, 249, 0.28);
|
|
}
|
|
|
|
.mode-vehicle .tab-buttons,
|
|
.vehicle-tabs {
|
|
border-color: #0e7490;
|
|
}
|
|
|
|
.mode-vehicle .tab-buttons button,
|
|
.vehicle-tabs button {
|
|
background: linear-gradient(135deg, #0e7490, #0f172a);
|
|
border-color: #67e8f9;
|
|
}
|
|
|
|
.mode-vehicle .tab-buttons button:hover,
|
|
.vehicle-tabs button:hover {
|
|
background: linear-gradient(135deg, #0891b2, #164e63);
|
|
box-shadow: 0 0 8px rgba(103, 232, 249, 0.55);
|
|
}
|
|
|
|
/* ================================
|
|
SPECIAL BUTTON ACCENTS
|
|
================================ */
|
|
|
|
button[name*="limit"],
|
|
button[name*="LIMIT"] {
|
|
background: linear-gradient(135deg, #991b1b, #0f172a);
|
|
border-color: #fca5a5;
|
|
}
|
|
|
|
button[name*="summon"] {
|
|
background: linear-gradient(135deg, #581c87, #0f172a);
|
|
border-color: #c084fc;
|
|
}
|
|
|
|
button[name*="vehicle"],
|
|
button[name*="pilot"],
|
|
button[name*="gunner"],
|
|
button[name*="engineer"],
|
|
button[name*="captain"] {
|
|
background: linear-gradient(135deg, #0e7490, #0f172a);
|
|
border-color: #67e8f9;
|
|
}
|
|
|
|
/* =====================================================
|
|
UPDATED THEMED ROLL20 CHAT CARDS
|
|
CSS Batch 1
|
|
Base card, header, body, rows
|
|
===================================================== */
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-chat-card,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-chat-card,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-chat-card,
|
|
.sheet-rolltemplate-ff5e_card_resource .sheet-ff5e-chat-card {
|
|
width: 320px;
|
|
max-width: 320px;
|
|
background:
|
|
radial-gradient(circle at top, rgba(37, 99, 235, 0.34) 0%, transparent 46%),
|
|
linear-gradient(180deg, #172554 0%, #020617 66%, #000000 100%);
|
|
color: #e5f0ff;
|
|
border: 2px solid #60a5fa;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
box-shadow:
|
|
0 0 14px rgba(37, 99, 235, 0.48),
|
|
inset 0 0 12px rgba(96, 165, 250, 0.08);
|
|
}
|
|
|
|
/* Header */
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-card-title,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-card-title,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-card-title,
|
|
.sheet-rolltemplate-ff5e_card_resource .sheet-ff5e-card-title {
|
|
color: #ffffff;
|
|
padding: 10px 12px;
|
|
border-bottom: 1px solid #60a5fa;
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-title-d20 {
|
|
background:
|
|
linear-gradient(135deg, #1d4ed8, #020617),
|
|
radial-gradient(circle at right, rgba(147, 197, 253, 0.22), transparent 60%);
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-title-attack {
|
|
background:
|
|
linear-gradient(135deg, #7f1d1d, #020617),
|
|
radial-gradient(circle at right, rgba(248, 113, 113, 0.22), transparent 60%);
|
|
border-bottom-color: #f87171;
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-title-power {
|
|
background:
|
|
linear-gradient(135deg, #581c87, #020617),
|
|
radial-gradient(circle at right, rgba(192, 132, 252, 0.22), transparent 60%);
|
|
border-bottom-color: #c084fc;
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_resource .sheet-ff5e-title-resource {
|
|
background:
|
|
linear-gradient(135deg, #0e7490, #020617),
|
|
radial-gradient(circle at right, rgba(103, 232, 249, 0.22), transparent 60%);
|
|
border-bottom-color: #67e8f9;
|
|
}
|
|
|
|
/* Header text */
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-card-name,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-card-name,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-card-name,
|
|
.sheet-rolltemplate-ff5e_card_resource .sheet-ff5e-card-name {
|
|
font-size: 16px;
|
|
font-weight: 900;
|
|
letter-spacing: 0.75px;
|
|
text-transform: uppercase;
|
|
line-height: 1.15;
|
|
text-shadow: 0 0 7px rgba(96, 165, 250, 0.48);
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-card-subtitle,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-card-subtitle,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-card-subtitle,
|
|
.sheet-rolltemplate-ff5e_card_resource .sheet-ff5e-card-subtitle {
|
|
font-size: 11px;
|
|
color: #bfdbfe;
|
|
margin-top: 4px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.55px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
/* Description */
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-card-description,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-card-description,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-card-description,
|
|
.sheet-rolltemplate-ff5e_card_resource .sheet-ff5e-card-description {
|
|
background:
|
|
linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
|
|
color: #dbeafe;
|
|
border-bottom: 1px solid #1e293b;
|
|
padding: 10px 12px;
|
|
font-size: 12px;
|
|
line-height: 1.4;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_resource .sheet-ff5e-card-description {
|
|
border-top: 1px solid #1e293b;
|
|
border-bottom: none;
|
|
}
|
|
|
|
/* Body */
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-card-body,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-card-body,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-card-body,
|
|
.sheet-rolltemplate-ff5e_card_resource .sheet-ff5e-card-body {
|
|
padding: 10px;
|
|
background:
|
|
linear-gradient(145deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.96));
|
|
}
|
|
|
|
/* Rows */
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-card-row,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-card-row,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-card-row {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 8px;
|
|
align-items: center;
|
|
background:
|
|
linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.9));
|
|
border: 1px solid #1e293b;
|
|
border-radius: 8px;
|
|
padding: 8px 9px;
|
|
margin-bottom: 7px;
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-card-row:last-child,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-card-row:last-child,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-card-row:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-total-row,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-total-row,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-total-row {
|
|
border-color: #60a5fa;
|
|
box-shadow: inset 0 0 9px rgba(96, 165, 250, 0.22);
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-card-row span,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-card-row span,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-card-row span {
|
|
color: #93c5fd;
|
|
text-transform: uppercase;
|
|
font-size: 10px;
|
|
font-weight: 900;
|
|
letter-spacing: 0.6px;
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-card-row strong,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-card-row strong,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-card-row strong {
|
|
color: #e5f0ff;
|
|
font-size: 12px;
|
|
font-weight: 900;
|
|
text-align: right;
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-detail-row {
|
|
grid-template-columns: 72px 1fr;
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-detail-row strong {
|
|
text-align: right;
|
|
line-height: 1.25;
|
|
}
|
|
/* =====================================================
|
|
UPDATED THEMED ROLL20 CHAT CARDS
|
|
CSS Batch 2
|
|
Roll boxes, crit/fail colors,
|
|
damage boxes, resource cards
|
|
===================================================== */
|
|
|
|
/* Big result boxes */
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-roll-box,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-roll-box,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-roll-box {
|
|
display: inline-flex;
|
|
min-width: 58px;
|
|
min-height: 40px;
|
|
padding: 5px 9px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background:
|
|
linear-gradient(135deg, #f8fbff, #bfdbfe);
|
|
color: #020617 !important;
|
|
border: 2px solid #93c5fd;
|
|
border-radius: 9px;
|
|
font-size: 23px !important;
|
|
font-weight: 900 !important;
|
|
line-height: 1;
|
|
box-shadow:
|
|
0 0 11px rgba(96, 165, 250, 0.48),
|
|
inset 0 0 6px rgba(255, 255, 255, 0.55);
|
|
}
|
|
|
|
/* Nat 20: green */
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-roll-box.sheet-ff5e-nat20,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-roll-box.sheet-ff5e-nat20 {
|
|
color: #052e16 !important;
|
|
background:
|
|
linear-gradient(135deg, #dcfce7, #22c55e);
|
|
border-color: #16a34a;
|
|
box-shadow:
|
|
0 0 15px rgba(34, 197, 94, 0.9),
|
|
inset 0 0 7px rgba(255, 255, 255, 0.45);
|
|
}
|
|
|
|
/* Nat 1: red */
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .sheet-ff5e-roll-box.sheet-ff5e-nat1,
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-roll-box.sheet-ff5e-nat1 {
|
|
color: #450a0a !important;
|
|
background:
|
|
linear-gradient(135deg, #fee2e2, #ef4444);
|
|
border-color: #dc2626;
|
|
box-shadow:
|
|
0 0 15px rgba(239, 68, 68, 0.9),
|
|
inset 0 0 7px rgba(255, 255, 255, 0.45);
|
|
}
|
|
|
|
/* Damage and power result boxes */
|
|
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-damage-box,
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-power-box {
|
|
border-color: #c084fc;
|
|
background:
|
|
linear-gradient(135deg, #faf5ff, #c084fc);
|
|
color: #1e1b4b !important;
|
|
box-shadow:
|
|
0 0 12px rgba(192, 132, 252, 0.58),
|
|
inset 0 0 6px rgba(255, 255, 255, 0.55);
|
|
}
|
|
|
|
/* Attack card accent border */
|
|
|
|
.sheet-rolltemplate-ff5e_card_attack .sheet-ff5e-chat-card {
|
|
border-color: #f87171;
|
|
box-shadow:
|
|
0 0 14px rgba(248, 113, 113, 0.38),
|
|
inset 0 0 12px rgba(248, 113, 113, 0.08);
|
|
}
|
|
|
|
/* Power card accent border */
|
|
|
|
.sheet-rolltemplate-ff5e_card_power .sheet-ff5e-chat-card {
|
|
border-color: #c084fc;
|
|
box-shadow:
|
|
0 0 14px rgba(192, 132, 252, 0.38),
|
|
inset 0 0 12px rgba(192, 132, 252, 0.08);
|
|
}
|
|
|
|
/* Resource card accent border */
|
|
|
|
.sheet-rolltemplate-ff5e_card_resource .sheet-ff5e-chat-card {
|
|
border-color: #67e8f9;
|
|
box-shadow:
|
|
0 0 14px rgba(103, 232, 249, 0.38),
|
|
inset 0 0 12px rgba(103, 232, 249, 0.08);
|
|
}
|
|
|
|
/* Resource change display */
|
|
|
|
.sheet-rolltemplate-ff5e_card_resource .sheet-ff5e-resource-change {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 14px;
|
|
background:
|
|
linear-gradient(145deg, #0f172a, #020617);
|
|
border: 1px solid #334155;
|
|
border-radius: 10px;
|
|
padding: 13px;
|
|
font-size: 20px;
|
|
font-weight: 900;
|
|
color: #e5f0ff;
|
|
box-shadow: inset 0 0 8px rgba(103, 232, 249, 0.16);
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_resource .sheet-ff5e-resource-change span {
|
|
display: inline-flex;
|
|
min-width: 58px;
|
|
min-height: 38px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background:
|
|
linear-gradient(135deg, #f8fbff, #cffafe);
|
|
color: #082f49;
|
|
border: 2px solid #67e8f9;
|
|
border-radius: 9px;
|
|
font-size: 20px;
|
|
font-weight: 900;
|
|
line-height: 1;
|
|
}
|
|
|
|
.sheet-rolltemplate-ff5e_card_resource .sheet-ff5e-resource-change strong {
|
|
color: #67e8f9;
|
|
font-size: 25px;
|
|
text-shadow: 0 0 8px rgba(103, 232, 249, 0.65);
|
|
}
|
|
|
|
/* Roll20 inline roll cleanup */
|
|
|
|
.sheet-rolltemplate-ff5e_card_d20 .inlinerollresult,
|
|
.sheet-rolltemplate-ff5e_card_attack .inlinerollresult,
|
|
.sheet-rolltemplate-ff5e_card_power .inlinerollresult,
|
|
.sheet-rolltemplate-ff5e_card_resource .inlinerollresult {
|
|
background: transparent;
|
|
border: none;
|
|
padding: 0;
|
|
color: inherit;
|
|
font-weight: inherit;
|
|
}
|
|
|
|
/* ================================
|
|
RESPONSIVE FALLBACK
|
|
================================ */
|
|
|
|
@media (max-width: 1250px) {
|
|
.top-summary-grid,
|
|
.overview-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.identity-top-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.quick-roll-grid,
|
|
.crew-grid,
|
|
.cp-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.repeat-row.materia-advanced {
|
|
grid-template-columns: repeat(2, minmax(160px, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 950px) {
|
|
.ability-check-row,
|
|
.save-row,
|
|
.skill-auto-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.header-row {
|
|
display: none;
|
|
}
|
|
|
|
.repeat-row.combat,
|
|
.repeat-row.technique,
|
|
.repeat-row.spell,
|
|
.repeat-row.summon,
|
|
.repeat-row.npc-action,
|
|
.repeat-row.vehicle-weapon,
|
|
.repeat-row.weapon,
|
|
.repeat-row.accessory,
|
|
.repeat-row.status-timer,
|
|
.repeat-row.holding,
|
|
.repeat-row.inventory,
|
|
.repeat-row.vehicle-system {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
.ff7-header {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.identity-top-grid,
|
|
.job-grid,
|
|
.job-info-grid,
|
|
.exp-grid,
|
|
.choice-grid,
|
|
.derived-grid,
|
|
.spellcasting-grid,
|
|
.equipment-grid,
|
|
.bio-grid,
|
|
.monster-profile-grid,
|
|
.quick-roll-grid,
|
|
.boss-grid,
|
|
.damage-helper-grid,
|
|
.vehicle-profile-grid,
|
|
.crew-grid,
|
|
.scale-grid,
|
|
.cp-grid,
|
|
.stat-grid,
|
|
.check-grid,
|
|
.repeat-row.materia-advanced {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.status-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.resource {
|
|
min-width: 260px;
|
|
}
|
|
|
|
.resource-main {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.resource-main input[type="number"],
|
|
.resource-main input[type="text"] {
|
|
width: 110px;
|
|
min-width: 110px;
|
|
max-width: 110px;
|
|
}
|
|
|
|
.resource-adjust,
|
|
.exp-adjust {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.initiative-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.initiative-row button {
|
|
width: 100%;
|
|
}
|
|
|
|
.display-stat-pair {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.button-strip {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.button-strip button {
|
|
width: 100%;
|
|
max-width: none;
|
|
}
|
|
} |