MediaWiki:Common.css

Материал из SS220 Sierra (Space Station 13)
Перейти к навигации Перейти к поиску

Замечание: Возможно, после публикации вам придётся очистить кэш своего браузера, чтобы увидеть изменения.

  • Firefox / Safari: Удерживая клавишу Shift, нажмите на панели инструментов Обновить либо нажмите Ctrl+F5 или Ctrl+R (⌘+R на Mac)
  • Google Chrome: Нажмите Ctrl+Shift+R (⌘+Shift+R на Mac)
  • Internet Explorer / Edge: Удерживая Ctrl, нажмите Обновить либо нажмите Ctrl+F5
  • Opera: Нажмите Ctrl+F5.
/* Размещённый здесь CSS будет применяться ко всем темам оформления */

/* Style for horizontal lists (separator following item).
   @source mediawiki.org/wiki/Snippets/Horizontal_lists
   @revision 9 (2016-08-10)
   @author [[User:Edokter]]
 */
.hlist dl,
.hlist ol,
.hlist ul {
    margin: 0;
    padding: 0;
}
/* Display list items inline */
.hlist dd,
.hlist dt,
.hlist li {
    margin: 0;
    display: inline;
}
/* Display nested lists inline */
.hlist.inline,
.hlist.inline dl,
.hlist.inline ol,
.hlist.inline ul,
.hlist dl dl, .hlist dl ol, .hlist dl ul,
.hlist ol dl, .hlist ol ol, .hlist ol ul,
.hlist ul dl, .hlist ul ol, .hlist ul ul {
    display: inline;
}
/* Hide empty list items */
.hlist .mw-empty-li,
.hlist .mw-empty-elt {
    display: none;
}
/* Generate interpuncts */
.hlist dt:after {
    content: ": ";
}
.hlist dd:after,
.hlist li:after {
    content: " · ";
    font-weight: bold;
}
.hlist dd:last-child:after,
.hlist dt:last-child:after,
.hlist li:last-child:after {
    content: none;
}
/* Add parentheses around nested lists */
.hlist dd dd:first-child:before, .hlist dd dt:first-child:before, .hlist dd li:first-child:before,
.hlist dt dd:first-child:before, .hlist dt dt:first-child:before, .hlist dt li:first-child:before,
.hlist li dd:first-child:before, .hlist li dt:first-child:before, .hlist li li:first-child:before {
    content: " (";
    font-weight: normal;
}
.hlist dd dd:last-child:after, .hlist dd dt:last-child:after, .hlist dd li:last-child:after,
.hlist dt dd:last-child:after, .hlist dt dt:last-child:after, .hlist dt li:last-child:after,
.hlist li dd:last-child:after, .hlist li dt:last-child:after, .hlist li li:last-child:after {
    content: ")";
    font-weight: normal;
}
/* Put ordinals in front of ordered list items */
.hlist ol {
    counter-reset: listitem;
}
.hlist ol > li {
    counter-increment: listitem;
}
.hlist ol > li:before {
    content: " " counter(listitem) "\a0";
}
.hlist dd ol > li:first-child:before,
.hlist dt ol > li:first-child:before,
.hlist li ol > li:first-child:before {
    content: " (" counter(listitem) "\a0";
}
.blockofcode {
	white-space: pre-wrap;
	background-color: #373737;
	color: #aaf;
	border-radius: 5px;
	border: #474747 solid;
	border-width: 5px 10px;
	box-shadow: -5px 5px 10px #000;
	display: block;
	
	font-size: 13px;
	margin: 5px 50px;
}

/* [Tooltips of description] */
.withToolTip {
	display: inline-block;
}
.withToolTip .ImTooltip{
	display: none;
	padding: 10px;
	margin-left: 8px;
	width: 300px;
	z-index: 999;
	background: #717177;
	border: 4px solid #666;
	border-radius: 0px 5px;
	color: #d1d1dd;
	text-align: center;
	white-space: pre-line;
	overflow: wrap;
	transition: display 0.25s ease-in-out;
}
.withToolTip:hover .ImTooltip{
	display: block;
	position: absolute;
}
/* [/Tooltips of description] */

