Hardwareluxx Forenstyle-Sammlung

...bei mir klappts mit den zweiten Vorschlag!

T
H
X

Greets
S@uDepp
 
Wenn Du diese Anzeige nicht sehen willst, registriere Dich und/oder logge Dich ein.
Hardwareluxxforum - Blueskin Final für Waterfox & Firefox {Update vom 29.03.2012}

Hey,

:wink:

für alle Waterfoxfans:

Hardwareluxxforum - Blueskin V.2.2.4/5


;)

Waterfox auf deutsch umstellen

k5z5hoy9.png



Viel Spaß :banana:


Cheers und snächtle:angel:
 
Zuletzt bearbeitet:
Beschreibung:

gleiche Farbgebung wie das originale Design, nur zentriert und optisch ein wenig geändert, außerdem einige unnötige Sachen entfernt
perfekt für Leute, die ein schmales, mittiges Design mögen und ein wenig auf (CSS-) Schatten stehen
aber dennoch das helle Design mögen ;)
siehe Screenshots & Beispiele

ganz wichtig: es ist für Leute, die nur das Forum nutzen, die News-/Preisvergleichseite resp. die Menüleiste wurde weggelassen (bei V1)
bei V2, ist die Leiste wieder da

Screenshots:

V1


V2


CSS:

V1 Download
V2 Download
 
Zuletzt bearbeitet:
Hallo siM•Luxx,

:wink:

zunächst einmal danke für deine Arbeit.
Bei mir funktioniert dein Code aber leider nicht richtig.
Der Box Shadow ist gar nicht vorhanden.
Auch ist nur in der Mitte ein schmaler Streifen des Forums zu sehen.
Rechts und links bleibt viel ungenutzter Platz.
Ohne Adblock wäre dort dann natürlich Werbeanimation.

Hier mal zwei Screens von mir (Windows 7 64bit Ultimate, Waterfox 11, 1920x1080px > FullHD):


Zum Vergrößern auf jeweiliges Bild klicken

Die Kunst ist es Code zu erschaffen der überall läuft, unabhängig von der Bildschirmauflösung usw.


mfg tree:angel:
 
Versuch einfach mal hinter allen CSS Eigenschaften ein !important zu setzen. Teilweise übernimmt Stylish diese nur wenn das gesetzt ist, egal ob da was überschrieben wird oder einfach nur neu dazukommt.
 
in Safari und Firefox funktioniert der Code einwandfrei (unter OS X)
du kannst den Wrapper auch breiter machen, musst nur im CSS den Wert von 1250px (überall wo 1250px vorkommt) auf z. B. 80% relativ stellen oder halt auf deine eigene Monitorgröße anpassen

und der Box Schatten und Border Radius sind doch da?
 
Zuletzt bearbeitet:
Versuch einfach mal hinter allen CSS Eigenschaften ein !important zu setzen. Teilweise übernimmt Stylish diese nur wenn das gesetzt ist, egal ob da was überschrieben wird oder einfach nur neu dazukommt.

Richtig, klar.

Habe den Code von siM•Luxx nun angepasst mit weiteren !important:

Code:
.above_body {
    width: 1250px !important; 
    margin: 0px auto !important;
}

#navbar {
    width: 1250px !important; 
    margin: 0px auto !important;
}

.cf {
    width: 1250px !important; 
    margin: 0px auto !important;
    border-left: 0px solid #D1D1D1 !important;
    border-right: 0px solid #D1D1D1 !important;
    border-bottom: 0px solid #D1D1D1 !important;
    padding: 0px 0px 0px 0px !important;
}

.body_wrapper {
    width: 1250px !important; 
    padding: 20px 0px 0px 0px !important;
    margin: 0px auto !important;
}

#sky {display: none !important;}
#wgo {display: none !important;}
#navbar {display: none !important;}
#footer {display: none !important;}

#forum_info_options {display: none !important;}
#thread_info {padding-bottom: 40px !important;}
/* .after_content {display: none !important;} */
.options_block_container {display: none !important;}
.below_body {display: none !important;}



