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

Материал из Infinity Project
Перейти к навигации Перейти к поиску
(Полностью удалено содержимое страницы)
Метка: очистка
Строка 1: Строка 1:
/* Размещённый здесь CSS будет применяться ко всем темам оформления */
 
/* Размещённый здесь CSS будет применяться ко всем темам оформления */
 
  
@import url("https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif");
 
 
body {font-family: "Noto Sans", sans-serif}
 
/* changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text) */
 
 
div#content h1, div#content h2 {font-family: "Noto Serif", serif}
 
/* changes the default font used for MediaWiki headings to Noto Serif */
 
 
/* 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";
 
}
 
 
@keyframes example {
 
  from {background-color: #717177;}
 
  to {background-color: #444;}
 
}
 
 
.withtooltip .tooltip {
 
visibility : hidden;
 
opacity : 0;
 
transition : opacity 0.3s linear;
 
padding : 5px;
 
margin-left : 8px;
 
/*width : 200px;*/
 
z-index : 999;
 
position : absolute;
 
}
 
 
.withtooltip:hover .tooltip {
 
visibility : visible;
 
opacity : 1;
 
background : #717177;
 
border : 4px solid #666;
 
border-radius : 0px 5px;
 
color : #d1d1dd;
 
white-space : pre-line;
 
animation-name: example; /* Safari 4.0 - 8.0 */
 
animation-duration: 4s; /* Safari 4.0 - 8.0 */
 
}
 
.withtooltip .tooltip img {
 
height: 50px;
 
}
 
 
.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;
 
}
 

Версия 16:27, 13 августа 2020