Difference between revisions of "MediaWiki:Common.css"

From IVS Wiki
Jump to: navigation, search
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
 +
 +
:root {
 +
  --ivsOrange: #ff7a2b;
 +
  --ivsRed: #e32526;
 +
  --ivsGrey: #818181;
 +
  --wikiGrey: #f6f6f6;
 +
}
  
 
.expandContent {
 
.expandContent {
Line 9: Line 16:
 
   font-size:120%;
 
   font-size:120%;
 
   font-weight: 600;
 
   font-weight: 600;
 +
}
 +
 +
.emphasize {
 +
  color = var(--ivsOrange);
 +
  font-weight = 600;
 
}
 
}

Revision as of 10:01, 12 May 2022

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

:root {
  --ivsOrange: #ff7a2b;
  --ivsRed: #e32526;
  --ivsGrey: #818181;
  --wikiGrey: #f6f6f6;
}

.expandContent {
  margin: 3px;
}

.basicBold {
  color: #383838;
  font-size:120%;
  font-weight: 600;
}

.emphasize {
  color = var(--ivsOrange);
  font-weight = 600;
}