mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 19:52:29 +00:00
101 lines
1.6 KiB
CSS
101 lines
1.6 KiB
CSS
/* SHRIMP RPG Roll20 Character Sheet CSS */
|
|
.sheet-container {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f0ffff;
|
|
padding: 20px;
|
|
max-width: 900px;
|
|
margin: auto;
|
|
border: 2px solid #00cccc;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.stats-grid,
|
|
.combat-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="number"] {
|
|
width: 100%;
|
|
padding: 6px;
|
|
font-size: 14px;
|
|
border: 1px solid #aaa;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
input[disabled] {
|
|
background-color: #eef;
|
|
font-weight: bold;
|
|
border: 1px dashed #88c;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #004b4b;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
h2 {
|
|
color: #006666;
|
|
margin-top: 1.5em;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
button[type="roll"] {
|
|
background-color: #008080;
|
|
color: white;
|
|
padding: 6px 10px;
|
|
font-size: 14px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
margin-left: 10px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
button[type="roll"]:hover {
|
|
background-color: #005757;
|
|
}
|
|
|
|
.shrimp-sparks label {
|
|
font-size: 20px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.shrimp-sparks input[type="checkbox"] {
|
|
transform: scale(1.5);
|
|
margin-right: 5px;
|
|
}
|
|
|
|
/* Grid table replacements */
|
|
.table-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 2fr 3fr;
|
|
gap: 6px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.spell-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 0.5fr 0.5fr 2fr;
|
|
gap: 6px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.gear-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 3fr;
|
|
gap: 6px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.table-header {
|
|
font-weight: bold;
|
|
background: #eef;
|
|
padding: 4px;
|
|
border-radius: 4px;
|
|
} |