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

Template page
/* 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;
}