gold page: sparklepants.

This commit is contained in:
Max Goodman
2013-06-20 14:22:04 -07:00
parent ac289b21bd
commit b5f54defd7
2 changed files with 27 additions and 0 deletions

View File

@@ -1,3 +1,11 @@
.transition (@property, @duration, @function: ease, @delay: 0s) {
-webkit-transition: @arguments;
-moz-transition: @arguments;
-o-transition: @arguments;
-ms-transition: @arguments;
transition: @arguments;
}
.transform(...) {
-webkit-transform: @arguments;
-moz-transform: @arguments;
@@ -95,6 +103,25 @@ section#gold-letter {
font-family: sans-serif;
font-size: .75em;
}
&:after {
content: '';
display: block;
position: absolute;
top: 85px;
left: 310px;
width: 200px;
height: 276px;
background: url(../gold/sparklepants.png);
z-index: 100;
opacity: 0;
}
&:hover:after {
opacity: 1;
left: 210px;
.transition(all, 0.5s, ease, 7s);
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB