diff options
| author | Colleen <[email protected]> | 2023-01-22 15:07:06 -0400 |
|---|---|---|
| committer | Colleen <[email protected]> | 2023-01-22 15:07:06 -0400 |
| commit | 86c1e798f0d7a4c15c88cf6c7b7e74cd834418cf (patch) | |
| tree | 8c89d297266acc8740264154eb57dc341e721746 | |
| parent | a9307d5e49a76e435529d662ca07470abd70c723 (diff) | |
| download | raylib.com-86c1e798f0d7a4c15c88cf6c7b7e74cd834418cf.tar.gz raylib.com-86c1e798f0d7a4c15c88cf6c7b7e74cd834418cf.zip | |
Fixed anchor name clash for id "platforms".
| -rw-r--r-- | common/main.css | 8 | ||||
| -rw-r--r-- | index.html | 2 |
2 files changed, 9 insertions, 1 deletions
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; @@ -98,7 +98,7 @@ </div> </div> <br> - <h2 id="platforms"><a class="anchor-link" href="#platforms"></a>raylib supported platforms</h2> + <h2 id="supported-platforms"><a class="anchor-link" href="#supported-platforms"></a>raylib supported platforms</h2> <br> <p>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.</p> <br> |