.postbitlegacy .postbody, .eventbit .eventdetails .eventbody {
    Background-color:#F1F1F1 !important;}

h2 a {
    color: #000 !important;}
    
.threadtitle a {
    color: #000 !important;}

.forumtitle a {
    color: #fff !important;}
    
.postfoot {
    background-color: #fff !important;}

.forumbit_post .forumrow, .forumbit_nopost .forumrow, .forumbit_post {
    Background-color:#F1F1F1 !important;}

.forumbit_post .forumrow, .forumbit_nopost .forumrow, .forumbit_post a {
    color: #000 !important;}

.subforumlistlabel {display: none !important;}

.subforum {display: none !important;}

.forumbit_post .forumrow, .forumbit_nopost .forumhead, .forumbit_nopost .forumrow, .forumbit_post .forumhead, .forumbits .forumhead {
box-shadow: 0 1px 5px #CCC !important;
-moz-box-shadow: 0 1px 5px #CCC !important;
-webkit-box-shadow: 0 1px 5px #CCC !important;
	-moz-border-radius: 3px !important;
	-webkit-border-radius: 3px !important;
	border-radius: 3px !important;
}

.forumhead, .posthead {
font: bold 12px verdana !important;
margin-top: 15px !important;
border-radius: 2px 2px 2px 2px !important;
border-top: 3px solid #D60B07 !important;
border-left: 1px solid #464746 !important;
border-right: 1px solid #464746 !important;
border-bottom: 1px solid #464746 !important;
}

#suche {display: none !important;}

.postdetails {
box-shadow: 0 1px 5px #CCC !important;
-moz-box-shadow: 0 1px 5px #CCC !important;
-webkit-box-shadow: 0 1px 5px #CCC !important;}

.threadinfohead blockhead {
border-radius: 2px 2px 0px 0px !important;}

.postfoot {
border-bottom-left-radius: 2px !important;
border-bottom-right-radius: 2px !important;
box-shadow: 0 3px 5px #ccc !important;
-moz-box-shadow: 0 3px 5px #ccc !important;
-webkit-box-shadow: 0 3px 5px #ccc !important;}

Dann kommt dieser Fehler bei mir raus:


Zum Vergrößern auf Bild klicken

Ich müsste den Code komplett überarbeiten, damit er bei mir funktionieren würde.
Immer dieses doofe Spiel zwischen Apple und Microsoft - die vertragen sich einfach nicht :shot:

in Safari und Firefox funktioniert der Code einwandfrei (unter OS X)
du kannst den Wrapper auch breiter machen, musst nur im CSS den Wert von 1250px (überall wo 1250px vorkommt) auf z. B. 80% relativ stellen oder halt auf deine eigene Monitorgröße anpassen

und der Box Schatten und Border Radius sind doch da?

Versuch mal bitte einen Code zu bauen, der auf verschiedenen Bildschirmauflösungen, Safari und Firefox läuft.
Ich helfe gerne beim Testen :)

Funktionieren den eventuell mein Blueskins auch auf Safari bei dir?
Teste das mal bitte?

:hail:

mfg tree:angel:
 
Moin, sorry aber ich versuche gerade den Black Skin von lrwr beim Chrome Browser anzuwenden aber das funzt gar nicht,
es bleibt einfach wie es ist. Kann mir jemand helfen?
 
Bin ich der einzige, der etliche Probleme mit dem dunklen Skin hat? Browser ist FF 11.0











Systeminfo z.b. ist auch weiß auf weiß.

Wäre echt genial wenn das jemand fixen könnte. Ist der Code aus dem ersten Post, allerdings in einer alten Version, da der aktuelle noch viel viel schlimmer ist :(

Code:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url-prefix("http://www.hardwareluxx.de/community/") {

body{
color:white !important;
}
   
a{
color:white !important;
text-decoration:underline !important;
background:none;
}

.body_wrapper{
background:none !important;
}

.main_body{
background:none !important;
background-image:url("http://www.abload.de/img/luxxbgs04my.png") !important;
}

.blockfoot{
background:none !important;
}

.cf{
background:none !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-left-width:0px !important;
border-right-width:0px !important;
border-bottom-width:0px !important;
}

.floatcontainer.footer{
background:#636563 !important;
}

.navtabs.floatcontainer{
background:#636563 !important;
}

.blockhead{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
background:#002C59 !important;
border-top-width:1px !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.shade.footer_time{
color:white;
}

.blocksubhead{
background:#636563 !important;
}


.blockbody{
background:#737573 !important;
box-shadow:none !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
}

SPAN{
color:white !important;
}

.above_body{
background:none !important;
border-bottom-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-bottom-width:2px !important;
border-right-width:0px !important;
background-image:url("http://www.abload.de/img/bg_header03jwo.png") !important;
height:100px !important;
padding-top:50px !important;
background-repeat:no-repeat !important;
}

.forumrow.table{
background:#636563 !important;
box-shadow:none !important;
border-bottom-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

.threadbit .sticky{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
box-shadow:none !important;
}

.threadbit .nonsticky, .threadbit .deleted, .threadbit .discussionrow, .threadbit .ignored{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
box-shadow:none !important;
}

.postbody{
background:#737573 !important;
}

.postdetails{
background:#636563 !important;
}

.formcontrols{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
}

.blockrow.pmbit{
background:#737573 !important;
}

#yui-gen8{
background:#737573 !important;
}

#yui-gen5{
background:#737573 !important;
}

#yui-gen2{
background:#737573 !important;
}

#tag_edit_link{
background:#636563 !important;
}

.popupctrl.user_systeminfo{
background:#636563 !important;
}

#navbar_notice_12{
background:#636563 !important;
}

.username_container{
background:none !important;
}

.popupbody.memberaction_body{
background:#636563 !important;
}

.username.online.popupctrl{
background:none !important;
}

.username.offline.popupctrl{
background:none !important;
}

.threadlastpost.td{
color:white;
}

.threadstats.td.alt{
color:white
}

.pagination span a{
background:grey !important;
border-bottom-width: 1px;
border-left-width: 1px;
border-right-width: 1px;
border-top-width: 1px;
}

.popupbody li > a:hover, .popupbody li > label:hover, .popupbody li.vbmenu_hilite > a { 
background-color:none !important;
}

.popupbody li > a, .popupbody li > label {
background:none;
}

a.user_systeminfo{
box-shadow:none !important;
font-size:12px !important;
padding-left:1px !important
}

#usercp_nav .blockrow * a{
background:#737573 !important;
}

P{
color:white ;
}

.blocksubhead{
color:white !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.wgo_subblock.section{
background:#737573 !important;
}

.wgo_subblock.section{
color:white !important;
}

.postbit, .postbitlegacy, .eventbit{
color:white !important;
}

.postbitlegacy .postrow, .eventbit .eventrow, .postbitdeleted .postrow, .postbitignored .postrow {
color:white !important;
}

.quote_container{
background:#636563 !important;
}

.bbcode_container .bbcode_quote_container{
background:none !important;
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}


.bbcode_code{
background:#434543 !important;
}

.07:53 05.01.2012{
border-left-width:1px !important;
border-top-width:1px !important;
border-right-width:1px !important;
height:55px !important;
border-top-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-bottom-width:1px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.userprof_content{
color:white !important;
}

.userprof_vmright div{
background:#636563 !important;
}

.userprof_vmright div blockquote{
background:#737573 !important;
}

.userprof_module{
background:#737573 !important;
}

.userprof_moduleinactive{
background:#636563 !important;
}

.userprof_title{
color:white !important;
}

dl.stats dt, #sidebar_container dl.stats, #sidebar_container .blockbody.userprof_content, #sidebar_container .userprof_content .time, .userprof_content .time {
color:white !important
}

.userprof_content .blockrow{
color:white !important;
background:#737573 !important;
border-top-color:black !important; /**/
}

.textcontrol{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.forumrow{
background:#737573 !important;
box-shadow:none !important;
border-bottom-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

#pagetitle{
padding-bottom:3px;
}

.thread_info{
color:white !important;
}

.navtabs ul{
background:#737573;
border-top-color:#000000 !important;
border-top-style:solid !important;
border-top-width:1px !important;
}

.postfoot{
background:#737573 !important;
border-top-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

.posthead{
background:#636563 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
background:#002C59 !important;
border-top-width:1px !important;
margin-top:-15px !important;
}

.pagetitle{
padding-top:10px !important;
}

.thread_controls{
background:#002C59 !important;
margin-top:10px !important;
margin-bottom:10px !important;
}

.toolsmenu div{
border-top-color:#000000 !important;
border-top-style:solid;
border-top-width:1px !important;
border-left-color:#000000 !important;
border-left-style:solid;
border-left-width:1px !important;
border-right-color:#000000 !important;
border-right-style:solid;
border-right-width:1px !important;
}

.forumbit_post .foruminfo .forumdata, .forumbit_post .foruminfo .forumtitle, .forumbit_post .foruminfo .viewing { 
color:white !important;
}

.userprof_content{
background:#737573 !important;
}

.threadlisthead{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
background:#002C59 !important;
border-top-width:1px !important
}

.forumhead{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
background:#002C59 !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
border-top-width:1px !important;
box-shadow:none !important;
}

.breadcrumb .navbit a:hover{
background:none !important;
border-top-color:transparent !important;
border-left-color:transparent !important;
border-right-color:transparent !important;
border-bottom-color:transparent !important;
}

.active{
background:#838583 !important;
}

.above_postlist .pagination_top .pagination, .above_postlist .pagination_top .postpagestats {
color:#C1C1C1 !important;
}

#usercp_navpopup a{
background:#737573 !important;
border-top-color:black !important;
border-left-color:black !important;
border-right-color:black !important;
border-bottom-color:black !important;
}

.blockfoot.controlbar.textpad a{
background:#737573 !important;
}

#showthread_navpopup a{
background:#737573 !important;
border-top-color:black !important;
border-left-color:black !important;
border-right-color:black !important;
border-bottom-color:black !important;
padding-bottom: 5.33px !important;
}

#searchtypeswitcher li a {
background:#636563 !important;
}

#searchtypeswitcher li.selected a{
background:#737573 !important;
}

#pmrecips_ctrl{
color:white;
}

#yui-gen26 .right{
background:#737573;
}

.postbit .posttitle, .postbitlegacy .title {
border-bottom-color:#000000 !important;
}

.postdetails{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

.postbody{
border-left-color:#000000 !important;
}

.posts li{
border-bottom-color:#000000 !important;
border-right-color:#000000 !important;
}

.signature{
border-top-color:#A1A1A1 !important;
}

.navtabs li ul li a{
font-weight:bold !important;
}

.nodecontrols a{
font-weight:bold !important;
top:-20px !important;
}

#postlist_popups .popupmenu .popupctrl{
background:002C59 !important;
font-weight:bold;
}

.formcontrols .blockrow{
background:#737573 !important;
}

.cke_skin_kama .cke_wrapper{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

span.cke_skin_kama{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.footer{
box-shadow:none !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

#thread_info div, h4{
box-shadow:none !important;
}

.pagination span a{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
margin-left: -1px !important;
font-size:11px !important;
padding-bottom: 4px !important;
padding-left: 4px !important;
padding-right: 4px !important;
padding-top: 3px !important;
position:relative;
}

.below_postlist .pagination_bottom {
margin-top:-15px !important;
}

.newcontent_textcontrol{
background-image:url("http://www.abload.de/img/replydcrr2.gif") !important;
box-shadow:none !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
padding-bottom: 0px !important;
padding-left: 0px !important;
padding-right: 0px !important;
padding-top: 0px !important;
background-color:transparent !important;
color:transparent !important;
padding-right:5px !important;
padding-bottom:5px !important;
}

.navlinks{
color:white !important;
}

.logo-image{
background-image:url("http://www.abload.de/img/forumdeluxxcyry9.jpg") !important;
heigth:45px !important;
width:236px !important;
}

.navtabs{
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.navbar{
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
border-top-width:1px !important;
border-left-width:1px !important;
border-right-width:1px !important;
border-bottom-width:3px !important;
}

.postbit .posthead, .postbitlegacy .posthead, .eventbit .eventhead { 
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.pagination span.prev_next a, .pagination span.first_last a{
top:-4px !important;
}

.wgo_block{
box-shadow:none !important;
}

#above_threadlist_controls div{
border-left-width:0px !important;
border-right-width:0px !important;
border-top-width:0px !important;
}

#above_threadlist_controls ul li a{
font-size:13px !important;
font-weight:bold;
}

.above_threadlist .threadpagenav .threadpagestats{
color:#C1C1C1 !important;
}

.forum_info{
color:white !important;
}

#newthreadlink_top, #newthreadlink_bottom{
font-size:9px;
padding-right:3px !important;
}

.footer_links li{
border-left-color:#000000 !important;
}

.memberprofiletabunder{
background-color:black !important;
}

#sidebar_container.member_summary { 
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
box-shadow:none !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.profile_editor_border, .profile_content .actionbuttons {
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.userprof_headers_border{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.userprof_content_border{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
margin-top:-1px;
}

#yui-gen13{
top:-3px;
}

.forumlastpost.td div{
padding-bottom:5px;
}

.lastedited{
color:white !important;
}

.threadbit .pagination a { 
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
border-top-width:0px !important;
border-left-width:0px !important;
border-right-width:0px !important;
border-bottom-width:0px !important;
background:transparent !important;
}

.searchform{
border-bottom-left-radius: 0 !important;;
border-bottom-right-radius: 0 !important;;
border-top-left-radius: 0 !important;;
border-top-right-radius: 0 !important;;
}

.searchform .searchfield{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

.searchform .filter{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

.bbcode_quote div.quote_container{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

.bbcode_container div.bbcode_quote{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
border-left-color:#7F7F7F !important;
border-right-color:#FFFFFF !important;
border-bottom-color:#FFFFFF !important;
border-top-color:#7F7F7F !important;
}

#suche{
left:5px !important;
top:23px !important;
}
}
 
Zuletzt bearbeitet:
das mit dem hintergrund, der nicht durchgängig ist steht eine seite vorher ;)
die spoilerfarben, stimmt... mache ich mich hioffentlich heute noch ran.
was ist denn in der aktuellen version an problemen dazu gekommen? dann richte ich gleich mal alles passend
 
Ah, ok.

In der neuen Version sieht der Kopfbereich so aus:

 
okay, das ist seltsam, bei mir ist das problem nicht...
mal sehen ob ich bis morgen alles gerichtet bekomme ;)
 
Wäre genial, danke :love:

---------- Post added at 16:57 ---------- Previous post was at 16:38 ----------

ICh hab übrigens auch den Fehler den du schon bemerkt hast, dass in manchen Unterforen der Hintergrund weiß ist.

Das mit der Sysinfo konnte ich im Thread schon finden und lösen, genau wie das mit der Breite.
wenn jetzt die Spoiler richtig sind und der Hintergrund in manchen Topics da ist wäre ich wieder erstmal glücklich :bigok:
 
Ich hab meinen Style mal wieder upgedated. Jetzt haben die PNs eine andere Umrandung und es wurden kleine Darstellungsfehler die im Laufe der Zeit aufgetreten sind ausgebessert.
Das Update ist auf userstyles.org bzw in den CSS Dateien für Opera verfügbar.
 
Noch nen Fehler im classic-Skin:



Hier bei den Bewertungen zu finden. Gibt noch paar mehr Bereiche welche hell sind, werde screens posten, wenn ich mal wieder einen seh :wink:

---------- Post added at 18:23 ---------- Previous post was at 18:21 ----------

Wenn man auf den Nick klickt auch noch:

 
bei mir im opera klappt damit nun alles:

Code:
.main_body{
color:white !important;
width:100% !important;
}

.main_body1 {
width:100% !important;
color:white;
}

.main_body1  a{
color:white !important;
text-decoration:underline !important;
background:none;
}

.main_body1 span{
color:white !important;
}

.main_body1 span a{
color:white !important;
}

.body_wrapper{
background:none !important;
}

body{
background:none !important;
background-image:url("http://www.abload.de/img/luxxbgs04my.png") !important;
}

.main_body1{
left:0px !important;
}

.blockfoot{
background:none !important;
}

.cf{
background:none !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-left-width:0px !important;
border-right-width:0px !important;
border-bottom-width:0px !important;
margin-right: 147px !important;
}

.floatcontainer.footer{
background:#636563 !important;
}

.navtabs.floatcontainer{
background:#636563 !important;
}

.blockhead{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
background:#002C59 !important;
border-top-width:1px !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.shade.footer_time{
color:white;
}

.blocksubhead{
background:#636563 !important;
}


.blockbody{
background:#737573 !important;
box-shadow:none !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
}

.above_body{
background:none !important;
border-bottom-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-bottom-width:2px !important;
border-right-width:0px !important;
background-image:url("http://www.abload.de/img/bg_header03jwo.png") !important;
height:100px !important;
padding-top:50px !important;
background-repeat:no-repeat !important;
}

.forumrow.table{
background:#636563 !important;
box-shadow:none !important;
border-bottom-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

.threadbit .sticky{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
box-shadow:none !important;
}

.threadbit .nonsticky, .threadbit .deleted, .threadbit .discussionrow, .threadbit .ignored{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
box-shadow:none !important;
}

.postbody{
background:#737573 !important;
}

.postdetails{
background:#636563 !important;
}

.formcontrols{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
}

.blockrow.pmbit{
background:#737573 !important;
}

#yui-gen8{
background:#737573 !important;
}

#yui-gen5{
background:#737573 !important;
}

#yui-gen2{
background:#737573 !important;
}

#tag_edit_link{
background:#636563 !important;
}

.popupctrl.user_systeminfo{
background:#636563 !important;
}

#navbar_notice_12{
background:#636563 !important;
}

.username_container{
background:none !important;
}

.popupbody.memberaction_body{
background:#636563 !important;
}

.username.online.popupctrl{
background:none !important;
}

.username.offline.popupctrl{
background:none !important;
}

.threadlastpost.td{
color:white;
}

.threadstats.td.alt{
color:white
}

.pagination span a{
background:grey !important;
border-bottom-width: 1px;
border-left-width: 1px;
border-right-width: 1px;
border-top-width: 1px;
}

.popupbody li > a:hover, .popupbody li > label:hover, .popupbody li.vbmenu_hilite > a { 
background-color:none !important;
}

.popupbody li > a, .popupbody li > label {
background:none;
}

a.user_systeminfo{
box-shadow:none !important;
font-size:12px !important;
padding-left:1px !important;
background:transparent !important;
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

a.user_systeminfo.active{
box-shadow:none !important;
font-size:12px !important;
padding-left:1px !important;
background:transparent !important;
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

#usercp_nav .blockrow * a{
background:#737573 !important;
color:white !important;
}

.blocksubhead{
color:white !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.wgo_subblock.section{
background:#737573 !important;
}

.wgo_subblock.section{
color:white !important;
}

.postbit, .postbitlegacy, .eventbit{
color:white !important;
}

.postbitlegacy .postrow, .eventbit .eventrow, .postbitdeleted .postrow, .postbitignored .postrow {
color:white !important;
}

.quote_container{
background:#636563 !important;
}

.bbcode_container .bbcode_quote_container{
background:none !important;
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}


.bbcode_code{
background:#434543 !important;
}

.userprof_content{
color:white !important;
}

.userprof_vmright div{
background:#636563 !important;
}

.userprof_vmright div blockquote{
background:#737573 !important;
}

.userprof_module{
background:#737573 !important;
}

.userprof_moduleinactive{
background:#636563 !important;
}

.userprof_title{
color:white !important;
}

dl.stats dt, #sidebar_container dl.stats, #sidebar_container .blockbody.userprof_content, #sidebar_container .userprof_content .time, .userprof_content .time {
color:white !important
}

.userprof_content .blockrow{
color:white !important;
background:#737573 !important;
border-top-color:black !important; /**/
}

.textcontrol{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.forumrow{
background:#737573 !important;
box-shadow:none !important;
border-bottom-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

#pagetitle{
padding-bottom:3px;
}

.thread_info{
color:white !important;
}

.navtabs ul{
background:#737573;
border-top-color:#000000 !important;
border-top-style:solid !important;
border-top-width:1px !important;
}

.postfoot{
background:#737573 !important;
border-top-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

.posthead{
background:#636563 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
background:#002C59 !important;
border-top-width:1px !important;
margin-top:-15px !important;
}

.pagetitle{
padding-top:10px !important;
}

.thread_controls{
background:#002C59 !important;
margin-top:10px !important;
margin-bottom:11px !important;
}

.toolsmenu div{
border-top-color:#000000 !important;
border-top-style:solid;
border-top-width:1px !important;
border-left-color:#000000 !important;
border-left-style:solid;
border-left-width:1px !important;
border-right-color:#000000 !important;
border-right-style:solid;
border-right-width:1px !important;
}

.forumbit_post .foruminfo .forumdata, .forumbit_post .foruminfo .forumtitle, .forumbit_post .foruminfo .viewing { 
color:white !important;
}

.userprof_content{
background:#737573 !important;
}

.threadlisthead{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
background:#002C59 !important;
border-top-width:1px !important
}

.forumhead{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
background:#002C59 !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
border-top-width:1px !important;
box-shadow:none !important;
}

.breadcrumb .navbit a:hover{
background:none !important;
border-top-color:transparent !important;
border-left-color:transparent !important;
border-right-color:transparent !important;
border-bottom-color:transparent !important;
}

.active{
background:#838583 !important;
}

.above_postlist .pagination_top .pagination, .above_postlist .pagination_top .postpagestats {
color:#C1C1C1 !important;
}

#usercp_navpopup a{
background:#737573 !important;
border-top-color:black !important;
border-left-color:black !important;
border-right-color:black !important;
border-bottom-color:black !important;
}

.blockfoot.controlbar.textpad a{
background:#737573 !important;
}

#showthread_navpopup a{
background:#737573 !important;
border-top-color:black !important;
border-left-color:black !important;
border-right-color:black !important;
border-bottom-color:black !important;
padding-bottom: 5.33px !important;
}

#searchtypeswitcher li a {
background:#636563 !important;
border-right-width:1px !important;
border-left-width:1px !important;
border-top-width:1px !important;
border-top-style:solid !important;
border-left-style:solid !important;
border-right-style:solid !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-top-color:#000000 !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

#searchtypeswitcher li.selected a{
background:#737573 !important;
}

#pmrecips_ctrl{
color:white;
}

