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



    Under Doctor Wiki

    MediaWiki:Cosmos.css: Difference between revisions

    No edit summary
    No edit summary
     
    (One intermediate revision by the same user not shown)
    Line 2: Line 2:
    /* Google Fonts ================ */
    /* Google Fonts ================ */
    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
    :root {
      --tmnd-accent: var(--link-color, #121212);
    }
    /* 2) Container */
    #ud-header {
      position: relative;
      background: #fff;
      border: 2px dashed var(--tmnd-accent);
      border-radius: 8px;
      /* offset “paper” shadow effect */
      filter: drop-shadow(-0.5em 0.5em 0 var(--tmnd-accent)) !important;
      padding: 20px 24px;
      margin: 0 2px 16px 10px;
      overflow: hidden;
      color: #000 !important;
    }
    /* 3) Title */
    #ud-header h3 {
      margin: 0;
      text-align: center;
      font-size: 32px;
      line-height: 1.3;
      color: var(--tmnd-accent);
      font-weight: 700;
      font-family: "Trebuchet MS", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
    }


    #udborder h3, #udborder h3 a {
    /* 4) Divider */
        text-align: center !important;
    #ud-header hr {
        font-weight: bold !important;
      margin: 16px 0;
        font-family: Bebas Neue !important;
      width: 100%;
        font-size: 32px !important;
      height: 2px;
        color: var(--textcolor) !important;
      border: 0;
        margin-top: 15px !important;
      border-radius: 7px;
      background-image: linear-gradient(to right top, var(--tmnd-accent), var(--tmnd-accent)) !important;
    }
    }
    #udborder h4, #udborder h4 a {
     
        text-align: center !important;
    /* 5) Body copy */
        font-weight: bold !important;
    #ud-header p {
        font-family: Bebas Neue !important;
      margin: 0;
         font-size: 32px !important;
      color: #000;
         color: var(--textcolor) !important;
      font-family: "Trebuchet MS", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.55;
    }
     
    /* 6) Optional: responsive tweaks */
    @media (max-width: 720px) {
      #ud-header {
         padding: 16px 18px;
         margin-left: 4px;
      }
      #ud-header h3 {
        font-size: 26px;
      }
    }
    }

    Latest revision as of 03:55, 26 January 2026

    /* All CSS here will be loaded for users of the Cosmos skin */
    /* Google Fonts ================ */
    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
    :root {
      --tmnd-accent: var(--link-color, #121212);
    }
    /* 2) Container */
    #ud-header {
      position: relative;
      background: #fff;
      border: 2px dashed var(--tmnd-accent);
      border-radius: 8px;
      /* offset “paper” shadow effect */
      filter: drop-shadow(-0.5em 0.5em 0 var(--tmnd-accent)) !important;
      padding: 20px 24px;
      margin: 0 2px 16px 10px;
      overflow: hidden;
      color: #000 !important;
    }
    
    /* 3) Title */
    #ud-header h3 {
      margin: 0;
      text-align: center;
      font-size: 32px;
      line-height: 1.3;
      color: var(--tmnd-accent);
      font-weight: 700;
      font-family: "Trebuchet MS", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
    }
    
    /* 4) Divider */
    #ud-header hr {
      margin: 16px 0;
      width: 100%;
      height: 2px;
      border: 0;
      border-radius: 7px;
      background-image: linear-gradient(to right top, var(--tmnd-accent), var(--tmnd-accent)) !important;
    }
    
    /* 5) Body copy */
    #ud-header p {
      margin: 0;
      color: #000;
      font-family: "Trebuchet MS", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.55;
    }
    
    /* 6) Optional: responsive tweaks */
    @media (max-width: 720px) {
      #ud-header {
        padding: 16px 18px;
        margin-left: 4px;
      }
      #ud-header h3 {
        font-size: 26px;
      }
    }