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

Материал из SS220 Sierra (Space Station 13)
Перейти к навигации Перейти к поиску
мНет описания правки
Нет описания правки
Строка 134: Строка 134:
     image-rendering: pixelated;
     image-rendering: pixelated;
     -ms-interpolation-mode: nearest-neighbor;
     -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;
}
}

Версия от 18:45, 19 декабря 2022

/* Размещённый здесь CSS будет применяться ко всем темам оформления */
/* Размещённый здесь 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}

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;
}