[phpBB Debug] PHP Warning: in file [ROOT]/ext/hjw/easy_language_change/event/main_listener.php on line 107: strstr(): Empty needle
phpBB skins by Tastenplayer • phpbb Boardannouncement
Seite 1 von 1

phpbb Boardannouncement

Verfasst: 25. Apr 2019, 18:00
von Forum Member
Extversion 1.0.6 / 1.1.0

Code: Alles auswählen

/* style the announcement banner */
#phpbb_announcement {
	background: -moz-linear-gradient(top, rgba(65,106,153,0.9) 0%, rgba(90,144,192,0.9) 27%, rgba(113,177,226,0.9) 51%, rgba(91,145,193,0.9) 73%, rgba(65,106,153,0.9) 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(65,106,153,0.9)), color-stop(27%,rgba(90,144,192,0.9)), color-stop(51%,rgba(113,177,226,0.9)), color-stop(73%,rgba(91,145,193,0.9)), color-stop(100%,rgba(65,106,153,0.9))); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(top, rgba(65,106,153,0.9) 0%,rgba(90,144,192,0.9) 27%,rgba(113,177,226,0.9) 51%,rgba(91,145,193,0.9) 73%,rgba(65,106,153,0.9) 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(top, rgba(65,106,153,0.9) 0%,rgba(90,144,192,0.9) 27%,rgba(113,177,226,0.9) 51%,rgba(91,145,193,0.9) 73%,rgba(65,106,153,0.9) 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(top, rgba(65,106,153,0.9) 0%,rgba(90,144,192,0.9) 27%,rgba(113,177,226,0.9) 51%,rgba(91,145,193,0.9) 73%,rgba(65,106,153,0.9) 100%); /* IE10 preview */
	background: linear-gradient(to bottom, rgba(65,106,153,0.9) 0%,rgba(90,144,192,0.9) 27%,rgba(113,177,226,0.9) 51%,rgba(91,145,193,0.9) 73%,rgba(65,106,153,0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6416a99', endColorstr='#e6416a99',GradientType=0 ); /* IE6-9 */
	color: #F9F9F9;
	border: 3px solid #265C99;
	border-radius: 0;
	box-shadow: 0 0 10px #005223;
	margin: 10px 0;
	padding: 3px 10px 8px;
}

/* zero out any text margins and scroll any overflow */
#phpbb_announcement div {
	font-size: 1em;
	line-height: 1.4em;
	font-weight: bold;
	overflow-x: auto;
	overflow: hidden;
	margin: 0;
}

#phpbb_announcement a.postlink {
	border-bottom-color: #04172F;
	color: #04172F;
	font-size: 12px;
}

#phpbb_announcement a.postlink:visited {
	border-bottom-color: #04172F;
	color: #04172F;
	font-size: 12px;
}

#phpbb_announcement a.postlink:hover {
	border-bottom-color: #D3D3D3;
	color: #D3D3D3;
	font-size: 12px;
}

/* make posted images responsive */
#phpbb_announcement .postimage {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 100%;
}

/* style the close button */
#phpbb_announcement .close {
	background: transparent url('images/close.png') no-repeat 0 0;
	opacity: 0.6;
	float: right;
	width: 12px;
	height: 12px;
	margin: 0 0 0 4px;
}

/* reposition close button for right to left languages */
.rtl #phpbb_announcement .close {
	float: left;
	margin: 0 4px 0 0;
}

/* hide close button on desktops by default */
.notouch #phpbb_announcement .close {
	opacity: 0;
	transition: opacity 0.5s;
}

/* display the close button on mouse-over of the banner */
.notouch #phpbb_announcement:hover .close {
	opacity: 0.6;
}

/* fix for lists, force them to display inside containing div */
#phpbb_announcement ul,
#phpbb_announcement ol {
	margin-left: 20px;
}

.rtl #phpbb_announcement ul,
.rtl #phpbb_announcement ol {
	margin-right: 20px;
	margin-left: 0;
}

/* clear floats */
.clearfix:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: '.';
}