#yui-gen26 .right{
background:#737573;
}

.postbit .posttitle, .postbitlegacy .title {
border-bottom-color:#000000 !important;
}

.postdetails{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

.postbody{
border-left-color:#000000 !important;
}

.posts li{
border-bottom-color:#000000 !important;
border-right-color:#000000 !important;
}

.signature{
border-top-color:#A1A1A1 !important;
}

.navtabs li ul li a{
font-weight:bold !important;
}

.nodecontrols a{
font-weight:bold !important;
top:-20px !important;
}

#postlist_popups .popupmenu .popupctrl{
background:transparent !important;
font-weight:bold;
}

#postlist_popups{
background:#737573 !important;
}

.formcontrols .blockrow{
background:#737573 !important;
}

.cke_skin_kama .cke_wrapper{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

span.cke_skin_kama{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.footer{
box-shadow:none !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

#thread_info div, h4{
box-shadow:none !important;
}

.pagination span a{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
margin-left: -1px !important;
font-size:11px !important;
padding-bottom: 4px !important;
padding-left: 4px !important;
padding-right: 4px !important;
padding-top: 3px !important;
position:relative;
}

.below_postlist .pagination_bottom {
margin-top:-15px !important;
}

.newcontent_textcontrol{
background-image:none !important;
box-shadow:none !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
padding-bottom: 0px !important;
padding-left: 0px !important;
padding-right: 0px !important;
padding-top: 0px !important;
background-color:transparent !important;
color:transparent !important;
padding-right:5px !important;
padding-bottom:5px !important;
font-weight:bold !important;
}

.navlinks{
color:white !important;
}

.logo-image{
background-image:url("http://www.abload.de/img/forumdeluxxcyry9.jpg") !important;
heigth:45px !important;
width:236px !important;
}

.navtabs{
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.navbar{
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
border-top-width:1px !important;
border-left-width:1px !important;
border-right-width:1px !important;
border-bottom-width:3px !important;
}

.postbit .posthead, .postbitlegacy .posthead, .eventbit .eventhead { 
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.pagination span.prev_next a, .pagination span.first_last a{
top:-4px !important;
}

.wgo_block{
box-shadow:none !important;
}

#above_threadlist_controls div{
border-left-width:0px !important;
border-right-width:0px !important;
border-top-width:0px !important;
}

#above_threadlist_controls ul li a{
font-size:13px !important;
font-weight:bold;
}

.above_threadlist .threadpagenav .threadpagestats{
color:#C1C1C1 !important;
}

.forum_info{
color:white !important;
}

.footer_links li{
border-left-color:#000000 !important;
}

.memberprofiletabunder{
background-color:black !important;
}

#sidebar_container.member_summary { 
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
box-shadow:none !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.profile_editor_border, .profile_content .actionbuttons {
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.userprof_headers_border{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.userprof_content_border{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
margin-top:-1px;
}

#yui-gen13{
top:-3px;
}

.forumlastpost.td div{
padding-bottom:5px;
}

.lastedited{
color:white !important;
}

.lastedited a{
color:white !important;
}

.threadbit .pagination a { 
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
border-top-width:0px !important;
border-left-width:0px !important;
border-right-width:0px !important;
border-bottom-width:0px !important;
background:transparent !important;
}

.searchform{
border-bottom-left-radius: 0 !important;;
border-bottom-right-radius: 0 !important;;
border-top-left-radius: 0 !important;;
border-top-right-radius: 0 !important;;
}

.searchform .searchfield{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

.searchform .filter{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

.bbcode_quote div.quote_container{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

.bbcode_container div.bbcode_quote{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
border-left-color:#7F7F7F !important;
border-right-color:#FFFFFF !important;
border-bottom-color:#FFFFFF !important;
border-top-color:#7F7F7F !important;
}

#suche{
left:5px !important;
top:23px !important;
}

.attachments{
background:#636563 !important;
border-left-color:#7F7F7F !important;
border-right-color:#FFFFFF !important;
border-bottom-color:#FFFFFF !important;
border-top-color:#7F7F7F !important;
border-top-left-radius:0;
border-top-right-radius:0;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
}

legend{
color:white !important;
}

.postbody fieldset{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
background:#636563 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.blocksubfoot{
background:none !important;
}

.description{
color:white !important;
}

dl.stats dt.folder_count, dl.stats dd.folder_count{
color:white !important;
}

.pagination span.selected a{
background:#636563 !important;
text-decoration:none !important;
}

.pmlist .blockrow{
border-top-color:#000000 !important;
}

.pmbit, .visitormessage{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

#above_postlist .folderstats{
color:#C1C1C1 !important;
}

blockquote.preview .bbcode_quote div.quote_container{
border-top-color:#7F7F7F !important;
}

.settings_form_top_border{
border-top-color:#000000 !important;
}

.navpopupmenu.popupmenu.nohovermenu a.textcontrol, .navpopupmenu.popupmenu.nohovermenu a.popupctrl{
background:#737573 !important;
color:white !important;
}

.polloptionsblock{
background-color:transparent !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
padding-top:10px !important;
}

#pollinfo .blockhead h2{
color:white !important;
}

#polloptions li{
padding-top:2px !important;
padding-bottom:3px !important;
}

#polloptions{
padding-bottom:3px !important;
border-bottom-color:#000000 !important;
border-bottom-style:solid !important;
border-bottom-width:1px !important;
border-right-color:#000000 !important;
border-right-style:solid !important;
border-right-width:1px !important;
border-left-color:#000000 !important;
border-left-style:solid !important;
border-left-width:1px !important;
}

#pollinfo .pollsubhead{
border-right-width:1px !important;
border-left-width:1px !important;
border-right-style:solid !important;
border-left-style:solid !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

#pollinfo .blockhead{
border-bottom-width:1px !important;
border-right-width:1px !important;
border-left-width:1px !important;
border-top-width:1px !important;
border-top-style:solid !important;
border-left-style:solid !important;
border-right-style:solid !important;
border-bottom-style:solid !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.popupctrl{
color:white !important;
}

.main_body  a{
color:white;
text-decoration:underline !important;
background:none;
}

.notifications a.popupctrl:link, .notifications a.popupctrl:visited, .toplinks a:link, .toplinks a:visited{
color:white !important;
}

body a:hover, body a:hover .time, body a:hover .shade, body a:hover .understate { 
color:white;
}

.memberaction_body.popupbody.epfp_list li.right{
background:#737573 !important;
}

.notices li { 
box-shadow:none !important;
background:#636563 !important;
border-bottom-width:1px !important;
border-right-width:1px !important;
border-left-width:1px !important;
border-top-width:1px !important;
border-top-style:solid !important;
border-left-style:solid !important;
border-right-style:solid !important;
border-bottom-style:solid !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
color:white !important;
}

.main_body .textbox, textarea, select{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

.main_body .toplinks{
color:white !important;
}

.logindetails{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
background:transparent !important;
}

#searchtypeswitcher{
border-bottom-color:#000000 !important;
border-bottom-width:1px !important;
}

.popupbody{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.popupbody li > a:hover, .popupbody li > label:hover, .popupbody li.vbmenu_hilite > a{
background:#636563 !important;
}

.popupbody li{
border-top-color:#000000 !important;
}

#cke_15_text{
color:black !important;
}

#cke_13_text{
color:black !important;
}

.postbit .userinfo, .postbit .userinfo_noavatar{
background:#636563;
border-top-color:black !important;
border-left-color:black !important;
border-right-color:black !important;
border-bottom-color:black !important;
}

.searchlisthead { 
box-shadow:none !important;
border-top-color:black !important;
border-left-color:black !important;
border-right-color:black !important;
border-bottom-color:black !important;
}

.postbit .userinfo_noavatar, .postbit .postbody{
border-right-color:black !important;
}

.postbit, .postbitlegacy, .eventbit{
border-bottom-color:black !important;
}

.postbit .postbody{
color:white;
}

.textbox.popupctrl{
color:black !important;
background:white !important;
}

.navpopupmenu.popupmenu.nohovermenu a.textcontrol, .navpopupmenu.popupmenu.nohovermenu a.popupctrl{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.memberaction_body.popupbody{
box-shadow:none !important;
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

.memberaction_body.popupbody.epfp_list{
border-top-width:1px !important;
border-left-width:1px !important;
border-right-width:1px !important;
border-bottom-width:1px !important;
}

.leaderboard{
margin-bottom:35px !important;
margin-top:-135px !important;
margin-right:360px !important;
text-align:right !important;
width:auto !important;
}

.main_body{
min-width:1350px !important;
}

#sky{
top:250px !important;
width:0;
height:0;
left:-120px;
overflow:visible;
}

.content div blockquote div{
background-color:#636563 !important;
border-left-color:#7F7F7F !important;
border-right-color:#FFFFFF !important;
border-bottom-color:#FFFFFF !important;
border-top-color:#7F7F7F !important;
}

.announcerow{
background-color:#737573 !important;
border-left-color:#7F7F7F !important;
border-right-color:#FFFFFF !important;
border-bottom-color:#FFFFFF !important;
border-top-color:#7F7F7F !important;
box-shadow:none !important;
}

.announcerow .announceinfo, .announcerow .announcement{
background-color:#737573 !important;
}
 
Zuletzt bearbeitet:
ich zitier mich mal selber,

Moin, sorry aber ich versuche gerade den Black Skin von lrwr beim Chrome Browser anzuwenden aber das funzt gar nicht,
es bleibt einfach wie es ist. Kann mir jemand helfen?

oder mach ich was verkehrt?
 
ach, sorry, ja, kann sein, dass beim black style der sylish code anfang noch nicht drin ist...
an dem schwarzen habe ich aber auch nicht mehr wirklich weiter gearbeitet muss ich sagen...

(joshude, feedback dum blauen wäre cool, geht jetzt alles? :))
 
(joshude, feedback dum blauen wäre cool, geht jetzt alles? :))

