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

30in x 20in

2007

Shams (whose name means "sun") was Rumi's master.  The two poets were mystically and spiritually bound like two souls in one body.

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