This file contains hidden or 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
/* Hide the search web button */ | |
div[id=':rj'] { | |
display: none; | |
} | |
/* Hide the search button */ | |
div[id=':rk'] { | |
display: none; | |
} | |
/* Hide the tasks button */ |
This file contains hidden or 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
ORG $3000 | |
hex ds.w 1 ; $3000-01 | |
div ds.w 1 ; $3002-03 | |
temp ds.b 1 ; $3004-05 | |
ORG $3010 | |
bcd ds.w 3 ; $3010-13 | |
ORG $3020 | |
asc ds.w 3 ; $3020-25 |
This file contains hidden or 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
<table style="border-top-color: #dfdfdf; border-top-width: 1px; border-top-style: solid; width: 100%; margin-top: 10px;" border="0" cellspacing="0" cellpadding="0" align="center"> | |
<tbody> | |
<tr> | |
<td align="left" valign="top"> | |
<p style="margin: 0; padding: 0; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; margin-top: 8px; font-weight: bold; color: #333; font-size: 12pt; line-height: 17pt;">Full Name</p> | |
<p style="margin: 0; padding: 0; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; color: #a0a0a0; font-size: 8pt;">Prime Studios</p> | |
</td> | |
<td align="right" valign="top"> | |
<p style="margin: 0; padding: 0; font-family: Helvetica Neue,Helvetica,Arial,sans-serif; margin-top: 8px; font-weight: bold; color: #333; font-size: 12pt; line-height: 17pt;">Phone Number</p> | |
<p style="margin: 0; padding: 0;"><a style="margin: 0; padding: 0; font-family: Helvetica Neue,Helvetica,Arial,sans-serif; color: #a0a0a0; font-size: 8pt; text-decoration: none;" |
This file contains hidden or 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($){ | |
$.fn.fullscreenr = function(options) { | |
if(options.height === undefined) alert('Please supply the background image height, default values will now be used. These may be very inaccurate.'); | |
if(options.width === undefined) alert('Please supply the background image width, default values will now be used. These may be very inaccurate.'); | |
if(options.bgID === undefined) alert('Please supply the background image ID, default #bgimg will now be used.'); | |
var defaults = { width: 1280, height: 1024, bgID: 'bgimg' }, | |
options = $.extend({}, defaults, options); | |
$(document).ready(function() { $(options.bgID).fullscreenrResizer(options); }); | |
$(window).bind("resize", function() { $(options.bgID).fullscreenrResizer(options); }); | |
return this; |
NewerOlder