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



    Supernatural Lore

    MediaWiki:Cosmos.css

    Revision as of 11:40, 12 August 2026 by Supernat (talk | contribs)
    (diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

    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.
    /* Lore buttons — match the landing page's homebtn style, adapted for Cosmos */
    
    .lore-btn,
    a.lore-btn,
    .formlink-button .lore-btn,
    button.lore-btn {
        display: inline-block;
        box-sizing: border-box;
        width: 100%;
        border: 3px solid #45360f;
        color: #45360f;
        background-color: transparent;
        border-radius: 0;
        padding: 15px 20px;
        font-size: 22px;
        text-transform: uppercase;
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.2s, color 0.2s;
    }
    
    .lore-btn:hover,
    a.lore-btn:hover,
    .formlink-button .lore-btn:hover,
    button.lore-btn:hover {
        border: 3px solid #45360f;
        background-color: #45360f;
        color: #e3dac3;
        text-decoration: none;
    }
    
    /* Button wrappers on the main page */
    .lore-btn-wrapper {
        display: inline-block;
        width: 260px;
        margin: 15px;
        text-align: center;
        vertical-align: top;
    }
    
    .lore-btn-count {
        display: block;
        font-size: 14px;
        color: #45360f;
        margin-top: 8px;
        width: 100%;
        text-transform: none;
        font-weight: normal;
    }
    
    .lore-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
        margin: 30px 0;
    }
    
    .lore-intro {
        text-align: left;
        margin-bottom: 20px;
    }
    
    .lore-welcome {
        margin: 10px 0;
    }
    
    /* Form button (PageForms formlink) styling */
    .formlink-button a,
    .formlink-button button {
        border: 3px solid #45360f;
        color: #45360f;
        background-color: transparent;
        border-radius: 0;
        padding: 12px 25px;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 700;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.2s, color 0.2s;
    }
    
    .formlink-button a:hover,
    .formlink-button button:hover {
        background-color: #45360f;
        color: #e3dac3;
        text-decoration: none;
    }