Открыть меню
Переключить меню настроек
Открыть персональное меню
Вы не представились системе
Ваш IP-адрес будет виден всем, если вы внесёте какие-либо изменения.

MediaWiki:Common.css: различия между версиями

Страница интерфейса MediaWiki
Нет описания правки
Нет описания правки
Строка 39: Строка 39:
.quote-text {
.quote-text {
   text-align: left;
   text-align: left;
   font-style: normal;
   font-style: italic;
   font-size: 110%;
   font-size: 110%;
}
}
Строка 59: Строка 59:
.external-gallery img:hover {
.external-gallery img:hover {
   transform: scale(1.05);
   transform: scale(1.05);
}
.discord-invite {
  background: linear-gradient(135deg, #7289da, #99aab5); /* фиолетово-серый градиент Discord */
  padding: 1em;
  border-radius: 8px;
  text-align: center;
  margin: 1em 0;
  color: white;
}
.discord-invite a {
  display: inline-block;
  background-color: #23272a;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 5px;
  margin-top: 0.5em;
  transition: background-color 0.2s;
}
.discord-invite a:hover {
  background-color: #7289da;
}
}

Версия от 02:44, 4 ноября 2025

/* last modification stuff */
#footer-info { display: none; }

/* footer links */
#footer-places { display: none; }

/* powered by icon */
#footer-icon { display: none; }

#footer { display: none; }

/* Скрываем логотип и название сайта только в футере */
.footer-sitetitle .mw-logo-icon,
.footer-sitetitle .site-name {
    display: none !important;
}

/* Если нужно, убрать весь футер вместе с пустым пространством */
.footer-sitetitle {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.quote-box {
  border-left: 4px solid #ccc;
  padding: 0.8em 1.2em;
  margin: 1em 0;
  font-style: italic;
}
.quote-author {
  text-align: right;
  font-style: normal;
  color: #666;
  margin-top: 0.3em;
  font-size: 115%;
}
.quote-text {
  text-align: left;
  font-style: italic;
  font-size: 110%;
}

.external-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.external-gallery img {
  max-width: 200px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.external-gallery img:hover {
  transform: scale(1.05);
}