/* Hiding Cursor when move out of website viewport */ body:hover .cursor { opacity: 1; } .cursor { pointer-events: none; }
Broken Sword

32in x 23.25in

1985

Despairs at all the injustice in the world, the angel covers his eyes, puts down the scales and weeps for mercy.

next work
Brutalized by Power
scroll for more
gallery
// Hiding Cursor when move out of viewport $("a").mouseenter(function () { $(".cursor").click(); }); $("a").mouseleave(function () { $(".cursor").click(); });