Template:Character Relationship Box/styles.css: Difference between revisions
Template page
More actions
Content deleted Content added
LordSkorne7 (talk | contribs) No edit summary |
LordSkorne7 (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
/* Character Relationship Box |
/* Character Relationship Box Style */ |
||
.character-relationship-box { |
.character-relationship-box { |
||
display: flex; |
display: flex; |
||
align-items: center; |
align-items: center; |
||
| ⚫ | |||
| ⚫ | |||
border: 2px solid var(--border-color, #df0049); |
border: 2px solid var(--border-color, #df0049); |
||
border-radius: 10px; |
border-radius: 10px; |
||
padding: 15px; |
padding: 15px; |
||
margin: 20px 0; |
|||
| ⚫ | |||
color: var(--text-color, #e0e0e0); |
color: var(--text-color, #e0e0e0); |
||
font-family: 'Varela Round', sans-serif; |
font-family: 'Varela Round', sans-serif; |
||
width: 100%; |
|||
max-width: 850px; |
|||
} |
} |
||
.character-relationship- |
.character-relationship-content { |
||
flex: 1; |
flex: 1; |
||
} |
} |
||
.character-relationship-header { |
.character-relationship-header { |
||
font-size: 1.8em; |
|||
| ⚫ | |||
font-weight: bold; |
font-weight: bold; |
||
| ⚫ | |||
color: var(--header-color, #df0049); |
color: var(--header-color, #df0049); |
||
| ⚫ | |||
} |
} |
||
.character-relationship-subinfo { |
.character-relationship-subinfo { |
||
font-size: 0.95em; |
|||
margin-bottom: 10px; |
margin-bottom: 10px; |
||
line-height: 1.4em; |
|||
} |
} |
||
.character-relationship-description { |
.character-relationship-description { |
||
font-size: 1em; |
|||
margin-top: 10px; |
margin-top: 10px; |
||
| ⚫ | |||
} |
} |
||
.character-relationship-image { |
.character-relationship-image { |
||
margin-left: |
margin-left: 20px; |
||
} |
} |
||
.character- |
.character-relationship-image img { |
||
width: var(--image-size, 100px); |
|||
border-radius: 8px; |
|||
margin-right: 2px; |
|||
} |
} |
||
Revision as of 20:20, May 1, 2025
/* Character Relationship Box Style */
.character-relationship-box {
display: flex;
align-items: center;
background-color: var(--background-color, #2b2b2b);
border: 2px solid var(--border-color, #df0049);
border-radius: 10px;
padding: 15px;
margin: 20px 0;
color: var(--text-color, #e0e0e0);
font-family: 'Varela Round', sans-serif;
width: 100%;
max-width: 850px;
}
.character-relationship-content {
flex: 1;
}
.character-relationship-header {
font-size: 1.8em;
font-weight: bold;
margin-bottom: 8px;
color: var(--header-color, #df0049);
}
.character-relationship-subinfo {
font-size: 0.95em;
margin-bottom: 10px;
line-height: 1.4em;
}
.character-relationship-description {
font-size: 1em;
margin-top: 10px;
line-height: 1.5em;
}
.character-relationship-image {
margin-left: 20px;
}
.character-relationship-image img {
width: var(--image-size, 100px);
border-radius: 8px;
}