Kitchen Sink — Every Ghost Element
Typography and Text Styles
This post demonstrates every Ghost editor element as rendered through the GameDock theme. Use this as a reference for how content appears on the site.
Headings Hierarchy
The GameDock theme uses Press Start 2P for all headings, creating a distinctive pixel-art aesthetic. Body text uses Inter for readability.
Fourth Level Heading
Fourth through sixth level headings share the same size (0.875rem) but can be used for semantic hierarchy.
Fifth Level Heading
Use h5 for nested subsections within h4 blocks.
Sixth Level Heading
Rarely used, but available for deep document structures.
Inline Text Formatting
The following paragraph demonstrates inline formatting: bold text stands out, italic text adds emphasis, and bold italic combines both. You can also use inline code for technical terms, hyperlinks for references, and strikethrough for deprecated information.
Lists
Unordered List
- Puzzle games test your logic and problem-solving skills
- Arcade games deliver fast-paced action and high score chasing
- Side-scrolling runners
- Top-down shooters
- Classic remakes with modern twists
- Strategy games require careful planning and resource management
- Quiz games challenge your knowledge across many topics
Ordered List
- Create a free GameDock account
- Browse the game catalog by category
- Play your first game to start your streak
- Select a game from the grid
- Read the instructions
- Click Play to begin
- Come back tomorrow to keep your streak alive
- Upgrade to Premium for exclusive games
Blockquotes
The best games are the ones that keep you coming back day after day. GameDock makes that happen with streak tracking and daily challenges.
Browser gaming has evolved dramatically. What started with simple Flash games has become a legitimate platform for sophisticated interactive experiences.
With WebGPU and WebAssembly, the browser is now capable of running games that rival native applications in both graphics quality and performance.
Table
| Game | Category | Difficulty | Access |
|---|---|---|---|
| Pixel Sudoku | Puzzle | Easy-Expert | Free |
| Neon Runner | Arcade | Medium | Free |
| Chess Tactics | Strategy | Beginner-GM | Free |
| Gaming Trivia | Quiz | Mixed | Free |
| Dungeon Dash | Arcade | Hard | Premium |
| Hex Empire | Strategy | Hard | Premium |
Images
Gallery
Code Blocks
JavaScript
// GameDock Streak API
window.GameDock.completeGame({ slug: 'pixel-sudoku' });
const streak = window.GameDock.getStreak();
console.log(`Current streak: ${streak.count} days`);
// Check member status
const member = window.GameDock.getMember();
if (member) {
console.log(`Welcome back, ${member.name}!`);
}Python
import ghost_admin
# Create a new game page
client = ghost_admin.Client('https://gamedock.kontemi.com')
page = client.pages.create(
title='New Game',
tags=['game', 'puzzle'],
visibility='public',
html=''
)
print(f'Game created: {page.url}')CSS
/* GameDock neon glow effect */
.game-card:hover {
border-color: var(--accent);
box-shadow: 0 0 10px rgba(0, 255, 136, 0.4),
0 0 30px rgba(0, 255, 136, 0.15);
transform: translateY(-4px);
}Callout Cards
Toggle Cards
What games are free?
How does streak tracking work?
Bookmark Card
YouTube Embed
Button Card
That covers all the major Ghost editor elements. If anything looks off, check the theme's CSS and submit a bug report.