Created
December 26, 2011 21:43
-
-
Save jwoertink/1522156 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
$('#upload').live('mouseenter', function() { | |
$('#upload').mousemove(function(e) { | |
$('#file').css('top', (e.pageY - 16) + 'px') | |
.css('left', (e.pageX + -175) + 'px'); | |
}); | |
}); | |
if(window.location.href.indexOf("?success") != -1) { | |
alert('Thank you for your submission. Check back for the results'); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@charset "utf-8";body{font-family:Arial,Helvetica,sans-serif;margin:0;background:url(../images/splash-final.jpg) no-repeat;background-position:center;} | |
#main{width:1033px;height:1024px;margin:0 auto;background:url(../images/page-bg1.png) no-repeat;padding-top:0px;} | |
#form{width:838px;padding-left:160px;} | |
#form td{font-family:Arial,Helvetica,sans-serif;font-size:17px;font-weight:bold;color:#02326c;} | |
#form td input[type=text]{border:none;width:360px;height:27px;} | |
.submit{background:url(../images/submit.png);background-repeat:no-repeat;width:175px;height:54px;border:none;cursor:pointer;} | |
.upload{background:url(../images/upload.png);background-repeat:no-repeat;width:175px;height:54px;border:none;cursor:pointer;} | |
#file{position:absolute;z-index:10;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);-moz-opacity:0.0;-khtml-opacity:0.0;opacity:0.0;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment