Actions

MediaWiki

Common.css: Difference between revisions

From hmis

No edit summary
No edit summary
 
(10 intermediate revisions by the same user not shown)
Line 32: Line 32:
}
}
.banner {
.banner {
flex: 1;
    background-color: #e0e0e0;        /* The grey color from your HTML */
margin: 5px;
    font-family: Arial, sans-serif;    /* Replaced Comic Sans with Arial */
min-width: 210px;
    font-size: 20pt;                  /* Match your current header size */
padding: 10px 10px 10px 10px;
    font-weight: bold;                 /* Match your <b> tag */
font-family: "Comic Sans MS", "Comic Sans", cursive;
    padding: 5px 20px;                 /* Corrected padding syntax */
font-size: 36pt;
    text-align: left;                 /* Match your current look */
text-align: center;
    margin: 10px 0;                    /* Spacing between sections */
background-color: #ffffff;
    box-shadow: 0 4px 4px rgba(0,0,0,0.1); /* Subtle shadow (reduced from 0.8 for a cleaner look) */
box-shadow: 0 4px 4px rgba(0,0,0,0.8);
}
.kb-text {
    font-family: Arial, sans-serif;
    font-size: 12pt;
    padding: 20px;
    vertical-align: top;
}
.kb-box {
position: relative;
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 20px;
    background-color: #ffffff;
    vertical-align: top;
    font-family: Arial, sans-serif;
    font-size: 12pt;
   
    /* 1. Initial Shadow (Subtle) */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
   
    /* 2. Transition (The "Animation" speed) */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   
    /* 3. Ensure the box is treated as a block for the transform */
    display: table-cell;
}
.kb-box:hover {
    /* 4. The "Growth" effect (lifts it slightly) */
    transform: translateY(-5px) scale(1.01);
   
    /* 5. The "Deepening" shadow */
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
   
    /* 6. Optional: Change border color slightly */
    border-color: #aaaaaa;
   
    /* 7. Makes the cursor a pointer so users know it's interactive */
    cursor: pointer;
}
.kb-link-overlay a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -9999px; /* Hides the link text while keeping it clickable for SEO/Screen readers */
    z-index: 1;
}
.kb-box img {
    border-radius: 8px;          /* Rounded corners on the image */
    max-width: 100%;              /* Responsive width */
    height: auto;                /* Maintain aspect ratio */
    position: relative;          /* Required for z-index to work */
    z-index: 0;                  /* Keeps image behind the clickable link overlay */
}
.kb-box p {
    position: relative;
    z-index: 0;
}
}
.mainpage_box p:last-child {
.mainpage_box p:last-child {
Line 76: Line 133:
}
}
}
}
/* Styling for the container to hold the buttons side-by-side */
/* Unique wrapper class for the button container */
.button-container {
.data-button-group {
  display: flex; /* Enables flexbox for horizontal alignment */
    display: flex;
  gap: 20px; /* Adds space between the buttons */
    gap: 20px;
  justify-content: center; /* Centers the buttons on the screen */
    justify-content: center;
  align-items: center; /* Vertically aligns the content (if needed) */
    align-items: center;
  padding: 20px;
    padding: 20px 0; /* Add vertical padding */
}
 
/* Scoped styling for the individual button links */
.data-button-group .square-button {
    /* Dimensions for a square shape */
    width: 250px;
    height: 250px;
 
    /* Basic appearance */
    background-color: #007BFF; /* A nice blue */
    color: white;
    text-decoration: none;
    border-radius: 25px; /* Rounded Edges */
    border: none;
    cursor: pointer;
   
    /* Text styling */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5em; /* Large text size */
    font-weight: bold;
    text-transform: uppercase;  
 
    /* Centering the text inside */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.1s ease;
    text-align: center;
    padding: 10px;
    box-sizing: border-box; /* Important: ensures padding/border don't break the size */
}
 
/* Hover effect */
.data-button-group .square-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
 
/* Focus effect for accessibility */
.data-button-group .square-button:focus {
    outline: 3px solid #0056b3;
    outline-offset: 3px;
}
}



Latest revision as of 11:56, March 13, 2026

/* CSS placed here will be applied to all skins */