Also, mit dem Code hab ich weiterhin oben keinen Bereich wo mein Avatar etc drin zu sehen ist.

Ich nutze inzwischen diesen Code

Code:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url-prefix("http://www.hardwareluxx.de/community/") {

.memberaction_body.popupbody.epfp_list li.right {
background-color: #404040 !important;
}

body{
color:white !important;
}
   
a{
color:white !important;
text-decoration:underline !important;
background:none;
}

.body_wrapper{
background:none !important;
}

.main_body{
background:none !important;
background-image:url("http://www.abload.de/img/luxxbgs04my.png") !important;
width:100%!important;
}

.blockfoot{
background:none !important;
}

.cf{
background:none !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-left-width:0px !important;
border-right-width:0px !important;
border-bottom-width:0px !important;
}

.floatcontainer.footer{
background:#636563 !important;
}

.navtabs.floatcontainer{
background:#636563 !important;
}

.blockhead{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
background:#002C59 !important;
border-top-width:1px !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.shade.footer_time{
color:white;
}

.blocksubhead{
background:#636563 !important;
}


.blockbody{
background:#737573 !important;
box-shadow:none !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
}

SPAN{
color:white !important;
}

.above_body{
background:none !important;
border-bottom-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-bottom-width:2px !important;
border-right-width:0px !important;
background-image:url("http://www.abload.de/img/bg_header03jwo.png") !important;
height:100px !important;
padding-top:50px !important;
background-repeat:no-repeat !important;
}

.forumrow.table{
background:#636563 !important;
box-shadow:none !important;
border-bottom-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

.threadbit .sticky{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
box-shadow:none !important;
}

.threadbit .nonsticky, .threadbit .deleted, .threadbit .discussionrow, .threadbit .ignored{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
box-shadow:none !important;
}

.postbody{
background:#737573 !important;
}

.postdetails{
background:#636563 !important;
}

.formcontrols{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
}

.blockrow.pmbit{
background:#737573 !important;
}

#yui-gen8{
background:#737573 !important;
}

#yui-gen5{
background:#737573 !important;
}

#yui-gen2{
background:#737573 !important;
}

