Toggle menu
210
343
1
4.1K
DemocracyCraft Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
Add infoboxes!
 
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* Make drawer always visible > 1300px */
@media screen and ( min-width: 1300px ) {
    :root {
        --fixed-menu-width: 240px;
    }
   
    .citizen-page-container {
        /* Reserve space for drawer */
        margin-left: calc( var( --header-size ) + var( --fixed-menu-width ) );
    }
   
    .citizen-drawer .citizen-dropdown-details {
        /* Hide drawer button */
        display: none;
    }
   
    .citizen-dropdown .citizen-menu__card, .citizen-dropdown .citizen-menu__card .citizen-ui-icon {
    content-visibility: visible;
    }
   
    .citizen-drawer__card {
        bottom: 0;
        /* Put drawer behind other header cards */
        z-index: -1;
        margin: 0;
        /* Compensate header border */
        margin-left: 1px;
        padding: 0;
        min-width: auto !important;
        width: var( --fixed-menu-width );
        max-height: none;
        border-right: 1px solid var( --border-color-base );
        border-radius: 0;
        background-color: var( --color-surface-0 );
        box-shadow: none;
        /* Force drawer to show */
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        visibility: visible !important;
        left:56px;
    }
   
    .citizen-drawer__card > * {
        /* Force drawer content to show */
        opacity: 1 !important;
    }


/* To make images responsive */
    .citizen-drawer__header {
img {
        padding-left: var( --space-xl );
max-width:100%;
        padding-right: var( --space-xl );
height:auto;
    }
 
    .citizen-drawer__logo {
        /* Hide drawer header logo */
        display: none;
    }
 
    .citizen-drawer__siteinfo  .mw-logo-wordmark {
        font-size: 1.25rem;
    }
 
    .citizen-siteStats {
        font-size: 0.8125rem;
    }
 
    #citizen-siteStats__item--images,
    #citizen-siteStats__item--users {
        /* Hide image and user stats to make space */
        display: none;
    }
   
    .citizen-drawer__menu {
        padding-left: var( --space-xs );
        padding-right: var( --space-xs );
        grid-template-columns: 1fr;
    }
}
}


/* Base Admonition Styling */
 
