Skip to content
Sign Up
Blog

Kitchen Sink — Every Ghost Element

FN 3 min read
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

  1. Create a free GameDock account
  2. Browse the game catalog by category
  3. Play your first game to start your streak
    1. Select a game from the grid
    2. Read the instructions
    3. Click Play to begin
  4. Come back tomorrow to keep your streak alive
  5. 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

GameCategoryDifficultyAccess
Pixel SudokuPuzzleEasy-ExpertFree
Neon RunnerArcadeMediumFree
Chess TacticsStrategyBeginner-GMFree
Gaming TriviaQuizMixedFree
Dungeon DashArcadeHardPremium
Hex EmpireStrategyHardPremium

Images

Retro gaming setup
Gaming panorama
A wide image with caption demonstrating the kg-width-wide class
Full bleed gaming image

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

💡
Tip: Play at least one game per day to maintain your streak. The counter resets at midnight.
⚠️
Warning: Clearing your browser data will reset your streak and game history.
Important: Premium games require an active paid subscription to access.
Success: Your account has been upgraded to Premium! Enjoy all games.

Toggle Cards

What games are free?

About 70% of games on GameDock are free for all users. Free games include most puzzle games, arcade classics, and daily challenges.

How does streak tracking work?

Your streak increments each day you play at least one game. Miss a day and it resets to zero. Streaks are stored locally in your browser.

Bookmark Card

Ghost: The Creator Economy Platform
The world's most popular modern publishing platform for creating a new media platform.

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.