#tag_edit_link{
background:#636563 !important;
}

.popupctrl.user_systeminfo{
background:#636563 !important;
}

#navbar_notice_12{
background:#636563 !important;
}

.username_container{
background:none !important;
}

.popupbody.memberaction_body{
background:#636563 !important;
}

.username.online.popupctrl{
background:none !important;
}

.username.offline.popupctrl{
background:none !important;
}

.threadlastpost.td{
color:white;
}

.threadstats.td.alt{
color:white
}

.pagination span a{
background:grey !important;
border-bottom-width: 1px;
border-left-width: 1px;
border-right-width: 1px;
border-top-width: 1px;
}

.popupbody li > a:hover, .popupbody li > label:hover, .popupbody li.vbmenu_hilite > a { 
background-color:none !important;
}

.popupbody li > a, .popupbody li > label {
background:none;
}

a.user_systeminfo{
box-shadow:none !important;
font-size:12px !important;
padding-left:1px !important
}

#usercp_nav .blockrow * a{
background:#737573 !important;
}

P{
color:white ;
}

.blocksubhead{
color:white !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.wgo_subblock.section{
background:#737573 !important;
}

.wgo_subblock.section{
color:white !important;
}

.postbit, .postbitlegacy, .eventbit{
color:white !important;
}

.postbitlegacy .postrow, .eventbit .eventrow, .postbitdeleted .postrow, .postbitignored .postrow {
color:white !important;
}

.quote_container{
background:#636563 !important;
}

.bbcode_container .bbcode_quote_container{
background:none !important;
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}


.bbcode_code{
background:#434543 !important;
}

.07:53 05.01.2012{
border-left-width:1px !important;
border-top-width:1px !important;
border-right-width:1px !important;
height:55px !important;
border-top-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-bottom-width:1px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.userprof_content{
color:white !important;
}

.userprof_vmright div{
background:#636563 !important;
}

.userprof_vmright div blockquote{
background:#737573 !important;
}

.userprof_module{
background:#737573 !important;
}

.userprof_moduleinactive{
background:#636563 !important;
}

.userprof_title{
color:white !important;
}

dl.stats dt, #sidebar_container dl.stats, #sidebar_container .blockbody.userprof_content, #sidebar_container .userprof_content .time, .userprof_content .time {
color:white !important
}

.userprof_content .blockrow{
color:white !important;
background:#737573 !important;
border-top-color:black !important; /**/
}

.textcontrol{
background:#737573 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.forumrow{
background:#737573 !important;
box-shadow:none !important;
border-bottom-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

#pagetitle{
padding-bottom:3px;
}

.thread_info{
color:white !important;
}

.navtabs ul{
background:#737573;
border-top-color:#000000 !important;
border-top-style:solid !important;
border-top-width:1px !important;
}

.postfoot{
background:#737573 !important;
border-top-color:#000000 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

.posthead{
background:#636563 !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
background:#002C59 !important;
border-top-width:1px !important;
margin-top:-15px !important;
}

.pagetitle{
padding-top:10px !important;
}

.thread_controls{
background:#002C59 !important;
margin-top:10px !important;
margin-bottom:10px !important;
}

.toolsmenu div{
border-top-color:#000000 !important;
border-top-style:solid;
border-top-width:1px !important;
border-left-color:#000000 !important;
border-left-style:solid;
border-left-width:1px !important;
border-right-color:#000000 !important;
border-right-style:solid;
border-right-width:1px !important;
}

.forumbit_post .foruminfo .forumdata, .forumbit_post .foruminfo .forumtitle, .forumbit_post .foruminfo .viewing { 
color:white !important;
}

.userprof_content{
background:#737573 !important;
}

.threadlisthead{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
background:#002C59 !important;
border-top-width:1px !important
}

.forumhead{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
background:#002C59 !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
border-top-width:1px !important;
box-shadow:none !important;
}

.breadcrumb .navbit a:hover{
background:none !important;
border-top-color:transparent !important;
border-left-color:transparent !important;
border-right-color:transparent !important;
border-bottom-color:transparent !important;
}

.active{
background:#838583 !important;
}

.above_postlist .pagination_top .pagination, .above_postlist .pagination_top .postpagestats {
color:#C1C1C1 !important;
}

#usercp_navpopup a{
background:#737573 !important;
border-top-color:black !important;
border-left-color:black !important;
border-right-color:black !important;
border-bottom-color:black !important;
}

.blockfoot.controlbar.textpad a{
background:#737573 !important;
}

#showthread_navpopup a{
background:#737573 !important;
border-top-color:black !important;
border-left-color:black !important;
border-right-color:black !important;
border-bottom-color:black !important;
padding-bottom: 5.33px !important;
}

