More actions
Futureself (talk | contribs) No edit summary Tag: Reverted |
Futureself (talk | contribs) No edit summary Tag: Reverted |
||
| Line 17: | Line 17: | ||
width: 320px; | width: 320px; | ||
padding: 10px; | padding: 10px; | ||
margin: | margin: 12px; | ||
border: | border: 1px solid #ccc; | ||
border-radius: 12px; | border-radius: 12px; | ||
box-shadow: 0 4px 10px rgba(0,0,0,0. | box-shadow: 0 4px 10px rgba(0,0,0,0.1); | ||
text-align: center; | text-align: center; | ||
display: inline-block; | display: inline-block; | ||
| Line 34: | Line 34: | ||
.char-logo img { | .char-logo img { | ||
margin: | margin: 6px 0; | ||
height: 40px; | height: 40px; | ||
} | |||
.char-label { | |||
margin: 6px 0; | |||
font-size: 13px; | |||
font-weight: bold; | |||
font-style: italic; | |||
opacity: 0.7; | |||
} | } | ||
.char-title { | .char-title { | ||
font-size: | font-size: 16px; | ||
font-weight: bold; | font-weight: bold; | ||
margin-top: 6px; | margin-top: 6px; | ||
| Line 46: | Line 54: | ||
.char-blurb { | .char-blurb { | ||
font-size: 14px; | font-size: 14px; | ||
margin-top: 4px; | margin-top: 4px; | ||
line-height: 1.4; | |||
} | } | ||
/* end character hub css */ | /* end character hub css */ | ||
Revision as of 16:54, 19 April 2025
/* CSS placed here will be applied to all skins */
.two-column-manual {
display: flex; /* Use flex to place columns side by side */
flex-wrap: wrap; /* Allows wrapping on smaller screens */
gap: 1.5em; /* Space between columns */
align-items: flex-start;
margin: 1em 0;
}
.two-column-manual > div {
flex: 1 1 0;
min-width: 250px; /* Optional: prevent columns from becoming too narrow */
}
/* character hub css from chatgpt, ver 1.0 */
.char-card-default {
width: 320px;
padding: 10px;
margin: 12px;
border: 1px solid #ccc;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
text-align: center;
display: inline-block;
vertical-align: top;
background-color: #fff;
}
.char-img img {
border-radius: 10px;
max-width: 100%;
height: auto;
}
.char-logo img {
margin: 6px 0;
height: 40px;
}
.char-label {
margin: 6px 0;
font-size: 13px;
font-weight: bold;
font-style: italic;
opacity: 0.7;
}
.char-title {
font-size: 16px;
font-weight: bold;
margin-top: 6px;
}
.char-blurb {
font-size: 14px;
margin-top: 4px;
line-height: 1.4;
}
/* end character hub css */