Links in demo updated - Radio in all styles adapted
-----

phpbb - Boardannouncement

Gesperrt
Forum Member
Site Admin
Beiträge: 649
Registriert: 3. Apr 2019, 17:36
Vorname: Jutta
Dein Land: Schweiz
Wohnort: Zuchwil / SO
Kontaktdaten:

phpbb - Boardannouncement

Beitrag von Forum Member » 11. Mai 2019, 09:28

Extversion 1.1.0

Code: Alles auswählen

/* style the announcement banner */
#phpbb_announcement {
	background-color: #222222;
	background: -moz-linear-gradient(top, #000000 0%, #666666 50%, #010101 100%);
	background: -webkit-linear-gradient(top, #000000 0%,#666666 50%,#010101 100%);
	background: linear-gradient(to bottom, #000000 0%,#666666 50%,#010101 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#010101',GradientType=0 );
	color: #B5B5B5;
	font-weight: bold;
	line-height: 1.6;
	border: 8px solid #390707;
	border-radius: 2px;
	box-shadow: 0 0 15px #000000;
	-moz-box-shadow: 0 0 15px #000000;
	-webkit-box-shadow: 0 0 15px #000000;
	margin: 0 0 15px;
	padding-bottom: 12px;
	padding-top: 10px;
}

/* zero out any text margins and scroll any overflow */
#phpbb_announcement div {
	color: #E9967A;
	font-size: 1.1em;
	line-height: 1.3em;
	overflow-x: auto;
	overflow: hidden;
	margin-left: 10px;
	font-size: 100%;
}

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

#phpbb_announcement .text-strong {
	font-weight: bold;
}

#phpbb_announcement .postlink {
	font-weight: bold;
	color: #B5B5B5;
	border-bottom-color: #B5B5B5;
}

#phpbb_announcement .postlink:hover {
	color: #D20000;
	border-bottom-color: #BF0000;
}

#phpbb_announcement .postlink:visited {
	font-weight: bold;
	color: #B5B5B5;
	border-bottom-color: #B5B5B5;
}

/* style the close button */
#phpbb_announcement .close {
	background: transparent url('images/close.png') no-repeat 0 0 !important;
	opacity: 0.6;
	float: right;
	width: 12px;
	height: 12px;
	margin: 0 4px 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: '.';
}

Gesperrt

Zurück zu „ColoredWelcome“