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



    Edge of Twilight Wiki

    MediaWiki:Common.css: Difference between revisions

    mNo edit summary
    mNo edit summary
    Line 16: Line 16:
    body * {
    body * {
       font-family: 'Open Sans',sans-serif;
       font-family: 'Open Sans',sans-serif;
    }
    body #mw-content-text {
      color: #1A1A1A;
      font-family: 'Open Sans', sans-serif;
    }
    }


    /* Main content area */
    /* Main content area */
    #content, .mw-body {
    #content, .mw-body {
      background-color: #F8F9FA;
      color: #1A1A1A;
       border: 1px solid #BDC3C7;
       border: 1px solid #BDC3C7;
       padding: 1em;
       padding: 1em;
    Line 33: Line 26:
    /* Header and footer */
    /* Header and footer */
    #mw-head, #footer {
    #mw-head, #footer {
      background-color: #1A1A1A;
       color: #BDC3C7;
       color: #BDC3C7;
    }
    }
    Line 39: Line 31:
    /* Sidebar */
    /* Sidebar */
    #mw-panel {
    #mw-panel {
      background-color: #2C3E50;
       color: #BDC3C7;
       color: #BDC3C7;
    }
    }
    Line 53: Line 44:
    /* Links */
    /* Links */
    a {
    a {
      color: #8E44AD;
       text-decoration: none;
       text-decoration: none;
    }
    }

    Revision as of 13:56, 9 September 2025

    .infobox {
        border: 1px solid #aaa;
        background-color: #f9f9f9;
        padding: 5px;
        float: right;
        margin: 0 0 1em 1em;
    }
    
    /* === Edge of Twilight Theme for Cosmos Skin === */
    
    /* Body and general background */
    body {
      background-color: #2C3E50;
    }
    
    body * {
      font-family: 'Open Sans',sans-serif;
    }
    
    /* Main content area */
    #content, .mw-body {
      border: 1px solid #BDC3C7;
      padding: 1em;
    }
    
    /* Header and footer */
    #mw-head, #footer {
      color: #BDC3C7;
    }
    
    /* Sidebar */
    #mw-panel {
      color: #BDC3C7;
    }
    
    #mw-panel a {
      color: #BDC3C7;
    }
    
    #mw-panel a:hover {
      color: #F39C12;
    }
    
    /* Links */
    a {
      text-decoration: none;
    }
    
    a:hover {
      color: #F39C12;
      text-decoration: underline;
    }
    
    /* Buttons */
    button, input[type="submit"], .mw-ui-button {
      background-color: #8E44AD;
      color: #F8F9FA;
      border: none;
      padding: 0.5em 1em;
      border-radius: 4px;
    }
    
    button:hover, input[type="submit"]:hover, .mw-ui-button:hover {
      background-color: #F39C12;
      color: #1A1A1A;
    }
    
    /* Headings */
    h1, h2, h3, h4, h5, h6 {
      color: #2C3E50;
      font-family: 'Merriweather', serif;
    }
    
    /* Table styling */
    table {
      border-collapse: collapse;
      width: 100%;
      background-color: #F8F9FA;
      color: #1A1A1A;
    }
    
    th, td {
      border: 1px solid #BDC3C7;
      padding: 0.5em;
    }
    
    th {
      background-color: #8E44AD;
      color: #F8F9FA;
    }
    
    /* Search box and input fields */
    input[type="text"], input[type="search"] {
      background-color: #F8F9FA;
      border: 1px solid #BDC3C7;
      color: #1A1A1A;
      padding: 0.3em;
    }
    
    /* Optional: subtle box shadow for depth */
    .mw-body, #content {
      box-shadow: 0 0 10px rgba(142, 68, 173, 0.2);
    }