Update actor sheet
This commit is contained in:
@@ -0,0 +1,447 @@
|
||||
// Character Main Sheet V2 - Based on PNG character sheet design
|
||||
.character-main-v2 {
|
||||
.sheet-common();
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
.character-sheet-wrapper {
|
||||
background-image: url("../assets/sheet/character-bg.png");
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
padding: 8px 10px;
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
// Character Header with Banner
|
||||
.character-header {
|
||||
position: relative;
|
||||
margin-bottom: 5px;
|
||||
|
||||
.character-name-banner {
|
||||
background-image: url("../assets/sheet/banner-bg.png");
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
height: 60px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
input {
|
||||
background: transparent;
|
||||
border: none;
|
||||
text-align: center;
|
||||
font-family: "Cinzel", serif;
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
color: #2c2c2c;
|
||||
width: 500px;
|
||||
text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
}
|
||||
|
||||
.character-toggle-controls {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
// Main Grid Layout
|
||||
.character-main-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 300px;
|
||||
gap: 12px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
// Left Column - Portrait, Attributes, HP
|
||||
.character-left-column {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 12px;
|
||||
align-items: flex-start;
|
||||
|
||||
.portrait-hp-column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
width: 200px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.character-portrait {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
border: 3px solid #6b6b6b;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
background: #d4d4d4;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
|
||||
// HP Shields - below portrait, same width
|
||||
.hp-shields-section {
|
||||
width: 200px;
|
||||
|
||||
.hp-shields {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
|
||||
.hp-item {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
|
||||
.hp-label {
|
||||
font-family: "Cinzel", serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
color: #2c2c2c;
|
||||
text-transform: uppercase;
|
||||
width: 55px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.hp-value {
|
||||
input {
|
||||
width: 40px;
|
||||
height: 28px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border: 2px solid #6b6b6b;
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
.hp-separator {
|
||||
font-family: "Cinzel", serif;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: #2c2c2c;
|
||||
}
|
||||
|
||||
.hp-max {
|
||||
input {
|
||||
width: 40px;
|
||||
height: 28px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
background: rgba(200, 220, 255, 0.5);
|
||||
border: 2px solid #6b6b6b;
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.character-attributes {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
max-width: 280px;
|
||||
|
||||
.attribute-shield {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 6px 12px;
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
border: 2px solid #6b6b6b;
|
||||
border-radius: 4px;
|
||||
height: auto;
|
||||
|
||||
.attribute-label {
|
||||
font-family: "Cinzel", serif;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: #2c2c2c;
|
||||
text-transform: uppercase;
|
||||
margin: 0;
|
||||
min-width: 40px;
|
||||
|
||||
a.rollable {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
color: #2c2c2c;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
|
||||
i {
|
||||
font-size: 12px;
|
||||
color: #6b6b6b;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: #000;
|
||||
text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
|
||||
|
||||
i {
|
||||
color: #2c2c2c;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.attribute-value {
|
||||
input {
|
||||
width: 45px;
|
||||
height: 32px;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border: 2px solid #6b6b6b;
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
.attribute-save {
|
||||
margin-left: auto;
|
||||
|
||||
input {
|
||||
width: 45px;
|
||||
height: 32px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
background: rgba(200, 220, 255, 0.5);
|
||||
border: 2px solid #6b6b6b;
|
||||
border-radius: 4px;
|
||||
color: #2c2c2c;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Right Column - Race, Classes
|
||||
.character-right-column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
|
||||
.section-title {
|
||||
font-family: "Cinzel", serif;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: #2c2c2c;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 8px;
|
||||
padding: 5px 10px;
|
||||
background: rgba(255, 255, 255, 0.6);
|
||||
border: 2px solid #6b6b6b;
|
||||
border-radius: 4px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.race-section {
|
||||
.race-box {
|
||||
padding: 10px;
|
||||
background: rgba(255, 255, 255, 0.5);
|
||||
border: 3px solid #6b6b6b;
|
||||
border-radius: 8px;
|
||||
min-height: 60px;
|
||||
|
||||
.section-title {
|
||||
font-family: "Cinzel", serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
color: #2c2c2c;
|
||||
text-transform: uppercase;
|
||||
margin: 0 0 8px 0;
|
||||
padding: 5px;
|
||||
background: rgba(255, 255, 255, 0.6);
|
||||
border: 2px solid #6b6b6b;
|
||||
border-radius: 4px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.race-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
|
||||
.item-img {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border: 2px solid #6b6b6b;
|
||||
border-radius: 4px;
|
||||
object-fit: cover;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.race-name {
|
||||
flex: 1;
|
||||
font-family: "Cinzel", serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
color: #2c2c2c;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.controls {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
|
||||
a {
|
||||
color: #6b6b6b;
|
||||
cursor: pointer;
|
||||
transition: color 0.2s;
|
||||
|
||||
&:hover {
|
||||
color: #2c2c2c;
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.no-race {
|
||||
text-align: center;
|
||||
font-family: "Crimson Text", serif;
|
||||
font-size: 13px;
|
||||
color: #6b6b6b;
|
||||
font-style: italic;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
border: none;
|
||||
font-family: "Cinzel", serif;
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.classes-section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
|
||||
.class-box {
|
||||
padding: 10px;
|
||||
background: rgba(255, 255, 255, 0.5);
|
||||
border: 3px solid #6b6b6b;
|
||||
border-radius: 8px;
|
||||
|
||||
.class-label {
|
||||
font-family: "Cinzel", serif;
|
||||
font-size: 11px;
|
||||
color: #6b6b6b;
|
||||
text-align: center;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.class-content {
|
||||
.class-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
|
||||
.item-img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border: 2px solid #6b6b6b;
|
||||
border-radius: 4px;
|
||||
object-fit: cover;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.class-name {
|
||||
flex: 1;
|
||||
font-family: "Cinzel", serif;
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
color: #2c2c2c;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.controls {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
|
||||
a {
|
||||
color: #6b6b6b;
|
||||
cursor: pointer;
|
||||
transition: color 0.2s;
|
||||
|
||||
&:hover {
|
||||
color: #2c2c2c;
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.no-class {
|
||||
text-align: center;
|
||||
font-family: "Crimson Text", serif;
|
||||
font-size: 11px;
|
||||
color: #6b6b6b;
|
||||
font-style: italic;
|
||||
padding: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.class-input {
|
||||
input {
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
border: none;
|
||||
font-family: "Cinzel", serif;
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.origin-section {
|
||||
.origin-box {
|
||||
padding: 15px;
|
||||
background: rgba(255, 255, 255, 0.5);
|
||||
border: 3px solid #6b6b6b;
|
||||
border-radius: 8px;
|
||||
min-height: 350px;
|
||||
|
||||
textarea {
|
||||
width: 100%;
|
||||
min-height: 320px;
|
||||
background: transparent;
|
||||
border: none;
|
||||
font-family: "Crimson Text", serif;
|
||||
font-size: 13px;
|
||||
line-height: 1.6;
|
||||
resize: vertical;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user