Adaris:Main Page/styles.css

Revision as of 20:30, 27 February 2025 by Oros (talk | contribs) (Created page with "Ensure both the left and right boxes have equal heights: #mp-left, #mp-right { display: flex; flex-direction: column; justify-content: space-between; Ensures the content and buttons are properly spaced: } General styling for boxes and headings: .mp-box { border: 1px solid #D4C5A0; A soft, warm border: padding: 0 0.5em 0.5em; margin-top: 2px; background-color: #F7EFE3; /* Light parchment-like background for a magical, old-w...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

/* Ensure both the left and right boxes have equal heights */

  1. mp-left, #mp-right {
   display: flex;
   flex-direction: column;
   justify-content: space-between; /* Ensures the content and buttons are properly spaced */

}

/* General styling for boxes and headings */ .mp-box {

   border: 1px solid #D4C5A0; /* A soft, warm border */
   padding: 0 0.5em 0.5em;
   margin-top: 2px;
   background-color: #F7EFE3; /* Light parchment-like background for a magical, old-world feel */
   display: flex;
   flex-direction: column;
   justify-content: space-between; /* Ensures the button stays at the bottom */
   flex-grow: 1; /* Ensures boxes grow equally to fill available space */

}

.mp-h2, .skin-timeless .mp-h2 {

   border: 1px solid #D4C5A0; /* Softer, lighter border */
   margin: 0.5em 0;
   padding: 0.4em 0.6em;
   font-size: 120%;
   font-weight: bold;
   color: #4F3C28; /* Dark brown for contrast */
   background-color: #E9DAC1; /* Softer, luminous gold */

}

/* Less prominent text */ .mp-later {

   font-size: 85%;
   font-weight: normal;
   color: #705D4E; /* Softer, warm brown for minor text */

}

/* Welcome text at the top */

  1. mp-welcomecount {
   text-align: center;
   margin: 0.4em;

}

  1. mp-welcome {

text-align: center;

   font-size: 162%;
   padding: 0.1em;
   color: #4F3C28; /* Dark brown for welcome text */

}

  1. mp-welcome h1,
  2. mp-welcome .mw-heading1 {
   font-size: inherit;
   font-family: inherit;
   display: inline;
   border: none;

}

  1. mp-free {
   font-size: 95%;
   color: #4F3C28; /* Darker, neutral brown */

}

  1. articlecount {
   font-size: 85%;
   color: #705D4E; /* Softer warm brown */

}

/* Clear floats */ .mp-contains-float::after {

   content: "";
   display: block;
   clear: both;

}

/* Flexbox for layout on larger screens */ @media (min-width: 875px) {

   #mp-upper {
       display: flex;
       justify-content: space-between;
       align-items: stretch; /* Makes sure the boxes stretch to the same height */
   }
   #mp-left {
       flex: 1 1 55%;
       margin-right: 2px;
   }
   
   #mp-right {
       flex: 1 1 45%;
       margin-left: 2px;
   }

}

/* Color scheme for specific sections */ @media screen {

   #mp-topbanner {
       background-color: #f9f6f0; /* Light parchment background */
       border-color: #D4C5A0; /* Soft, warm border */
   }
   
   #mp-banner {
       background-color: #E9DAC1; /* Luminous gold background */
       border-color: #B0915A; /* Regal gold border */
   }
   
   #mp-left {
       background-color: #F4ECE3; /* Light cream for left column */
       border-color: #D4C5A0; /* Soft neutral border */
   }
   
   #mp-left .mp-h2 {
       background-color: #E9DAC1; /* Soft gold background */
       border-color: #D4C5A0; /* Warm neutral border */
       padding-left: 10px;
       border: 2px solid #D4C5A0;
       margin: 0.5em 0;
       font-size: 120%;
       font-weight: bold;
       color: #4F3C28; /* Dark brown text */
   }
   
   #mp-right {
       background-color: #F4E1E8; /* Soft pink for an enchanted look */
       border-color: #D4C5A0; /* Softer border */
   }
   
   #mp-right .mp-h2 {
       background-color: #D6B6E6; /* Muted lavender for a soft, magical feel */
       border-color: #804093; /* Darker purple for contrast */
       padding-left: 10px;
       border: 2px solid #D4C5A0;
       margin: 0.5em 0;
       font-size: 120%;
       font-weight: bold;
       color: #4F3C28; /* Dark brown */
   }
   
   #mp-middle {
       background-color: #F7EFE3;
       border-color: #B0915A;
   }
   
   #mp-middle .mp-h2 {
       background-color: #E9DAC1; /* Light parchment with contrast */
       border-color: #B0915A;
   }
   
   #mp-lower {
       background-color: #F3E6F7; /* Pale lavender for lower section */
       border-color: #B591D3; /* Subtle lavender */
   }
   
   #mp-lower .mp-h2 {
       background-color: #D6B6E6; /* Richer lavender for headings */
       border-color: #7F3B93; /* Darker purple */
       padding-left: 10px;
       border: 2px solid #D4C5A0;
       margin: 0.5em 0;
       font-size: 120%;
       font-weight: bold;
       color: #4F3C28; /* Dark brown for readability */
   }
   
   #mp-bottom {
       border-color: #D4C5A0; /* Neutral border for the bottom */
   }
   
   #mp-bottom .mp-h2 {
       background-color: #F0E6D8;
       border-color: #B09D84;
   }

}

