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

Материал из Infinity Project
Перейти к навигации Перейти к поиску
 
(не показано 16 промежуточных версий 2 участников)
Строка 1: Строка 1:
 
/* Размещённый здесь CSS будет применяться ко всем темам оформления */
 
/* Размещённый здесь CSS будет применяться ко всем темам оформления */
 
/* Размещённый здесь 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).
 
/* Style for horizontal lists (separator following item).
Строка 85: Строка 77:
 
     content: " (" counter(listitem) "\a0";
 
     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 {
 
.blockofcode {
 
white-space: pre-wrap;
 
white-space: pre-wrap;
Строка 123: Строка 83:
 
border-radius: 5px;
 
border-radius: 5px;
 
border: #474747 solid;
 
border: #474747 solid;
 +
border-width: 5px 10px;
 
box-shadow: -5px 5px 10px #000;
 
box-shadow: -5px 5px 10px #000;
 
display: block;
 
display: block;
 +
 +
font-size: 13px;
 +
margin: 5px 50px;
 +
}
  
width: 100%;
+
/* [Tooltips of description] */
overflow: auto;
+
.withToolTip {
overflow-y: hidden;
+
display: inline-block;
font-size: 12px;
+
}
line-height: 20px;
+
.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}

Текущая версия на 13:28, 31 августа 2020

/* Размещённый здесь 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}