.admonition {
/* Infoboxes */
  display: flex;
.infobox {
  align-items: flex-start;
border: 1px solid #a2a9b1;
  border-radius: 4px;
color: black;
  padding: 16px;
padding: 0.2em;
  margin: 1.5em 0;
font-size: 88%;
  border-top: none; /* Remove top border */
line-height: 1.5em;
  border-right: none; /* Remove right border */
border-spacing: 3px;
  border-bottom: none; /* Remove bottom border */
  border-left: 5px solid; /* Add a 5px solid left border */
  background-color: var(--admonition-bg, #e6ffed); /* Fallback to green */
}
}


.admonition-icon pre,
@media screen {
.admonition-icon code,
.infobox {
.admonition-icon .mw-code {
background-color: #f8f9fa;
  background-color: transparent !important;
    }
  border: none !important;
  color: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: inherit !important;
  font-size: inherit !important;
  display: inline !important;
}
}


.admonition-content {
@media (max-width: 640px) {
  flex: 1;
.infobox {
width: 100%;
}
   
.infobox .nowrap {
white-space: normal;
}
}
}


/* Reset Styling for Code Blocks within Admonitions */
@media (min-width: 640px) {
.admonition-title code, .admonition-title pre,
.infobox {
.admonition-text code, .admonition-text pre,
/* @noflip */
.admonition-title .mw-code, .admonition-text .mw-code {
margin: 0.5em 0 0.5em 1em;
  background-color: transparent !important;
/* @noflip */
  border: none !important;
float: right;
  color: inherit !important;
/* @noflip */
  font-family: inherit !important;
clear: right;
  font-size: inherit !important;
width: 22em;
  padding: 0 !important;
}
  margin: 0 !important;
  display: inline !important;
}
}


/* Specific Admonition Types */
.infobox-header,
.admonition-note {
.infobox-label,
  --admonition-bg: #f0f8ff;
.infobox-above,
  --admonition-color: #a2c2e0;
.infobox-full-data,
  border-left-color: #a2c2e0; /* Set the left border color */
.infobox-data,
.infobox-below,
.infobox-subheader,
.infobox-image,
.infobox-navbar,
/* Remove element selector when every .infobox thing is using the standard module/templates  */
.infobox th,
.infobox td {
vertical-align: top;
}
}


.admonition-tip {
.infobox-label,
  --admonition-bg: #e6ffed;
.infobox-data,
  --admonition-color: #8acc90;
/* Remove element selector when every .infobox thing is using the standard module/templates  */
  border-left-color: #8acc90; /* Set the left border color */
.infobox th,
.infobox td {
/* @noflip */
text-align: left;
}
}


.admonition-info {
/* Remove .infobox when element selectors above are removed */
  --admonition-bg: #e7f5ff;
.infobox .infobox-above,
  --admonition-color: #a3c2f0;
.infobox .infobox-title,
  border-left-color: #a3c2f0; /* Set the left border color */
/* Remove element selector when every .infobox thing is using the standard module/templates  */
.infobox caption {
font-size: 125%;
font-weight: bold;
text-align: center;
}
}


.admonition-warning {
.infobox-title,
  --admonition-bg: #fff8e1;
/* Remove element selector when every .infobox thing is using the standard module/templates  */
  --admonition-color: #eac261;
.infobox caption {
  border-left-color: #eac261; /* Set the left border color */
padding: 0.2em;
}
}


.admonition-danger {
/* Remove .infobox when element selectors above are removed */
  --admonition-bg: #ffe5e5;
.infobox .infobox-header,
  --admonition-color: #e09191;
.infobox .infobox-subheader,
  border-left-color: #e09191; /* Set the left border color */
.infobox .infobox-image,
.infobox .infobox-full-data,
.infobox .infobox-below {
text-align: center;
}
}


.admonition-title {
/* Remove .infobox when element selectors above are removed */
  font-weight: bold; /* Make the title bold */
.infobox .infobox-navbar {
  margin: 0; /* Remove any default margin */
/* @noflip */
  padding: 0; /* Remove any default padding */
text-align: right;
}
}

Latest revision as of 15:10, 23 May 2025

/* Make drawer always visible > 1300px */
@media screen and ( min-width: 1300px ) {
    :root {
        --fixed-menu-width: 240px;
    }
    
    .citizen-page-container {
        /* Reserve space for drawer */
        margin-left: calc( var( --header-size ) + var( --fixed-menu-width ) );
    }
    
    .citizen-drawer .citizen-dropdown-details {
        /* Hide drawer button */
        display: none;
    }
    
    .citizen-dropdown .citizen-menu__card, .citizen-dropdown .citizen-menu__card .citizen-ui-icon {
    	content-visibility: visible;
    }
    
    .citizen-drawer__card {
        bottom: 0;
        /* Put drawer behind other header cards */
        z-index: -1;
        margin: 0;
        /* Compensate header border */
        margin-left: 1px;
        padding: 0;
        min-width: auto !important;
        width: var( --fixed-menu-width );
        max-height: none;
        border-right: 1px solid var( --border-color-base );
        border-radius: 0;
        background-color: var( --color-surface-0 );
        box-shadow: none;
        /* Force drawer to show */
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        visibility: visible !important;
        left:56px;
    }
    
    .citizen-drawer__card > * {
        /* Force drawer content to show */
        opacity: 1 !important;
    }

    .citizen-drawer__header {
        padding-left: var( --space-xl );
        padding-right: var( --space-xl );
    }

    .citizen-drawer__logo {
        /* Hide drawer header logo */
        display: none;
    }

    .citizen-drawer__siteinfo  .mw-logo-wordmark {
        font-size: 1.25rem;
    }

    .citizen-siteStats {
        font-size: 0.8125rem;
    }

    #citizen-siteStats__item--images,
    #citizen-siteStats__item--users {
        /* Hide image and user stats to make space */
        display: none;
    }
    
    .citizen-drawer__menu {
        padding-left: var( --space-xs );
        padding-right: var( --space-xs );
        grid-template-columns: 1fr;
    }
}


/* Infoboxes */
.infobox {
	border: 1px solid #a2a9b1;
	color: black;
	padding: 0.2em;
	font-size: 88%;
	line-height: 1.5em;
	border-spacing: 3px;
}

@media screen {
	.infobox {
		background-color: #f8f9fa;
    }
}

@media (max-width: 640px) {
	.infobox {
		width: 100%;
	}
    
	.infobox .nowrap {
		white-space: normal;
	}
}

@media (min-width: 640px) {
	.infobox {
		/* @noflip */
		margin: 0.5em 0 0.5em 1em;
		/* @noflip */
		float: right;
		/* @noflip */
		clear: right;
		width: 22em;
	}
}

.infobox-header,
.infobox-label,
.infobox-above,
.infobox-full-data,
.infobox-data,
.infobox-below,
.infobox-subheader,
.infobox-image,
.infobox-navbar,
/* Remove element selector when every .infobox thing is using the standard module/templates  */
.infobox th,
.infobox td {
	vertical-align: top;
}

.infobox-label,
.infobox-data,
/* Remove element selector when every .infobox thing is using the standard module/templates  */
.infobox th,
.infobox td {
	/* @noflip */
	text-align: left;
}

/* Remove .infobox when element selectors above are removed */
.infobox .infobox-above,
.infobox .infobox-title,
/* Remove element selector when every .infobox thing is using the standard module/templates  */
.infobox caption {
	font-size: 125%;
	font-weight: bold;
	text-align: center;
}

.infobox-title,
/* Remove element selector when every .infobox thing is using the standard module/templates  */
.infobox caption {
	padding: 0.2em;
}

/* Remove .infobox when element selectors above are removed */
.infobox .infobox-header,
.infobox .infobox-subheader,
.infobox .infobox-image,
.infobox .infobox-full-data,
.infobox .infobox-below {
	text-align: center;
}

/* Remove .infobox when element selectors above are removed */
.infobox .infobox-navbar {
	/* @noflip */
	text-align: right;
}