Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor image styling, make formatting around images consistent with other text #56

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions docs/reference/secrets.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,15 +139,12 @@
### Admin Secret

> In the client for Geometry Dash 1.9, RobTop mistakenly included the secret for `Admin Endpoints` inside of a function. Admin Endpoints are only accessible for game admins and they make direct changes in-game that affect everyone.

<link rel="stylesheet" href="stylesheets/imageStyles.css">

<center>
**<u>Below is a screenshot of the Admin Secret being created from Geometry Dash 1.9. RobTop split it into 6 segments to <i>obfuscate</i> it.</u>**<br>
<img src="https://raw.githubusercontent.com/Wyliemaster/gddocs/master/assets/screenshots/admin_secret.png" class="admin">
Below is a screenshot of the Admin Secret being created from Geometry Dash 1.9. RobTop split it into 6 segments to obfuscate it.

Currently, the Admin Secret no longer works as RobTop became aware of it
</center>
<img src="https://raw.githubusercontent.com/Wyliemaster/gddocs/master/assets/screenshots/admin_secret.png" class="padded decomp">

Currently, the Admin Secret no longer works as RobTop became aware of it.

<!-- todo: clean-up + explain reasoning clearer-->

Expand Down
11 changes: 2 additions & 9 deletions docs/reference/songs.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,6 @@

## Other Songs

In 2019, Google removed various Geometry Dash clients from their playstore and RobTop accidentally uploaded a development build of update 2.2 when resolving the issue. In the game files, 2 songs could be found, one of which isn't in the final release, that being Firebird by MDK, which, according to RobTop, was not meant to be a real level.

<link rel="stylesheet" href="stylesheets/imageStyles.css">

<center>

**In 2019, Google removed various Geometry Dash clients from their playstore and RobTop accidentally uploaded a development build of update 2.2 when resolving the issue. In the game files, 2 songs could be found, one of which isn't in the final release, that being Firebird by MDK, which, according to RobTop, was not meant to be a real level.**

<img src="https://raw.githubusercontent.com/Wyliemaster/gddocs/master/assets/screenshots/leaked_songs.png" class="admin">

</center>
<img src="https://raw.githubusercontent.com/Wyliemaster/gddocs/master/assets/screenshots/leaked_songs.png" class="padded decomp">
16 changes: 0 additions & 16 deletions docs/stylesheets/imageStyles.css

This file was deleted.

22 changes: 22 additions & 0 deletions docs/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,26 @@ details[open] {

details[open] > *:not(summary) {
margin: 0.5em;
}

img {
border: 2px solid #344640;
border-radius: 7px;

/* center in parent */
display: block;
margin-left: auto;
margin-right: auto;

&.padded {
padding: 10px;

&.alertlayer {
background-color: #001033;
}

&.decomp {
background-color: #2D2D2D;
}
}
}
3 changes: 1 addition & 2 deletions docs/topics/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@

## Colour Tags

<link rel="stylesheet" href="stylesheets/imageStyles.css">
<img src="https://raw.githubusercontent.com/Wyliemaster/gddocs/master/assets/screenshots/colour_tags.png" class="alertlayer">
<img src="https://raw.githubusercontent.com/Wyliemaster/gddocs/master/assets/screenshots/colour_tags.png" class="padded alertlayer">

> Colour Tags are used to style areas of text with colour. They contain both a start and an end tag - the start tag defining which colour should be rendered on screen and the end tag denoting when to stop reading.

Expand Down