[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, 19:35
von Forum Member
Extversion 1.0.6 / 1.1.0

Code: Alles auswählen

/* style the announcement banner */
#phpbb_announcement {
	background-color: #eeeeee;
	background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 75%, #cccccc 100%);
	background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 75%,#cccccc 100%);
	background: linear-gradient(to bottom, #eeeeee 0%,#cccccc 75%,#cccccc 100%);
	background-color: rgba(0, 0, 0, 0);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 );
	border: 5px double #3E3E3E;
	border-radius: 2px;
	margin: 4px -1px 5px -1px;
	padding: 10px;
}

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

/* 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: '.';
}