Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.

Template:Character Relationship Box/styles.css: Difference between revisions

Template page
Content deleted Content added
No edit summary
No edit summary
Line 1: Line 1:
/* Character Relationship Box Styles */
/* Character Relationship Box Style */
.character-relationship-box {
.character-relationship-box {
display: flex;
display: flex;
align-items: center;
align-items: center;
background-color: var(--background-color, #2b2b2b);
margin-bottom: 20px;
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;
background-color: var(--background-color, #2b2b2b);
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-text {
.character-relationship-content {
flex: 1;
flex: 1;
}
}


.character-relationship-header {
.character-relationship-header {
display: block;
font-size: 1.8em;
font-size: 1.5em;
font-weight: bold;
font-weight: bold;
margin-bottom: 8px;
color: var(--header-color, #df0049);
color: var(--header-color, #df0049);
margin-bottom: 8px;
}
}


.character-relationship-subinfo {
.character-relationship-subinfo {
display: block;
font-size: 0.95em;
margin-bottom: 10px;
margin-bottom: 10px;
line-height: 1.4em;
}
}


.character-relationship-description {
.character-relationship-description {
display: block;
font-size: 1em;
margin-top: 10px;
margin-top: 10px;
line-height: 1.5em;
}
}


.character-relationship-image {
.character-relationship-image {
margin-left: 15px;
margin-left: 20px;
}
}


.character-heart {
.character-relationship-image img {
color: var(--header-color, #df0049);
width: var(--image-size, 100px);
font-size: 1.2em;
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;
}