July 13, 2016
Gallery contains 100 images
HMV "my inspiration" posters Almost nine years ago, I worked on a flash based project with an agency in Manchester to produce a wall based interactive journey which showcased artists and their inspirational quotes. Interacting with the wall gave a full screen version of the poster and latest albums and tracks. It was good project to work on as it wasn't run of the mill and was present on the main HMV website until 2013, so stood the test of time well. I just thought I'd pop theses wonderful pieces Read more [...]Another simple SCSS mixin for setting text shadows on an element, includes parameters for:
@mixin text-shadow($x: 2px, $y: 2px, $blur: 5px, $color: rgba(0,0,0,.4)) {
text-shadow: $x $y $blur $color;
}
.h1{
@include text-shadow(2, 2, 5, rgba(0,0,0,.4))
}