was hat das mit wordpress zu tun?
ausser dass du evtl das mal spaeter in ein wordpress theme einbauen willst?
normal css, am beispiel des zweiten cubes:
Code
.two .leftFace { background-color: pink; }
.two .rightFace { background-color: pink; }
.two .topFace div { background-color: purple; }
.cube.two:hover .rightFace,
.cube.two:hover .leftFace,
.cube.two:hover .topFace div {
background-color: #ffee53;
}
.cube.two:hover .rightFace:hover,
.cube.two:hover .leftFace:hover,
.cube.two:hover .topFace:hover div {
background-color: orange;
}
Alles anzeigen
NB: mit einem link zur seite brauchst du kein CSS posten - das kann ganz einfach mit freien web-hilfen wie zB firebug oder so ausgelesen werden.
edit:
links muessen im html-code mit eingebaut werden.