/* Dark mode color scheme */ html.skin-theme-clientpref-night #mp-topbanner {

   background-color: #23282A;
   border-color: #5F5348;

}

html.skin-theme-clientpref-night #mp-banner {

   background-color: #5F3B63;
   border-color: #87638F;

}

html.skin-theme-clientpref-night #mp-left {

   background-color: #23342F;
   border-color: #2E573B;

}

html.skin-theme-clientpref-night #mp-left .mp-h2 {

   background-color: #2E573B;
   border-color: #416B51;

}

html.skin-theme-clientpref-night #mp-right {

   background-color: #362337;
   border-color: #7A497F;

}

html.skin-theme-clientpref-night #mp-right .mp-h2 {

   background-color: #7A497F;
   border-color: #9F65A4;

}

html.skin-theme-clientpref-night #mp-middle {

   background-color: #4F3B31;
   border-color: #75413D;

}

html.skin-theme-clientpref-night #mp-lower {

   background-color: #362744;
   border-color: #6A578D;

}

html.skin-theme-clientpref-night #mp-bottom {

   border-color: #5F5348;

}

html.skin-theme-clientpref-night #mp-bottom .mp-h2 {

   background-color: #4B423D;
   border-color: #7F5F53;

}

/* Styling for Explore more button */ .explore-more {

   margin-top: auto; /* Pushes the button to the bottom */
   display: flex;
   justify-content: center;

}

.explore-more p a {

   font-size: 1.2em;
   font-weight: bold;
   color: #5a3b91; /* Rich purple */
   text-decoration: none;
   padding: 10px 15px;
   background-color: #dab4e3; /* Soft magical lavender background */
   border: 2px solid #804093; /* Darker purple border */
   border-radius: 10px; /* Pronounced rounded corners */
   display: inline-block;
   text-align: center;
   transition: background-color 0.3s, color 0.3s;

}

.explore-more p a:hover {

   background-color: #804093; /* Darker magical purple on hover */
   color: #ffffff; /* White text on hover */

}

/* Featured picture container styling */

  1. mp-tfp {
   border: 1px solid #8F7A66;
   padding: 10px;
   border-radius: 5px;
   background-color: #F3E6F7;
   text-align: center;

}

/* Featured caption styling */ .featured-caption {

   margin-top: 10px;
   font-size: 0.9em;
   color: #4F3C28;
   text-align: center;
   font-style: italic;

}

/* Ensure layout stays in two columns */ @media (min-width: 875px) {

   #mp-upper {
       display: flex;
       justify-content: space-between;
   }

}

/* Specific styling for Read More button */ .read-more {

   margin-top: auto; /* Pushes the button to the bottom */
   display: flex;
   justify-content: center;

}

.read-more a {

   font-size: 1.2em;
   font-weight: bold;
   color: #4F3C28;
   text-decoration: none;
   padding: 10px 15px;
   background-color: #E9DAC1;
   border: 2px solid  #D4C5A0;
   border-radius: 10px;
   text-align: center;
   transition: background-color 0.3s, color 0.3s;

}

.read-more a:hover {

   background-color: #a89c88;
   color: #FFFFFF;

}