#searchtypeswitcher li a {
background:#636563 !important;
}

#searchtypeswitcher li.selected a{
background:#737573 !important;
}

#pmrecips_ctrl{
color:white;
}

#yui-gen26 .right{
background:#737573;
}

.postbit .posttitle, .postbitlegacy .title {
border-bottom-color:#000000 !important;
}

.postdetails{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
}

.postbody{
border-left-color:#000000 !important;
}

.posts li{
border-bottom-color:#000000 !important;
border-right-color:#000000 !important;
}

.signature{
border-top-color:#A1A1A1 !important;
}

.navtabs li ul li a{
font-weight:bold !important;
}

.nodecontrols a{
font-weight:bold !important;
top:-20px !important;
}

#postlist_popups .popupmenu .popupctrl{
background:002C59 !important;
font-weight:bold;
}

.formcontrols .blockrow{
background:#737573 !important;
}

.cke_skin_kama .cke_wrapper{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

span.cke_skin_kama{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.footer{
box-shadow:none !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

#thread_info div, h4{
box-shadow:none !important;
}

.pagination span a{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
margin-left: -1px !important;
font-size:11px !important;
padding-bottom: 4px !important;
padding-left: 4px !important;
padding-right: 4px !important;
padding-top: 3px !important;
position:relative;
}

.below_postlist .pagination_bottom {
margin-top:-15px !important;
}

.newcontent_textcontrol{
background-image:url("http://www.abload.de/img/replydcrr2.gif") !important;
box-shadow:none !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
padding-bottom: 0px !important;
padding-left: 0px !important;
padding-right: 0px !important;
padding-top: 0px !important;
background-color:transparent !important;
color:transparent !important;
padding-right:5px !important;
padding-bottom:5px !important;
}

.navlinks{
color:white !important;
}

.logo-image{
background-image:url("http://www.abload.de/img/forumdeluxxcyry9.jpg") !important;
heigth:45px !important;
width:236px !important;
}

.navtabs{
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.navbar{
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
border-top-width:1px !important;
border-left-width:1px !important;
border-right-width:1px !important;
border-bottom-width:3px !important;
}

.postbit .posthead, .postbitlegacy .posthead, .eventbit .eventhead { 
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
}

.pagination span.prev_next a, .pagination span.first_last a{
top:-4px !important;
}

.wgo_block{
box-shadow:none !important;
}

#above_threadlist_controls div{
border-left-width:0px !important;
border-right-width:0px !important;
border-top-width:0px !important;
}

#above_threadlist_controls ul li a{
font-size:13px !important;
font-weight:bold;
}

.above_threadlist .threadpagenav .threadpagestats{
color:#C1C1C1 !important;
}

.forum_info{
color:white !important;
}

#newthreadlink_top, #newthreadlink_bottom{
font-size:9px;
padding-right:3px !important;
}

