diff --git a/aider/website/examples/recording.md b/aider/website/examples/recording.md index 880ac22d6..5e5e2d882 100644 --- a/aider/website/examples/recording.md +++ b/aider/website/examples/recording.md @@ -55,12 +55,38 @@ layout: minimal color: #666; } +/* Toast notification styling */ +.toast-container { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + z-index: 1000; + pointer-events: none; +} + +.toast-notification { + background-color: rgba(0, 0, 0, 0.7); + color: white; + padding: 10px 20px; + border-radius: 8px; + margin-bottom: 10px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); + opacity: 0; + transition: opacity 0.3s ease-in-out; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; + font-size: 16px; + text-align: center; + max-width: 80%; +} + /* Page container styling */ .page-container { max-height: 80vh; max-width: 900px; margin-left: auto; margin-right: auto; + position: relative; } .terminal-container { @@ -68,6 +94,7 @@ layout: minimal overflow: hidden; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); margin-bottom: 20px; + position: relative; } .asciinema-player-theme-aider { /* Foreground (default text) color */ @@ -97,6 +124,7 @@ layout: minimal