.mainpage_row {
	display: flex;
	flex-direction: row;
	flex-flow: row wrap;
	justify-content: space-between;
	padding: 0;
	margin: 0 -5px 0 -5px;
}
.mainpage_box {
	flex: 1;
	margin: 5px;
	min-width: 310px;
	max-width: 2000px;
	border: 1px solid #CCC;
	padding: 10px 10px 10px 10px;
	box-shadow: 0 2px 2px rgba(0,0,0,0.1);
}
.mainpage_box h3 {
	/* Reset padding so is equal across skins */
	padding: 0;
	margin: 0.5em 0;
}
.mainpage_box h3 .header_icon {
	float: left;
	margin-right: 5px;
}
.mainpage_box .items {
	border-top: 1px solid #CCC;
	padding-top: 0.5em;
}
.banner {
    background-color: #e0e0e0;         /* The grey color from your HTML */
    font-family: Arial, sans-serif;    /* Replaced Comic Sans with Arial */
    font-size: 20pt;                   /* Match your current header size */
    font-weight: bold;                 /* Match your <b> tag */
    padding: 5px 20px;                 /* Corrected padding syntax */
    text-align: left;                  /* Match your current look */
    margin: 10px 0;                    /* Spacing between sections */
    box-shadow: 0 4px 4px rgba(0,0,0,0.1); /* Subtle shadow (reduced from 0.8 for a cleaner look) */
}
.kb-text {
    font-family: Arial, sans-serif;
    font-size: 12pt;
    padding: 20px;
    vertical-align: top;
}
.kb-box {
	position: relative;
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 20px;
    background-color: #ffffff;
    vertical-align: top;
    font-family: Arial, sans-serif;
    font-size: 12pt;
    
    /* 1. Initial Shadow (Subtle) */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    
    /* 2. Transition (The "Animation" speed) */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* 3. Ensure the box is treated as a block for the transform */
    display: table-cell; 
}
.kb-box:hover {
    /* 4. The "Growth" effect (lifts it slightly) */
    transform: translateY(-5px) scale(1.01);
    
    /* 5. The "Deepening" shadow */
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
    
    /* 6. Optional: Change border color slightly */
    border-color: #aaaaaa;
    
    /* 7. Makes the cursor a pointer so users know it's interactive */
    cursor: pointer;
}
.kb-link-overlay a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -9999px; /* Hides the link text while keeping it clickable for SEO/Screen readers */
    z-index: 1;
}
.kb-box img {
    border-radius: 8px;           /* Rounded corners on the image */
    max-width: 100%;              /* Responsive width */
    height: auto;                 /* Maintain aspect ratio */
    position: relative;           /* Required for z-index to work */
    z-index: 0;                   /* Keeps image behind the clickable link overlay */
}
.kb-box p {
    position: relative;
    z-index: 0;
}
.mainpage_box p:last-child {
	margin-bottom: 0;
}
.mainpage_boxcontents_small {
	font-size: 95%;
}
/* Style the "other languages" box the same way as other boxes on the main page */
.mw-pt-languages {
	display: block;
	background: none;
	border: 1px solid #CCC;
	box-shadow: 0 2px 2px rgba(0,0,0,0.1);
	width: auto;
}
.mw-pt-languages-label {
	background: none;
	border-right: none;
}

.thumb, .thumbinner {
	box-sizing: border-box;
}
.thumbimage {
	height: auto;
}
@media screen and (max-width: 719px) {
	.thumb {
		float: none;
	}
	.thumb, .thumbinner {
		margin-left: auto;
		margin-right: auto;
	}
}
/* Unique wrapper class for the button container */
.data-button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px 0; /* Add vertical padding */
}

/* Scoped styling for the individual button links */
.data-button-group .square-button {
    /* Dimensions for a square shape */
    width: 250px;
    height: 250px;

    /* Basic appearance */
    background-color: #007BFF; /* A nice blue */
    color: white;
    text-decoration: none; 
    border-radius: 25px; /* Rounded Edges */
    border: none;
    cursor: pointer;
    
    /* Text styling */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5em; /* Large text size */
    font-weight: bold;
    text-transform: uppercase; 

    /* Centering the text inside */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.1s ease;
    text-align: center;
    padding: 10px;
    box-sizing: border-box; /* Important: ensures padding/border don't break the size */
}

/* Hover effect */
.data-button-group .square-button:hover {
    background-color: #0056b3; 
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Focus effect for accessibility */
.data-button-group .square-button:focus {
    outline: 3px solid #0056b3;
    outline-offset: 3px;
}

img {
	max-width:100%;
	height:auto;
}

ol { 
	list-style-type: decimal; 
}
ol li > ol { 
	list-style-type: upper-alpha; 
}
ol li > ol li > ol { 
	list-style-type: lower-alpha;
}
ol li > ol li > ol li > ol { 
	list-style-type: lower-roman; 
}