aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-02-10 13:43:25 +0100
committerraysan5 <raysan5@gmail.com>2016-02-10 13:43:25 +0100
commitd4eeb0097f4f2fdbbd3d9ec1e2411d7b67d9e24d (patch)
treefd09749837e738e8aeb385f888fce192a8661a92
parentb70ffd2cf1a17da454c941371c2c8153f59e0db6 (diff)
downloadraylib-d4eeb0097f4f2fdbbd3d9ec1e2411d7b67d9e24d.tar.gz
raylib-d4eeb0097f4f2fdbbd3d9ec1e2411d7b67d9e24d.zip
Added icons: patreon and reddit
-rw-r--r--css/main.css4
-rw-r--r--examples.htm2
-rw-r--r--games.htm4
-rw-r--r--helpme.htm2
-rw-r--r--img/icon_patreon.pngbin0 -> 3269 bytes
-rw-r--r--img/icon_reddit.pngbin0 -> 3158 bytes
-rw-r--r--index.htm2
-rw-r--r--license.htm9
-rw-r--r--src/libraylib.abin0 -> 997970 bytes
9 files changed, 18 insertions, 5 deletions
diff --git a/css/main.css b/css/main.css
index 5eaef0b3..93d5c383 100644
--- a/css/main.css
+++ b/css/main.css
@@ -61,9 +61,11 @@ p a:hover{text-decoration: none; color:gray;}
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#e0e0e0',GradientType=0 );
}
-#social{ width:160px; height:50px; position:relative; float:right; margin-right:8px; margin-top:20px; margin-bottom:20px; }
+#social{ width:220px; height:50px; position:relative; float:right; margin-right:8px; margin-top:20px; margin-bottom:20px; }
#social a:hover{ background-position: 0 -36px;}
#twitch{ width:36px; height:36px; float:left; position:relative; background-image: url(../img/icon_twitch.png); cursor: pointer; background-repeat:no-repeat; background-position: 0 0;}
+#patreon{ width:36px; height:36px; float:left; position:relative; background-image: url(../img/icon_patreon.png); cursor: pointer; background-repeat:no-repeat; background-position: 0 0;}
+#reddit{ width:36px; height:36px; float:left; position:relative; background-image: url(../img/icon_reddit.png); cursor: pointer; background-repeat:no-repeat; background-position: 0 0;}
#facebook{ width:36px; height:36px; float:left; position:relative; background-image: url(../img/icon_facebook.png); cursor: pointer; background-repeat:no-repeat; background-position: 0 0;}
#twitter{ width:36px; height:36px; float:left; position:relative; background-image: url(../img/icon_twitter.png); cursor: pointer; background-repeat:no-repeat; background-position: 0 0;}
#github{ width:36px; height:36px; float:left; position:relative; background-image: url(../img/icon_github.png); cursor: pointer; background-repeat:no-repeat; background-position: 0 0;}
diff --git a/examples.htm b/examples.htm
index d7b0d313..1fd9f449 100644
--- a/examples.htm
+++ b/examples.htm
@@ -40,7 +40,9 @@
<div class="header">
<a id="logo" href="index.htm"></a>
<div id="social">
+ <a id="patreon" href="https://www.patreon.com/raysan5" target="_blank"></a>
<a id="twitch" href="http://www.twitch.tv/raysan5" target="_blank"></a>
+ <a id="reddit" href="https://www.reddit.com/r/raylib/" target="_blank"></a>
<a id="facebook" href="http://www.facebook.com/raylibgames" target="_blank"></a>
<a id="twitter" href="http://www.twitter.com/raysan5" target="_blank"></a>
<a id="github" href="http://github.com/raysan5/raylib" target="_blank"></a>
diff --git a/games.htm b/games.htm
index aad18e67..fc27505b 100644
--- a/games.htm
+++ b/games.htm
@@ -40,7 +40,9 @@
<div class="header">
<a id="logo" href="index.htm"></a>
<div id="social">
- <a id="twitch" href="http://www.twitch.tv/raysan5" target="_blank"></a>
+ <a id="patreon" href="https://www.patreon.com/raysan5" target="_blank"></a>
+ <a id="twitch" href="http://www.twitch.tv/raysan5" target="_blank"></a>
+ <a id="reddit" href="https://www.reddit.com/r/raylib/" target="_blank"></a>
<a id="facebook" href="http://www.facebook.com/raylibgames" target="_blank"></a>
<a id="twitter" href="http://www.twitter.com/raysan5" target="_blank"></a>
<a id="github" href="http://github.com/raysan5/raylib" target="_blank"></a>
diff --git a/helpme.htm b/helpme.htm
index 92a78835..f1ace4fb 100644
--- a/helpme.htm
+++ b/helpme.htm
@@ -31,7 +31,9 @@
<div class="header">
<a id="logo" href="index.htm"></a>
<div id="social">
+ <a id="patreon" href="https://www.patreon.com/raysan5" target="_blank"></a>
<a id="twitch" href="http://www.twitch.tv/raysan5" target="_blank"></a>
+ <a id="reddit" href="https://www.reddit.com/r/raylib/" target="_blank"></a>
<a id="facebook" href="http://www.facebook.com/raylibgames" target="_blank"></a>
<a id="twitter" href="http://www.twitter.com/raysan5" target="_blank"></a>
<a id="github" href="http://github.com/raysan5/raylib" target="_blank"></a>
diff --git a/img/icon_patreon.png b/img/icon_patreon.png
new file mode 100644
index 00000000..763eb69e
--- /dev/null
+++ b/img/icon_patreon.png
Binary files differ
diff --git a/img/icon_reddit.png b/img/icon_reddit.png
new file mode 100644
index 00000000..da9a4faf
--- /dev/null
+++ b/img/icon_reddit.png
Binary files differ
diff --git a/index.htm b/index.htm
index b6e1c34f..931487c3 100644
--- a/index.htm
+++ b/index.htm
@@ -59,7 +59,9 @@
<div class="header">
<a id="logo" href="index.htm"></a>
<div id="social">
+ <a id="patreon" href="https://www.patreon.com/raysan5" target="_blank"></a>
<a id="twitch" href="http://www.twitch.tv/raysan5" target="_blank"></a>
+ <a id="reddit" href="https://www.reddit.com/r/raylib/" target="_blank"></a>
<a id="facebook" href="http://www.facebook.com/raylibgames" target="_blank"></a>
<a id="twitter" href="http://www.twitter.com/raysan5" target="_blank"></a>
<a id="github" href="http://github.com/raysan5/raylib" target="_blank"></a>
diff --git a/license.htm b/license.htm
index 3b9043ad..72fe1c62 100644
--- a/license.htm
+++ b/license.htm
@@ -31,14 +31,17 @@
<div class="header">
<a id="logo" href="index.htm"></a>
<div id="social">
+ <a id="patreon" href="https://www.patreon.com/raysan5" target="_blank"></a>
+ <a id="twitch" href="http://www.twitch.tv/raysan5" target="_blank"></a>
+ <a id="reddit" href="https://www.reddit.com/r/raylib/" target="_blank"></a>
<a id="facebook" href="http://www.facebook.com/raylibgames" target="_blank"></a>
<a id="twitter" href="http://www.twitter.com/raysan5" target="_blank"></a>
<a id="github" href="http://github.com/raysan5/raylib" target="_blank"></a>
</div>
<div class="menu">
- <div id="active">about</div>
- <a href="download.htm">download</a>
- <a href="examples.htm">examples</a>
+ <a href="index.htm">about</a>
+ <a href="examples.htm">examples</a>
+ <a href="games.htm">games</a>
<a href="helpme.htm">helpme!</a>
<a id="forum" href="http://forum.raylib.com">forum</a>
</div>
diff --git a/src/libraylib.a b/src/libraylib.a
new file mode 100644
index 00000000..1606a411
--- /dev/null
+++ b/src/libraylib.a
Binary files differ