.footer_links li{
border-left-color:#000000 !important;
}

.memberprofiletabunder{
background-color:black !important;
}

#sidebar_container.member_summary { 
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
box-shadow:none !important;
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.profile_editor_border, .profile_content .actionbuttons {
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.userprof_headers_border{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
}

.userprof_content_border{
border-left-color:#000000 !important;
border-right-color:#000000 !important;
border-bottom-color:#000000 !important;
border-top-color:#000000 !important;
margin-top:-1px;
}

#yui-gen13{
top:-3px;
}

.forumlastpost.td div{
padding-bottom:5px;
}

.lastedited{
color:white !important;
}

.threadbit .pagination a { 
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
border-top-width:0px !important;
border-left-width:0px !important;
border-right-width:0px !important;
border-bottom-width:0px !important;
background:transparent !important;
}

.searchform{
border-bottom-left-radius: 0 !important;;
border-bottom-right-radius: 0 !important;;
border-top-left-radius: 0 !important;;
border-top-right-radius: 0 !important;;
}

.searchform .searchfield{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

.searchform .filter{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

.bbcode_quote div.quote_container{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}

.bbcode_container div.bbcode_quote{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
border-left-color:#7F7F7F !important;
border-right-color:#FFFFFF !important;
border-bottom-color:#FFFFFF !important;
border-top-color:#7F7F7F !important;
}

#suche{
left:5px !important;
top:23px !important;
}
}

Damit geht soweit alles bis auf die paar Subforen wo das Hintergrundbild fehlt und die weißen spoiler.
Kannst du anhand diesen Codes mal schauen woran das liegen kann?
Bei deinem sind wieder andere Fehler da, und auch der Spoilerfehler besteht weiterhin.
 
Hab mir das mit den Spoilern mal angeschaut. Mit CSS alleine dürfte es nicht gehen, dass an die dunklen Styles anzupassen. Das liegt daran, dass die Stylefinitionen direkt im Code sind und nicht in einer CSS Klasse oder Id.
 
im opera hat er die farben der spoiler trotzdem übernommen (was mich ehrlich gesagt auch wunderte)
auch das problem mit der verrutscheten leista habe ich nicht

@joshude: ändere mal
Code:
body{
color:white !important;
}
   
a{
color:white !important;
text-decoration:underline !important;
background:none;
}

.body_wrapper{
background:none !important;
}

.main_body{
background:none !important;
background-image:url("http://www.abload.de/img/luxxbgs04my.png") !important;
width:100%!important;
}

um in

Code:
body{
color:white !important;
background:none !important;
background-image:url("http://www.abload.de/img/luxxbgs04my.png") !important;
}
   
a{
color:white !important;
text-decoration:underline !important;
background:none;
}

.body_wrapper{
background:none !important;
}

.main_body{
width:100%!important;
}
 
Top, mit der Änderung ist nun auch der Hintergrund richtig.

@absoluteschaoz: Aber wieso ist es dann in anderen Themes richtig?
 
Hallo siM•Luxx,

hast du das hier schon bedacht:

gq5kswpf.jpg


Wenn du deinen CSS Code nur auf das Hardwareluxxforum auswirken lassen möchtest, brauchst du noch folgenden Code am Anfang:

