MediaWiki:Common.css: Difference between revisions

From Interspace
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root{
:root{
     --wiki-body-background-color: #111111;
     /* start font settings */
     --wiki-body-background-color--rgb: 17, 17, 17;
     --wiki-body-font-family: 'Barlow',sans-serif;
    --wiki-content-background-color: #0D222A;
     --wiki-heading-font-family: 'Barlow',sans-serif;
    --wiki-content-background-color--rgb: 13, 34, 42;
     --wiki-sidebar-heading-font-family: 'Barlow',sans-serif;
    --wiki-content-background-opacity: 1;
     /* end font settings */
    --wiki-content-background-color--secondary: #223540;
    --wiki-content-background-color--secondary--rgb: 34,53,64;
    --wiki-content-border-color: #4090C3;
     --wiki-content-border-color--rgb: 64, 144, 195;
    --wiki-content-link-color: #5FA1FF;
     --wiki-content-link-color--rgb: 95,161,255;
    --wiki-accent-color: #4091C3;
     --wiki-accent-color--rgb: 64,145,195;
    --wiki-accent-color--hover: #3483eb;
    --wiki-accent-color--hover--rgb: 52,131,235;
      
      
    --wiki-icon-to-link-filter: invert(50%) sepia(70%) saturate(418%) hue-rotate(178deg) brightness(105%) contrast(102%);
      /* start design variables */
--wiki-sidebar-border-radius:4px; /* these two variables must have units specified even if 0, ignore the warning */
--wiki-sidebar-portal-spacing:6px;
--wiki-content-border-width:1px;
--wiki-sidebar-border-width:1px;
/* end design variables */
}
}

Revision as of 21:07, 14 January 2025

/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root{
    /* start font settings */
    --wiki-body-font-family: 'Barlow',sans-serif;
    --wiki-heading-font-family: 'Barlow',sans-serif;
    --wiki-sidebar-heading-font-family: 'Barlow',sans-serif;
    /* end font settings */
    
      /* start design variables */
	--wiki-sidebar-border-radius:4px; /* these two variables must have units specified even if 0, ignore the warning */
	--wiki-sidebar-portal-spacing:6px;
	
	--wiki-content-border-width:1px;
	--wiki-sidebar-border-width:1px;
	/* end design variables */
}