Created
June 22, 2011 02:51
-
-
Save Sadin/1039416 to your computer and use it in GitHub Desktop.
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
// CSS | |
body { | |
background: url('../img/bg_dark.jpg'); | |
font-family: Ubuntu, Helvetica, sans-serif; | |
color: #E8E8E8; | |
} | |
a, a:active, a:visited { | |
color: #E8E8E8; | |
text-decoration: none; | |
font-weight: bold; | |
} | |
a:hover { | |
text-decoration: underline; | |
} | |
#wrapper { | |
background:; | |
margin:auto; | |
padding:0px; | |
width:1000px; | |
border:1px solid #000; | |
} | |
#wrapper #header { | |
background: url('../img/header-grad.png'); | |
height:50px; | |
border-bottom:1px solid #000; | |
} | |
#wrapper #main { | |
background: url('../img/main-grad.png') no-repeat; | |
height:100%; | |
padding: 15px; | |
} | |
#wrapper #footer { | |
background: url('../img/header-grad.png'); | |
height:50px; | |
border-top:1px solid #000; | |
} | |
#footer span { | |
font-size: 0.7em; | |
margin: auto; | |
width: 800px; | |
padding: 15px; | |
text-align: center; | |
} | |
// Gened HTML | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" media="screen" href="./css/shCore.css"/> | |
<link rel="stylesheet" type="text/css" media="screen" href="./css/shCoreFadeToGrey.css"/> <link rel="stylesheet" type="text/css" media="screen" href="./css/shThemeFadeToGrey.css"/> <link rel="stylesheet" type="text/css" media="screen" href="./css/styles.css"/> | |
<link rel="stylesheet" type="text/css" media="screen" href="./css/jqueryui.css"/> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js" ></script> | |
<script type="text/javascript" src="./js/shCore.js" ></script> | |
<script type="text/javascript" src="./js/shAutoloader.js"></script> | |
<script type="text/javascript" src="./js/init.js" ></script> | |
<script type="text/javascript" src="./js/fx.js" ></script> | |
<script type="text/javascript"> | |
var _gaq = _gaq || []; | |
_gaq.push(['_setAccount', 'UA-24000830-1']); | |
_gaq.push(['_trackPageview']); | |
(function() { | |
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | |
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | |
})(); | |
function path() | |
{ | |
var args = arguments, | |
result = [] | |
; | |
for(var i = 0; i < args.length; i++) | |
result.push(args[i].replace('@', './js/')); | |
return result | |
}; | |
SyntaxHighlighter.autoloader.apply(null, path( | |
'applescript @shBrushAppleScript.js', | |
'actionscript3 as3 @shBrushAS3.js', | |
'bash shell @shBrushBash.js', | |
'coldfusion cf @shBrushColdFusion.js', | |
'cpp c @shBrushCpp.js', | |
'c# c-sharp csharp @shBrushCSharp.js', | |
'css @shBrushCss.js', | |
'delphi pascal @shBrushDelphi.js', | |
'diff patch pas @shBrushDiff.js', | |
'erl erlang @shBrushErlang.js', | |
'groovy @shBrushGroovy.js', | |
'java @shBrushJava.js', | |
'jfx javafx @shBrushJavaFX.js', | |
'js jscript javascript @shBrushJScript.js', | |
'perl pl @shBrushPerl.js', | |
'php @shBrushPhp.js', | |
'text plain @shBrushPlain.js', | |
'py python @shBrushPython.js', | |
'ruby rails ror rb @shBrushRuby.js', | |
'sass scss @shBrushSass.js', | |
'scala @shBrushScala.js', | |
'sql @shBrushSql.js', | |
'vb vbnet @shBrushVb.js', | |
'xml xhtml xslt html @shBrushXml.js' | |
)); | |
</script> | |
<title>BBoard Demo Board</title> | |
</head> | |
<body> | |
<div id="dialog-ext" title="Do you Want to leave This Page?"> | |
<p> | |
<span class="ui-icon ui-icon-alert" style="float:left; margin:0 7px 20px 0;"></span> | |
You Have Clicked a External Liink. Do you realy want to leave? | |
</p> | |
</div> | |
<div id="wrapper"> | |
<div id="header"> | |
</div> | |
<div id="main"> | |
</div> | |
<script type="text/javascript"> | |
SyntaxHighlighter.all(); | |
</script> | |
<div id="footer"> | |
<span class="footspn">BBoard v0.0.0.1 © <a href="http://vannesssoftware.com">Vijay Vanness</a> 2011 | <a href="?action=login">Login</a> | <a href="?action=register">Register</a> | it is Currently 22/06/11 at 02:45:36 | This Page took 0 seconds to render | Theme By <a href="http://forrst.me/Sadin">Zachary Snyder</a></span> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment