[Kommentiert und in Farbe] DreamCoder CSS
[ Nach unten | Zum letzten Beitrag | Thema abonnieren | Neueste Beiträge zuerst ]
[Kommentiert und in Farbe] DreamCoder CSS
von CranKSoftware am 28.04.2012 20:00/* Zuletzt Aktualisiert: 01.05.2012 | 17:18 Uhr */
/* Header */
#head {
background-repeat: no-repeat;
background-size: 100%;
}
/* Hover-Effekt für Header */
#head:hover {
background-image: url(http://static.yooco.de/s1/images/gallery/medium/3/48/3ba330f6a890572a5be0fe264103c9d9.png);
border: 2px solid black;
border-radius: 5px;
margin-left: -2px;
margin-top: -4px;
}
/* Hintergrund richtig darstellen */
body {
background-size:cover;
}
/* Hovereffekt für Forenbeiträge */
div.forum_postbody:hover {
border-color: #a4bad7;
}
/* Hovereffekt für Forenthreads */
#tableForums .tableForums tbody td:hover {
box-shadow: 0 0 4px #000;
background-color: white;
}
/* Schatteneffekt für Boxen */
.boxItem {
box-shadow: 0 0 10px #000;
border-radius: 10px;
}
/* Hovereffekt für Boxen (Sieht echt nice aus *__*) */
.boxItem:hover {
box-shadow: 0 0 15px #000;
border-radius: 12px;
}
/* "Du befindest dich hier: " Verstecken */
#breadcrumb {
display: none;
}
/* DreamCoder Control Panel */
#dynamicscroller {
position: fixed;
border: 2px solid black;
box-shadow: 0 0 10px #000;
border-radius: 10px;
text-align: center;
padding: 8px;
background-color: white;
color: black;
font-size: 16pt;
bottom: 2px;
visibility: visible;
z-index: 200;
}
#dynamicscroller:hover {
box-shadow: 0 0 20px #000;
border-radius: 12px;
}
#dynamicscroller .dynpanel {
font-size: 18pt;
}
Option Explicit On
Option Infer On
Antworten