MediaWiki:Common.css

From World Encyclopedia of Conductors
Revision as of 21:12, 15 December 2025 by N.Sorokin (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */
@font-face {
  font-family: Kazimir;
  src: 
  local("Kazimir"), 
  url(/resources/assets/Kazimir-Text-Regular.woff2) format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: Kazimir;
  src: 
  local("Kazimir"), 
  url(/resources/assets/Kazimir-Text-Italic.woff2) format("woff2");
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: Kazimir;
  src: 
  local("Kazimir"), 
  url(/resources/assets/Kazimir-Text-Bold.woff2) format("woff2");
  font-style: normal;
  font-weight: 700;
}

#siteSub {
    display: block;
}

#p-logo-text a {
	font-family: Kazimir, 'Segoe UI', serif;
	font-size: 1.2em;
	font-variant: small-caps;
}

#p-logo-text a.long {
	font-size: 1.2em;
	line-height: 1;
}

@media screen{
	body {
		font-family: Kazimir, 'Segoe UI', Sans-Serif;
	}
	#siteSub .mw-body .mw-heading, .mw-body h1, .mw-body h2, .mw-body h3, .mw-body h4, .mw-body h5, .mw-body h6, .mw-body dt {
		font-family: Kazimir, 'Linux Libertine','Times New Roman'; 
	}
}

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

@media screen {
	.infobox {
		background-color: var(--background-color-neutral-subtle, #f8f9fa);
    }
}

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

@media (min-width: 640px) {
	.infobox {
		/* @noflip */
		margin-left: 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;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: chapter-counter; /* Инициализируем счетчик */
}

.entry {
  display: grid;
  /* Добавляем колонку для номера: [номер] [название] [стр] */
  grid-template-columns: max-content auto max-content; 
  grid-template-areas: "number chapter page";
  align-items: baseline; /* Выравнивание по базовой линии текста */
  gap: 0 .5rem;
  
  counter-increment: chapter-counter; /* Увеличиваем счетчик на каждом li */
  margin-bottom: 0.5rem; /* Отступ между главами */
}

/* Создаем номер главы через псевдо-элемент */
.entry::before {
  grid-area: number;
  content: counter(chapter-counter) "."; /* Выводим число и точку */
  font-weight: bold; /* Можно стилизовать отдельно от заголовка */
}

.chapter {
  grid-area: chapter;
  position: relative;
  overflow: hidden;
}

/* Ваши точки (без изменений, кроме overflow handling) */
.chapter::after {
  position: absolute;
  padding-left: .25ch;
  content: " . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . . . . ";
  text-align: right;
  white-space: nowrap; /* Важно, чтобы точки не переносились */
}

.page {
  grid-area: page;
}

.entry:only-child {
  grid-template-columns: auto max-content; /* Убрали первую колонку */
  grid-template-areas: "chapter page";     /* Убрали область number */
}

/* 2. Скрываем сам счетчик */
.entry:only-child::before {
  content: none;
  display: none;
}