MediaWiki:Common.css: Difference between revisions

Jump to navigation Jump to search
no edit summary
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 */
/* Общие стили для элемента */
.themeable-element {
  width: 200px;
  height: 100px;
  padding: 20px;
}
/* Стили для светлой темы */
.themeable-element.light {
  background-color: var(--light-bg-color);
  color: var(--light-text-color);
}
/* Стили для темной темы */
.themeable-element.dark {
  background-color: var(--dark-bg-color);
  color: var(--dark-text-color);
}


.wikitable { background-color: #ffebd8; }
.wikitable { background-color: #ffebd8; }

Navigation menu