Jump to content

Adaris:Main Page/styles.css

From Adaris
Revision as of 04:25, 8 September 2024 by Oros (talk | contribs)
/* General styling for boxes and headings */
.mp-box {
	border: 1px solid #d9c6a3; /* Softer warm border to match the theme */
	padding: 0 0.5em 0.5em;
	margin-top: 2px;
	background-color: #F7EFE3; /* Base parchment-like background */
}

.mp-h2,
.skin-timeless .mp-h2 {
	border: 1px solid #d9c6a3; /* Softer borders */
	margin: 0.5em 0;
	padding: 0.2em 0.4em;
	font-size: 120%;
	font-weight: bold;
	font-family: inherit;
	color: #5a4632; /* Rich brown for better contrast */
	background-color: #EADCC5; /* Subtle gold background for headers */
}

/* Less prominent text */
.mp-later {
	font-size: 85%;
	font-weight: normal;
	color: #8c7a65; /* Softer brown for minor text */
}

/* Welcome text at the top */
#mp-welcomecount {
	text-align: center;
	margin: 0.4em;
}

#mp-welcome {
	font-size: 162%;
	padding: 0.1em;
	color: #5a4632; /* Rich brown */
}

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

#mp-free {
	font-size: 95%;
	color: #6c5d4b; /* Medium brown for secondary text */
}

#articlecount {
	font-size: 85%;
	color: #8c7a65; /* Softer 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;
	}
	
	#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: #F7EFE3; /* Base parchment */
		border-color: #d9c6a3; /* Softer border */
	}
	
	#mp-banner {
		background-color: #EADCC5; /* Lighter gold */
		border-color: #c3b19a; /* Warm, subtle brown */
	}
	
	#mp-left {
		background-color: #F6E4CC; /* Soft cream for left box */
		border-color: #d2b893; /* Muted tan border */
	}
	
	#mp-left .mp-h2 {
		background-color: #E5CBA8; /* Soft tan for headers */
		border-color: #bca187; /* Deeper tan */
		padding-left: 10px;
		border: 2px solid #d9c6a3;
    	margin: 0.5em 0;
    	padding: 0.4em 0.6em;
    	font-size: 120%;
    	font-weight: bold;
    	color: #5a4632; /* Rich brown */
	}
	
	#mp-right {
		background-color: #F7D9C4; /* Soft coral for the right column */
		border-color: #d9b8a4; /* Matching coral border */
	}
	
	#mp-right .mp-h2 {
		background-color: #E7BFA6; /* Warm coral for headers */
		border-color: #C3967C; /* Deeper coral */
		padding-left: 10px;
		border: 2px solid #d9c6a3;
    	margin: 0.5em 0;
    	padding: 0.4em 0.6em;
    	font-size: 120%;
    	font-weight: bold;
    	color: #5a4632;
	}
	
	#mp-lower {
		background-color: #F8E7D0; /* Light peach for the lower section */
		border-color: #dbc2a6; /* Softer peach border */
	}
	
	#mp-lower .mp-h2 {
		background-color: #e6c9ad; /* Richer peach for headings */
		border-color: #bca17c; /* Deeper peach */
		padding-left: 10px;
		border: 2px solid #d9c6a3;
    	margin: 0.5em 0;
    	padding: 0.4em 0.6em;
    	font-size: 120%;
    	font-weight: bold;
    	color: #5a4632;
	}
	
	#mp-bottom {
		border-color: #d9c6a3;
	}
	
	#mp-bottom .mp-h2 {
		background-color: #F7EFE3;
		border-color: #d9c6a3;
	}
}

/* Dark mode color scheme */
html.skin-theme-clientpref-night #mp-topbanner {
	background-color: #2d2b28;
	border-color: #554f47;
}

html.skin-theme-clientpref-night #mp-banner {
	background-color: #4f453f;
	border-color: #6e6359;
}

html.skin-theme-clientpref-night #mp-left {
	background-color: #3e3a36;
	border-color: #554f47;
}

html.skin-theme-clientpref-night #mp-left .mp-h2 {
	background-color: #5a534b;
	border-color: #766e63;
}

html.skin-theme-clientpref-night #mp-right {
	background-color: #3f3633;
	border-color: #6b5e57;
}

html.skin-theme-clientpref-night #mp-right .mp-h2 {
	background-color: #6b5e57;
	border-color: #8e7e76;
}

html.skin-theme-clientpref-night #mp-lower {
	background-color: #4a413b;
	border-color: #756a60;
}

html.skin-theme-clientpref-night #mp-bottom {
	border-color: #554f47;
}

html.skin-theme-clientpref-night #mp-bottom .mp-h2 {
	background-color: #4f453f;
	border-color: #6e6359;
}

/* Button-like styling for "Read the full article" and "Explore More" links */
.explore-more {
    margin-top: 15px;
    clear: both;
    display: flex;
    justify-content: center;
}


.explore-more p a {
    font-size: 1.2em;
    font-weight: bold;
    color: #4f3c28; /* Darker brown for links */
    text-decoration: none;
    padding: 10px 15px;
    background-color: #F5D1B8; /* Softer peach background */
    border: 2px solid #C3967C;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.explore-more p a:hover {
    background-color: #C3967C; /* Deeper peach on hover */
    color: #ffffff; /* White text on hover */
}

/* Button styling for Read the full article */
.read-more {
    margin-top: 15px;
    clear: both;
    display: flex;
    justify-content: center;
}

.read-more a {
    font-size: 1.2em;
    font-weight: bold;
    color: #4f3c28; /* Darker brown */
    text-decoration: none;
    padding: 10px 15px;
    background-color: #F5D1B8; /* Softer peach */
    border: 2px solid #C3967C;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.read-more a:hover {
    background-color: #C3967C;
    color: #ffffff;
}

/* Featured picture container styling */
#mp-tfp {
    border: 1px solid #8f7a66;
    padding: 10px;
    border-radius: 5px;
    background-color: #F7EFE3;
    text-align: center;
}

/* Featured caption styling */
.featured-caption {
    margin-top: 10px;
    font-size: 0.9em;
    color: #5a4632;
    text-align: center;
    font-style: italic;
}

/* Ensure layout stays in two columns */
@media (min-width: 875px) {
    #mp-upper {
        display: flex;
        justify-content: space-between;
    }
}