/*****************************************************************/
/* @package phpBB Style - RCX² - Copyright (C) 2020 Alma
/* @license Private License
/*****************************************************************/

/* -------------------------------------------------------------- /*
	$BBCodes
/* -------------------------------------------------------------- */

/* Note boxes */
.document, .section {
	background-color: #ebebeb;
	border: 1px solid #bbb;
	color: #333;
	border-radius: 5px;
	font-size: 12px;
	padding: 7px;
	text-align: justify;
	margin: 2em !important; /* Needed because there is inline styling in the docs :( */
}

.note {
	background-color: #e0eeff;
	border-color: #6b92bd;
	color: #115098;
}

.important {
	background-color: #fff1e1;
	border-color: #cd7900;
	color: #333300;
}

.tip {
	background-color: #e5ffdf;
	border-color: #43a347;
	color: #043300;
}

.warning {
	background-color: #ffdfdf;
	border-color: #a30004;
	color: #330002;
}

.note h3.title, .important h3.title, .tip h3.title, .warning h3.title {
	color: inherit;
	font-size: 13px;
	margin-top: 0;
	padding-top: 0;
}

.warning h3.title {
	color: #D21A4E
}

.note p, .important p, .tip p, .warning p {
	font-size: 12px;
	margin-bottom: 0;
}

/* Wiki Notes
-------------------------*/
.wikinote {
  margin: 2em;
  margin-left: auto;
  margin-right: auto;
  min-height: 3em;
  clear: both;
  vertical-align: middle;
  border-collapse: collapse;
  padding: 0.5em 1em 0.5em 36px;
  background-position: 5px 0.5em;
  background-repeat: no-repeat;
  border-radius: 8px;
}
.wikinote .note-title {
    margin: 0;
}
.wikinote .note-title strong {
    color: #666;
}
.wikinote p {
    margin: 0 0 1em 0;
}
.noteclassic {
  background-color: #ececec;
  background-image: url("https://home.caforum.fr/images/wikinote/note.png");
}
.noteimportant {
  background-color: #ffc;
  background-image: url("https://home.caforum.fr/images/wikinote/important.png");
}
.notewarning {
  background-color: #ffcbcb;
  background-image: url("https://home.caforum.fr/images/wikinote/warning.png");
}
.notetip {
  background-color: #dfd;
  background-image: url("https://home.caforum.fr/images/wikinote/tip.png");
}
.noterelated {
  background-color: #e8e8ff;
  background-image: url("https://home.caforum.fr/images/wikinote/related.png");
}

