From 33531d256e24b00e52db6ab7cd011380ff3d9183 Mon Sep 17 00:00:00 2001 From: Colleen Date: Sun, 22 Jan 2023 14:53:31 -0400 Subject: Updated header. --- license.html | 52 +++++++++++++++++++++++++++------------------------- 1 file changed, 27 insertions(+), 25 deletions(-) diff --git a/license.html b/license.html index 190e3db..2536256 100644 --- a/license.html +++ b/license.html @@ -23,35 +23,37 @@ -
- - +
-
- - - - - - - - - - - -
- - +
+
+
license

-- cgit v1.2.3 From a9307d5e49a76e435529d662ca07470abd70c723 Mon Sep 17 00:00:00 2001 From: Colleen Date: Sun, 22 Jan 2023 14:55:35 -0400 Subject: Page div now has height of 'fit-content'. --- common/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/main.css b/common/main.css index 57d929b..984cdd4 100644 --- a/common/main.css +++ b/common/main.css @@ -81,7 +81,7 @@ h2 { .page { width: min(var(--content-width), 100vw); - min-height: 100vh; + min-height: fit-content; margin: 0 auto; padding-top: 128px; -- cgit v1.2.3 From 86c1e798f0d7a4c15c88cf6c7b7e74cd834418cf Mon Sep 17 00:00:00 2001 From: Colleen Date: Sun, 22 Jan 2023 15:07:06 -0400 Subject: Fixed anchor name clash for id "platforms". --- common/main.css | 8 ++++++++ index.html | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/common/main.css b/common/main.css index 984cdd4..5433163 100644 --- a/common/main.css +++ b/common/main.css @@ -79,6 +79,14 @@ h2 { line-height: 24px; } +h2::before { + content: ''; + display: block; + width: 100%; + height: 144px; + margin: -144px 0px 0px; +} + .page { width: min(var(--content-width), 100vw); min-height: fit-content; diff --git a/index.html b/index.html index 74be9e9..8398646 100644 --- a/index.html +++ b/index.html @@ -98,7 +98,7 @@

-

raylib supported platforms

+

raylib supported platforms


raylib supports multiple target platforms, it has been tested in the following ones but, technically, any platform that supports C language and OpenGL graphics (or similar) can run raylib or it can be very easily ported to.


-- cgit v1.2.3 From dfb039a08dc411b51c5daa26df125ff98de7724d Mon Sep 17 00:00:00 2001 From: Colleen Date: Sun, 22 Jan 2023 15:11:24 -0400 Subject: Fixed anchor URL scrolling "overshooting" past navigation bar. Cleaned up CSS. --- common/main.css | 1 - 1 file changed, 1 deletion(-) diff --git a/common/main.css b/common/main.css index 5433163..fd6b131 100644 --- a/common/main.css +++ b/common/main.css @@ -94,7 +94,6 @@ h2::before { padding-top: 128px; background-color: #f5f5f5; - /* border: 2px solid #c8c8c8; */ display: flex; flex-direction: column; -- cgit v1.2.3 From f89d3a91fb184e516291cc24f0b13ab3b1171e6f Mon Sep 17 00:00:00 2001 From: Colleen Date: Sun, 22 Jan 2023 15:43:36 -0400 Subject: Updated platform icons. --- common/img/icon_discord.png | Bin 1456 -> 1094 bytes common/img/icon_twitch.png | Bin 2195 -> 628 bytes common/img/icon_twitter.png | Bin 969 -> 913 bytes images/contribute/patreon.png | Bin 3584 -> 1889 bytes images/networks/discord.png | Bin 2316 -> 2903 bytes images/networks/twitch.png | Bin 1062 -> 2082 bytes images/networks/twitter.png | Bin 2243 -> 2682 bytes 7 files changed, 0 insertions(+), 0 deletions(-) diff --git a/common/img/icon_discord.png b/common/img/icon_discord.png index f6e4d5f..4268543 100644 Binary files a/common/img/icon_discord.png and b/common/img/icon_discord.png differ diff --git a/common/img/icon_twitch.png b/common/img/icon_twitch.png index 4d27579..7e2f42b 100644 Binary files a/common/img/icon_twitch.png and b/common/img/icon_twitch.png differ diff --git a/common/img/icon_twitter.png b/common/img/icon_twitter.png index da59d1c..5a26ac8 100644 Binary files a/common/img/icon_twitter.png and b/common/img/icon_twitter.png differ diff --git a/images/contribute/patreon.png b/images/contribute/patreon.png index be98c68..a20b1ef 100644 Binary files a/images/contribute/patreon.png and b/images/contribute/patreon.png differ diff --git a/images/networks/discord.png b/images/networks/discord.png index 8bcb657..d687925 100644 Binary files a/images/networks/discord.png and b/images/networks/discord.png differ diff --git a/images/networks/twitch.png b/images/networks/twitch.png index a13094c..e935b70 100644 Binary files a/images/networks/twitch.png and b/images/networks/twitch.png differ diff --git a/images/networks/twitter.png b/images/networks/twitter.png index 3fc6555..2becee9 100644 Binary files a/images/networks/twitter.png and b/images/networks/twitter.png differ -- cgit v1.2.3