Code:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url-prefix("http://www.hardwareluxx.de/community") {

Dein kompletter CSS Code:

Code:
/* Version 1.1 */

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url-prefix("http://www.hardwareluxx.de/community") {

.above_body {
width: 1200px !important; 
margin: 0px auto !important;
box-shadow: 0 1px 5px #ededed;
-moz-box-shadow: 0 1px 5px #ededed;
-webkit-box-shadow: 0 1px 5px #ededed;
border-bottom: 1px solid #d1d1d1 !important;
border-left: 1px solid #d1d1d1 !important;
border-right: 1px solid #d1d1d1 !important;
}

#navbar {
    width: 1200px !important; 
    margin: 0px auto !important;
}

.cf {
    width: 1200px !important; 
    margin: 0px auto !important;
    border-left: 0px solid #D1D1D1 !important;
    border-right: 0px solid #D1D1D1 !important;
    border-bottom: 0px solid #D1D1D1 !important;
    padding: 0px 0px 0px 0px !important;
}

.body_wrapper {
    width: 1200px !important; 
    padding: 20px 0px 0px 0px !important;
    margin: 0px auto !important;
}

#sky {display: none !important;}
#wgo {display: none !important;}
#navbar {display: none !important;}
#footer {display: none !important;}

#forum_info_options {display: none !important;}
#thread_info {padding-bottom: 40px !important;}
/* .after_content {display: none !important;} */
.options_block_container {display: none !important;}
.below_body {display: none !important;}



.postbitlegacy .postbody, .eventbit .eventdetails .eventbody {
    Background-color:#F1F1F1 !important;}

h2 a {
    color: #000 !important;}
    
.threadtitle a {
    color: #000 !important;}

.forumtitle a {
    color: #fff !important;}
    
.postfoot {
    background-color: #fff !important;}

.forumbit_post .forumrow, .forumbit_nopost .forumrow, .forumbit_post {
    Background-color:#F1F1F1 !important;}

.forumbit_post .forumrow, .forumbit_nopost .forumrow, .forumbit_post a {
    color: #000 !important;}

.subforumlistlabel {display: none !important;}

.subforum {display: none !important;}

.forumbit_post .forumrow, .forumbit_nopost .forumhead, .forumbit_nopost .forumrow, .forumbit_post .forumhead, .forumbits .forumhead {
box-shadow: 0 1px 5px #CCC;
-moz-box-shadow: 0 1px 5px #CCC;
-webkit-box-shadow: 0 1px 5px #CCC;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.forumhead, .posthead {
font: bold 12px verdana;
margin-top: 15px;
border-radius: 2px 2px 2px 2px !important;
border-top: 3px solid #D60B07;
border-left: 1px solid #464746;
border-right: 1px solid #464746;
border-bottom: 1px solid #464746;
}

#suche {display: none !important;}

.postdetails {
box-shadow: 0 1px 5px #CCC !important;
-moz-box-shadow: 0 1px 5px #CCC !important;
-webkit-box-shadow: 0 1px 5px #CCC !important;}

.threadinfohead blockhead {
border-radius: 2px 2px 0px 0px !important;}

.postfoot {
border-bottom-left-radius: 2px !important;
border-bottom-right-radius: 2px !important;
box-shadow: 0 3px 5px #ccc;
-moz-box-shadow: 0 3px 5px #ccc;
-webkit-box-shadow: 0 3px 5px #ccc;}

div.postbody {
-webkit-box-shadow: 0px 0px,  -2px 4px 8px #dcdcdc;   
-moz-box-shadow: 0px 0px 0px,  -2px 4px 8px #dcdcdc;   
box-shadow: 0px 0px 0px,  -2px 4px 8px #dcdcdc;
}

h2 .title, .icon {
display: none !important;
}

blockquote.postcontent.restore {
padding-top: 20px !important;
padding-left: 10px !important;
padding-right: 10px !important;
padding-bottom: 10px !important;
}

blockquote.postcontent.lastedited {
padding-left: 20px !important;
}

blockquote.signature.restore {
padding-top: 20px !important;
padding-left: 20px !important;
padding-right: 20px !important;
padding-bottom: 10px !important;
}

.formcontrols {
border: 0px solid #fff !important;
}

/* Version 1.1 A (15.04.2012) */

span.cke_skin_kama {
outline: none !important;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border: 1px solid #ccc !important;
padding: 1px !important;
box-shadow: 0 3px 5px #ccc;
-moz-box-shadow: 0 3px 5px #ccc;
-webkit-box-shadow: 0 3px 5px #ccc;
}

.formcontrols, .blockrow {
background: white none repeat-x center bottom;
border-top: solid 1px #D1D1D1;
padding: 10px 0px !important;
}

#below_postlist {
padding-bottom: 10px !important;
}

h3#quickreply_title {
display: none !important;
}

.profile_content, .actionbuttons, formcontrols, .blockrow {
border-bottom: 0px solid #fff !important;
border-left: 0px solid #fff !important;
border-right: 0px solid #fff !important;
border-top: 0px solid #fff !important;
}

li.breadcrumb > a, .navbit > a, .lastnavbit > a {
border: none !important;
}

li.announcerow {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border: 1px solid #ccc !important;
padding: 1px !important;
box-shadow: 0 2px 2px #f3f3f3 !important;
-moz-box-shadow: 0 2px 2px #f3f3f3 !important;
-webkit-box-shadow: 0 2px 2px #f3f3f3 !important;
margin-bottom: 5px !important;
}

/* div.userinfo {
padding-top: 10px !important;
padding-left: 10px !important;
} */

div.blocksubhead img {
display: none !important;
}

div.blockbody.postpreview {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border: 1px solid #ccc !important;
}

.formcontrols .section {
padding: 0 0 0 0 !important;
}

/* Version 1.1 B (16.04.2012, 8.23 Uhr) */

.rating0.sticky, .rating5.nonsticky, .rating0.nonsticky {
box-shadow: 0 1px 5px #CCC;
-moz-box-shadow: 0 1px 5px #CCC;
-webkit-box-shadow: 0 1px 5px #CCC;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}

.newcontent_textcontrol {
background: #474646 !important;
-moz-border-radius: 3px !important;
-webkit-border-radius: 3px !important;
border-radius: 3px !important;
box-shadow: 0 1px 5px #CCC !important;
-moz-box-shadow: 0 1px 5px #CCC !important;
-webkit-box-shadow: 0 1px 5px #CCC !important;
padding: 5px 10px 7px 10px !important;
margin-top: 0px !important;
}

.newcontent_textcontrol:active {
-moz-box-shadow:inset 0px 2px 9px #000000 !important;
-webkit-box-shadow:inset 0px 2px 9px #000000 !important;
box-shadow:inset 0px 2px 9px #000000 !important;
}

.newcontent_textcontrol:hover {
background: #605e5f !important;
}

Und nu:

mgbmzu36.jpg


;)

Funktionieren den eventuell meine Blueskins auch auf Safari bei dir?
Teste das mal bitte?

:hail:

Kannst du das kurz bitte probieren?

mfg tree:angel:
 
Bildschirmfoto%202012-04-16%20um%2012.41.09.png


steht in URLs drin :wink:

edit: und die Blueskins funktionieren alle auf Safari :wink:
 
Hardwareluxx setzt keine externen Werbe- und Tracking-Cookies ein. Auf unserer Webseite finden Sie nur noch Cookies nach berechtigtem Interesse (Art. 6 Abs. 1 Satz 1 lit. f DSGVO) oder eigene funktionelle Cookies. Durch die Nutzung unserer Webseite erklären Sie sich damit einverstanden, dass wir diese Cookies setzen. Mehr Informationen und Möglichkeiten zur Einstellung unserer Cookies finden Sie in unserer Datenschutzerklärung.


Zurück
Oben Unten refresh