×
Create a new article
Write your page title here:
We currently have 69 articles on Super Shiritori Wiki. Type your article name above or click on one of the titles below and start writing!



Super Shiritori Wiki

MediaWiki:Common.css: Difference between revisions

Welcome to Super-Shiritori!

Please remember:

  • No vandalism – Do not add nonsense, false info, spam, or blank pages.
  • Respect others – Be polite and assume good faith.
  • Use reliable information – Make sure edits are accurate and IMPORTANT.
  • Stay constructive – Help us grow the wiki with content, especially with the Word compendium.

⚠️ Repeated vandalism or rule-breaking may result in warnings or blocks. If you see vandalism, please revert it and notify an admin.

imported>BlankEntity
No edit summary
No edit summary
 
(21 intermediate revisions by the same user not shown)
Line 1: Line 1:
.mbox {
.mbox {
    /* the background of the entire box */;
     background-color: rgb(230, 230, 230);
     background-color: rgb(230, 230, 230);
    border-color: rgb(230, 230, 230);
    border-width: 0.5;
    border-left-color: rgb(230, 230, 230);
    border-radius: 0.1;
    font-size: 11;
}


     /* the border color of the entire box */
/* Internal links (use .internal first) */
     border-color: rgb(230, 230, 230);
a.internal:link,
a.internal:visited {
     color: #de93db;  /* pink */
}
 
/* Explicit safeguard: only links on da wiki */
.mw-parser-output a[href^="https://supershiritori.fandom.com"]:link,
.mw-parser-output a[href^="https://supershiritori.fandom.com"]:visited {
    color: #de93db;
}
 
/* External + interwiki links */
a.external:link,
a.external:visited,
a.extiw:link,
a.extiw:visited {
     color: #7d3cff;  /* violet */
    font-weight: bold;
    text-decoration: underline dotted;
}
 
/* Fallback for any remaining http links (safety net) */
.mw-parser-output a[href^="http"]:link,
.mw-parser-output a[href^="http"]:visited {
    color: #7d3cff;
}


    /* the border thickness of the entire box */
/* Redlinks */
     border-width: 0.5;
a.new,
.mw-parser-output a.new {
     color: #ff0000;   /* red */
}


    /* the default thick left border color; note this can be changed from within the template implementations using the "color" parameter */
/* FORCE BREAK GIANT ARTICLE TITLES */
     border-left-color: rgb(230, 230, 230);
.page-header__title-wrapper,
.page-header__main,
.page-header__title,
h1.page-header__title {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
     width: 100% !important;
    word-break: break-all !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    flex: 1 1 auto !important;
}


    /* the rounded-ness of the corners */;
/* FORCE BREAK LONG WORDS IN CATEGORY LISTINGS */
     border-radius: 0.1;
.category-page__member-link {
    display: block !important;
     min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    word-break: break-all !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    flex: 1 1 auto !important;
}


    /* the baseline font-size of the mbox */
/* FORCE BREAK LONG WORDS IN THE COMMENTS SECTION */
     font-size: 11;
#articleComments,
#articleComments * {
     min-width: 0 !important;
    overflow-wrap: break-word !important;
    word-break: break-all !important;
}
}

Latest revision as of 00:54, 29 August 2026

.mbox {
    background-color: rgb(230, 230, 230);
    border-color: rgb(230, 230, 230);
    border-width: 0.5;
    border-left-color: rgb(230, 230, 230);
    border-radius: 0.1;
    font-size: 11;
}

/* Internal links (use .internal first) */
a.internal:link,
a.internal:visited {
    color: #de93db;   /* pink */
}

/* Explicit safeguard: only links on da wiki */
.mw-parser-output a[href^="https://supershiritori.fandom.com"]:link,
.mw-parser-output a[href^="https://supershiritori.fandom.com"]:visited {
    color: #de93db;
}

/* External + interwiki links */
a.external:link,
a.external:visited,
a.extiw:link,
a.extiw:visited {
    color: #7d3cff;   /* violet */
    font-weight: bold;
    text-decoration: underline dotted;
}

/* Fallback for any remaining http links (safety net) */
.mw-parser-output a[href^="http"]:link,
.mw-parser-output a[href^="http"]:visited {
    color: #7d3cff;
}

/* Redlinks */
a.new,
.mw-parser-output a.new {
    color: #ff0000;   /* red */
}

/* FORCE BREAK GIANT ARTICLE TITLES */
.page-header__title-wrapper,
.page-header__main,
.page-header__title,
h1.page-header__title {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    word-break: break-all !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    flex: 1 1 auto !important;
}

/* FORCE BREAK LONG WORDS IN CATEGORY LISTINGS */
.category-page__member-link {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    word-break: break-all !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    flex: 1 1 auto !important;
}

/* FORCE BREAK LONG WORDS IN THE COMMENTS SECTION */
#articleComments,
#articleComments * {
    min-width: 0 !important;
    overflow-wrap: break-word !important;
    word-break: break-all !important;
}