Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* 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: 10px;
border: 2px solid #ccc;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
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: 8px 0;
height: 40px;
}
.char-title {
font-size: 18px;
font-weight: bold;
margin-top: 6px;
}
.char-blurb {
font-size: 14px;
color: #444;
margin-top: 4px;
}
/* end character hub css */