.text_selection_on_hover:hover img{
    transition: transform 0.25s linear;
    transform: scale(1.1);
}
.text_selection_on_hover:hover .hover_parent_underlining{
    text-decoration: underline;
}

/* Шаблоны класса карточка */
.infobox	{
	border: 2px solid #000;
	border-top: none;
	border-radius: 3px;
	margin-left: 0.5em;
	margin-bottom: 0.5em;
}

/* Заставляет браузер отображать изображения всегда пиксельными, без сглаживания */
img {
    image-rendering: optimizeSpeed;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
}

/* Горизонтальный список */
/*#mw-content-text .hlist ul {
    display: inline;
    margin: 0;
    padding: 0;
}
#mw-content-text .hlist li {
    display: inline;
}
#mw-content-text .hlist li:not(:last-child) {
    padding-right: 0.286em;
}
#mw-content-text .hlist li:not(:last-child)::after {
    content: "";
    display: inline-block;
    position: relative;
    left: 0.286em;
    bottom: 0.214em;
    background-color: #000;
    height: 3px;
    width: 3px;
}
#mw-content-text .hlist li li:first-child::before {
    content: "(";
    font-weight: normal;
}
#mw-content-text .hlist li li:last-child::after {
    content: ")";
    font-weight: normal;
}
#mw-content-text .hlist li li li {
    font-size: x-small;
}*/

/* Кнопка "Вверх": [[paradise:Файл:Scroll_top.png]] */
#scroll-top
	{
	display: none;
	background: url(https://wiki.ss220.space/images/f/f4/Scroll_top.gif) 0% 0%/38px 38px no-repeat;
	opacity: 0.3;
	width: 38px;
	height: 38px;
	cursor: pointer;
	position: fixed;
	left: calc(11em - 19px);
	bottom: 30px;
	z-index: 10000;
	image-rendering: optimizeSpeed;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: optimize-contrast;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: crisp-edges;
	image-rendering: pixelated;
	-ms-interpolation-mode: nearest-neighbor;
	}

#scroll-top:hover
	{
	opacity: 0.8;
	}

/* Отступы сворачиваемого меню */
.vector-menu-portal	{
		margin-left: 0.1em;
		}
#mw-panel.collapsible-nav .portal .vector-menu-content	{
		margin-left: 0.5em;
		}
/* Цвет заголовков сворачиваемых разделов в sidebar обратно в серый */
#mw-panel.collapsible-nav .portal.collapsed .vector-menu-heading,
#mw-panel.collapsible-nav .portal.collapsed .vector-menu-heading:hover,
#mw-panel.collapsible-nav .portal .vector-menu-heading *	{
		color: #54595d;
		text-decoration: none;
		}

/* [[Шаблон:Main]] */
.dablink {
	margin-left: 2em;
	margin-bottom: 0.5em;
	font-style: italic;
	}
.dablink a {
	font-weight: bold;
	}

/* [[Шаблон:Кнопка]] */
.keyboard-key {
	border: 0.1em solid #AAA;
	border-radius: 0.2em;
	box-shadow: 0.1em 0.2em 0.2em(#DDD);
	background-color: #F9F9F9;
	background-image: -moz-linear-gradient(#EEE, #F9F9F9, #EEE);
	background-image: -ms-linear-gradient(#EEE, #F9F9F9, #EEE);
	background-image: -o-linear-gradient(#EEE, #F9F9F9, #EEE);
	background-image: -webkit-linear-gradient(#EEE, #F9F9F9, #EEE);
	background-image: linear-gradient(#EEE, #F9F9F9, #EEE);
	padding: 0.1em 0.3em;
	font-family: inheri;
	font-size: 0.85em;
	}