diff --git a/_layouts/default.html b/_layouts/default.html index 1f28c2b..4050c56 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -9,16 +9,16 @@ {{ content }} diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..f617ced --- /dev/null +++ b/contact.html @@ -0,0 +1,15 @@ +--- +title: Zeta Reticuli Gameworks +layout: default +--- + + +
+

+ Contact Information +

+
+

Email: wpb@zrgameworks.com

+

IRC: irc.ouch.chat #zrgameworks

+
+ diff --git a/games/homicidium.md b/games/homicidium.md index 53f5a48..a8b5c7a 100644 --- a/games/homicidium.md +++ b/games/homicidium.md @@ -5,4 +5,15 @@ layout: default # homidicum -An fast paced FPS inspired by 90s boomer shooters \ No newline at end of file +An fast paced FPS inspired by 90s boomer shooters + + +{% highlight cpp linenos %} +void GDExample::_process(double delta) { + time_passed += delta; + + Vector2 new_position = Vector2(10.0 + (100.0 * sin(time_passed * 20.0)), 100.0 + (10.0 * cos(time_passed * 1.5))); + + set_position(new_position); +} +{% endhighlight %} \ No newline at end of file diff --git a/index.html b/index.html index deda9c3..836a998 100644 --- a/index.html +++ b/index.html @@ -11,7 +11,7 @@ layout: default
-
+
homicidium diff --git a/static/img/blooddrip.png b/static/img/blooddrip.png index 99e0b66..7ed8203 100644 Binary files a/static/img/blooddrip.png and b/static/img/blooddrip.png differ diff --git a/static/style.css b/static/style.css index 88ea041..c7eee8e 100644 --- a/static/style.css +++ b/static/style.css @@ -10,14 +10,21 @@ body { text-align: center; background-image: url("/static/img/blooddrip.png"); background-repeat: no-repeat; - background-attachment: fixed; background-size: 75%; background-position: 150% 0%; } nav { + display: flex; + justify-content: center; text-align: center; margin: 0 0 5rem 0; + background-color: rgba(10,10,10,0.25); +} + +nav a { + font-size: 2.5rem; + margin: 0 2rem 0 2rem; } a { @@ -29,9 +36,8 @@ a:hover { color: green; } -nav a { - font-size: 2.5rem; - margin: 0 2rem 0 2rem; +.current { + color: green; } hr { @@ -48,9 +54,95 @@ hr { } .title { - display: block; margin: auto; - width: 25%; + width: 100%; height: auto; padding: 2rem; -} \ No newline at end of file +} + +.panel { + background-color: rgba(10,10,10,0.25); + display: flex; + flex-direction: column; + justify-content: center; + text-align: center; + width: 50%; + margin: 2rem auto 2rem auto; + text-align: left; + font-size: 2rem; +} + +.highlight { + text-align: left; +} + +.highlight pre { background-color: #222222 } +.highlight .hll { background-color: #222222 } +.highlight .c { color: #000080 } /* Comment */ +.highlight .err { color: #cccccc; border: 1px solid #FF0000 } /* Error */ +.highlight .g { color: #cccccc } /* Generic */ +.highlight .k { color: #cdcd00 } /* Keyword */ +.highlight .l { color: #cccccc } /* Literal */ +.highlight .n { color: #cccccc } /* Name */ +.highlight .o { color: #3399cc } /* Operator */ +.highlight .x { color: #cccccc } /* Other */ +.highlight .p { color: #cccccc } /* Punctuation */ +.highlight .cm { color: #000080 } /* Comment.Multiline */ +.highlight .cp { color: #000080 } /* Comment.Preproc */ +.highlight .c1 { color: #000080 } /* Comment.Single */ +.highlight .cs { color: #cd0000; font-weight: bold } /* Comment.Special */ +.highlight .gd { color: #cd0000 } /* Generic.Deleted */ +.highlight .ge { color: #cccccc; font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00cd00 } /* Generic.Inserted */ +.highlight .go { color: #808080 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { color: #cccccc; font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0040D0 } /* Generic.Traceback */ +.highlight .kc { color: #cdcd00 } /* Keyword.Constant */ +.highlight .kd { color: #00cd00 } /* Keyword.Declaration */ +.highlight .kn { color: #cd00cd } /* Keyword.Namespace */ +.highlight .kp { color: #cdcd00 } /* Keyword.Pseudo */ +.highlight .kr { color: #cdcd00 } /* Keyword.Reserved */ +.highlight .kt { color: #00cd00 } /* Keyword.Type */ +.highlight .ld { color: #cccccc } /* Literal.Date */ +.highlight .m { color: #cd00cd } /* Literal.Number */ +.highlight .s { color: #cd0000 } /* Literal.String */ +.highlight .na { color: #cccccc } /* Name.Attribute */ +.highlight .nb { color: #cd00cd } /* Name.Builtin */ +.highlight .nc { color: #00cdcd } /* Name.Class */ +.highlight .no { color: #cccccc } /* Name.Constant */ +.highlight .nd { color: #cccccc } /* Name.Decorator */ +.highlight .ni { color: #cccccc } /* Name.Entity */ +.highlight .ne { color: #666699; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #cccccc } /* Name.Function */ +.highlight .nl { color: #cccccc } /* Name.Label */ +.highlight .nn { color: #cccccc } /* Name.Namespace */ +.highlight .nx { color: #cccccc } /* Name.Other */ +.highlight .py { color: #cccccc } /* Name.Property */ +.highlight .nt { color: #cccccc } /* Name.Tag */ +.highlight .nv { color: #00cdcd } /* Name.Variable */ +.highlight .ow { color: #cdcd00 } /* Operator.Word */ +.highlight .w { color: #cccccc } /* Text.Whitespace */ +.highlight .mf { color: #cd00cd } /* Literal.Number.Float */ +.highlight .mh { color: #cd00cd } /* Literal.Number.Hex */ +.highlight .mi { color: #cd00cd } /* Literal.Number.Integer */ +.highlight .mo { color: #cd00cd } /* Literal.Number.Oct */ +.highlight .sb { color: #cd0000 } /* Literal.String.Backtick */ +.highlight .sc { color: #cd0000 } /* Literal.String.Char */ +.highlight .sd { color: #cd0000 } /* Literal.String.Doc */ +.highlight .s2 { color: #cd0000 } /* Literal.String.Double */ +.highlight .se { color: #cd0000 } /* Literal.String.Escape */ +.highlight .sh { color: #cd0000 } /* Literal.String.Heredoc */ +.highlight .si { color: #cd0000 } /* Literal.String.Interpol */ +.highlight .sx { color: #cd0000 } /* Literal.String.Other */ +.highlight .sr { color: #cd0000 } /* Literal.String.Regex */ +.highlight .s1 { color: #cd0000 } /* Literal.String.Single */ +.highlight .ss { color: #cd0000 } /* Literal.String.Symbol */ +.highlight .bp { color: #cd00cd } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #00cdcd } /* Name.Variable.Class */ +.highlight .vg { color: #00cdcd } /* Name.Variable.Global */ +.highlight .vi { color: #00cdcd } /* Name.Variable.Instance */ +.highlight .il { color: #cd00cd } /* Literal.Number.Integer.Long */