Added new asciinema stack for self-hosted terminal recording and sharing platform with custom "Pivoine" theme inspired by pivoine.art aesthetic. New Services: - **asciinema**: Terminal recording server at asciinema.pivoine.art - PostgreSQL backend for recording persistence - Email authentication via IONOS SMTP magic links - Public/private recording visibility controls - Embed recordings on any website - Custom rose/magenta themed UI Custom Theme (asciinema/theme/custom.css): - Primary color: RGB(206, 39, 91) - Deep rose/magenta - Dark charcoal backgrounds: HSL(0, 0%, 17.5%) - High contrast design with bold color accents - Styled components: navigation, cards, forms, buttons, terminal player - Smooth animations and hover effects - Responsive design with mobile breakpoints - Custom scrollbars, selection colors, loading states Infrastructure Updates: - PostgreSQL: Added `asciinema` database to init script - arty.yml: Added ASCIINEMA_* environment variables - compose.yaml: Included asciinema stack in root composition - CLAUDE.md: Comprehensive documentation with CLI setup guide - Backup: Added asciinema-backup plan (11 AM daily, 7d/4w/6m/2y retention) Configuration: - URL: https://asciinema.pivoine.art - Database: PostgreSQL `asciinema` database - SMTP: Email auth via IONOS SMTP - Unclaimed TTL: 30 days (auto-cleanup) - Secret: Generated 64-char hex key in .env Features: - Record terminal sessions with asciinema CLI - Web player with play/pause controls and speed adjustment - User profiles with personal recording collections - Embed recordings via iframe or direct links - Privacy controls (public/private recordings) - Automatic cleanup of unclaimed recordings Integration Points: - Documentation: Embed terminal demos - Blog posts: Share command-line tutorials - GitHub: Link recordings in README files - Tutorials: Interactive terminal walkthroughs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
415 lines
9.4 KiB
CSS
415 lines
9.4 KiB
CSS
/**
|
|
* Asciinema Custom Theme - "Pivoine"
|
|
* Inspired by pivoine.art aesthetic
|
|
*
|
|
* Color Palette:
|
|
* - Primary Accent: RGB(206, 39, 91) - Deep rose/magenta
|
|
* - Dark Background: HSL(0, 0%, 17.5%) - Charcoal
|
|
* - High contrast with bold color pops
|
|
*/
|
|
|
|
:root {
|
|
/* Pivoine Color Palette */
|
|
--pivoine-rose: rgb(206, 39, 91);
|
|
--pivoine-rose-light: rgb(226, 79, 121);
|
|
--pivoine-rose-dark: rgb(166, 19, 71);
|
|
--pivoine-rose-fade: rgba(206, 39, 91, 0.15);
|
|
--pivoine-rose-glow: rgba(206, 39, 91, 0.3);
|
|
|
|
/* Dark Mode Charcoal */
|
|
--pivoine-bg-dark: hsl(0, 0%, 17.5%);
|
|
--pivoine-bg-darker: hsl(0, 0%, 12%);
|
|
--pivoine-bg-lighter: hsl(0, 0%, 22%);
|
|
--pivoine-border: hsl(0, 0%, 25%);
|
|
|
|
/* Text Colors */
|
|
--pivoine-text-primary: hsl(0, 0%, 95%);
|
|
--pivoine-text-secondary: hsl(0, 0%, 75%);
|
|
--pivoine-text-muted: hsl(0, 0%, 55%);
|
|
|
|
/* Accent Variants */
|
|
--pivoine-success: rgb(16, 185, 129);
|
|
--pivoine-warning: rgb(245, 158, 11);
|
|
--pivoine-info: rgb(59, 130, 246);
|
|
}
|
|
|
|
/* Global Styling */
|
|
body {
|
|
background-color: var(--pivoine-bg-dark) !important;
|
|
color: var(--pivoine-text-primary) !important;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif !important;
|
|
}
|
|
|
|
/* Header & Navigation */
|
|
header,
|
|
.header,
|
|
nav {
|
|
background-color: var(--pivoine-bg-darker) !important;
|
|
border-bottom: 2px solid var(--pivoine-rose) !important;
|
|
}
|
|
|
|
.navbar,
|
|
.nav-link {
|
|
color: var(--pivoine-text-primary) !important;
|
|
}
|
|
|
|
.nav-link:hover,
|
|
.nav-link:focus {
|
|
color: var(--pivoine-rose-light) !important;
|
|
background-color: var(--pivoine-rose-fade) !important;
|
|
border-radius: 4px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
/* Primary Buttons & Links */
|
|
a {
|
|
color: var(--pivoine-rose-light) !important;
|
|
text-decoration: none;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
a:hover,
|
|
a:focus {
|
|
color: var(--pivoine-rose) !important;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
button,
|
|
.btn,
|
|
input[type="submit"] {
|
|
background-color: var(--pivoine-rose) !important;
|
|
color: white !important;
|
|
border: none !important;
|
|
border-radius: 6px !important;
|
|
padding: 8px 16px !important;
|
|
font-weight: 600 !important;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
button:hover,
|
|
.btn:hover,
|
|
input[type="submit"]:hover {
|
|
background-color: var(--pivoine-rose-light) !important;
|
|
box-shadow: 0 4px 8px var(--pivoine-rose-glow);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
button:active,
|
|
.btn:active,
|
|
input[type="submit"]:active {
|
|
transform: translateY(0);
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
/* Cards & Containers */
|
|
.card,
|
|
.panel,
|
|
.container,
|
|
.recording-item,
|
|
article {
|
|
background-color: var(--pivoine-bg-lighter) !important;
|
|
border: 1px solid var(--pivoine-border) !important;
|
|
border-radius: 8px !important;
|
|
padding: 16px !important;
|
|
margin-bottom: 16px !important;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.card:hover,
|
|
.recording-item:hover {
|
|
border-color: var(--pivoine-rose) !important;
|
|
box-shadow: 0 4px 12px var(--pivoine-rose-glow);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
/* Forms & Inputs */
|
|
input[type="text"],
|
|
input[type="email"],
|
|
input[type="password"],
|
|
input[type="search"],
|
|
textarea,
|
|
select {
|
|
background-color: var(--pivoine-bg-darker) !important;
|
|
color: var(--pivoine-text-primary) !important;
|
|
border: 2px solid var(--pivoine-border) !important;
|
|
border-radius: 6px !important;
|
|
padding: 10px 14px !important;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
input:focus,
|
|
textarea:focus,
|
|
select:focus {
|
|
outline: none !important;
|
|
border-color: var(--pivoine-rose) !important;
|
|
box-shadow: 0 0 0 3px var(--pivoine-rose-fade);
|
|
}
|
|
|
|
/* Terminal Player */
|
|
.asciinema-player,
|
|
.player-wrapper,
|
|
.terminal {
|
|
background-color: var(--pivoine-bg-darker) !important;
|
|
border: 2px solid var(--pivoine-rose) !important;
|
|
border-radius: 8px !important;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.asciinema-player .control-bar {
|
|
background-color: var(--pivoine-bg-dark) !important;
|
|
border-top: 1px solid var(--pivoine-border) !important;
|
|
}
|
|
|
|
.asciinema-player .play-button,
|
|
.asciinema-player button {
|
|
color: var(--pivoine-rose) !important;
|
|
}
|
|
|
|
.asciinema-player .play-button:hover,
|
|
.asciinema-player button:hover {
|
|
color: var(--pivoine-rose-light) !important;
|
|
}
|
|
|
|
.asciinema-player .progressbar {
|
|
background-color: var(--pivoine-border) !important;
|
|
}
|
|
|
|
.asciinema-player .progressbar .bar {
|
|
background-color: var(--pivoine-rose) !important;
|
|
}
|
|
|
|
/* Recording Metadata */
|
|
.recording-meta,
|
|
.info,
|
|
.metadata {
|
|
color: var(--pivoine-text-secondary) !important;
|
|
font-size: 0.9em;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.recording-meta strong,
|
|
.metadata .label {
|
|
color: var(--pivoine-rose-light) !important;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Tags & Badges */
|
|
.tag,
|
|
.badge,
|
|
.label {
|
|
background-color: var(--pivoine-rose-fade) !important;
|
|
color: var(--pivoine-rose-light) !important;
|
|
border: 1px solid var(--pivoine-rose) !important;
|
|
border-radius: 4px !important;
|
|
padding: 4px 10px !important;
|
|
font-size: 0.85em;
|
|
font-weight: 600;
|
|
display: inline-block;
|
|
margin: 4px 4px 4px 0;
|
|
}
|
|
|
|
/* Tables */
|
|
table {
|
|
background-color: var(--pivoine-bg-lighter) !important;
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
thead {
|
|
background-color: var(--pivoine-bg-darker) !important;
|
|
border-bottom: 2px solid var(--pivoine-rose) !important;
|
|
}
|
|
|
|
th {
|
|
color: var(--pivoine-rose-light) !important;
|
|
font-weight: 700;
|
|
padding: 12px !important;
|
|
text-align: left;
|
|
}
|
|
|
|
td {
|
|
color: var(--pivoine-text-primary) !important;
|
|
padding: 10px 12px !important;
|
|
border-bottom: 1px solid var(--pivoine-border) !important;
|
|
}
|
|
|
|
tr:hover {
|
|
background-color: var(--pivoine-rose-fade) !important;
|
|
}
|
|
|
|
/* Pagination */
|
|
.pagination a,
|
|
.pagination span {
|
|
background-color: var(--pivoine-bg-lighter) !important;
|
|
color: var(--pivoine-text-primary) !important;
|
|
border: 1px solid var(--pivoine-border) !important;
|
|
border-radius: 4px !important;
|
|
padding: 6px 12px !important;
|
|
margin: 0 4px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.pagination a:hover {
|
|
background-color: var(--pivoine-rose) !important;
|
|
border-color: var(--pivoine-rose) !important;
|
|
color: white !important;
|
|
}
|
|
|
|
.pagination .current {
|
|
background-color: var(--pivoine-rose) !important;
|
|
border-color: var(--pivoine-rose) !important;
|
|
color: white !important;
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
background-color: var(--pivoine-bg-darker) !important;
|
|
border-top: 2px solid var(--pivoine-rose) !important;
|
|
color: var(--pivoine-text-secondary) !important;
|
|
padding: 24px 0 !important;
|
|
margin-top: 48px;
|
|
}
|
|
|
|
/* Code Blocks */
|
|
pre,
|
|
code {
|
|
background-color: var(--pivoine-bg-darker) !important;
|
|
color: var(--pivoine-text-primary) !important;
|
|
border: 1px solid var(--pivoine-border) !important;
|
|
border-radius: 4px !important;
|
|
padding: 12px !important;
|
|
font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace !important;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
/* Alerts & Messages */
|
|
.alert,
|
|
.message,
|
|
.notice {
|
|
border-radius: 6px !important;
|
|
padding: 12px 16px !important;
|
|
margin: 16px 0 !important;
|
|
border-left: 4px solid;
|
|
}
|
|
|
|
.alert-success,
|
|
.message-success {
|
|
background-color: rgba(16, 185, 129, 0.15) !important;
|
|
border-left-color: var(--pivoine-success) !important;
|
|
color: var(--pivoine-success) !important;
|
|
}
|
|
|
|
.alert-warning,
|
|
.message-warning {
|
|
background-color: rgba(245, 158, 11, 0.15) !important;
|
|
border-left-color: var(--pivoine-warning) !important;
|
|
color: var(--pivoine-warning) !important;
|
|
}
|
|
|
|
.alert-info,
|
|
.message-info {
|
|
background-color: rgba(59, 130, 246, 0.15) !important;
|
|
border-left-color: var(--pivoine-info) !important;
|
|
color: var(--pivoine-info) !important;
|
|
}
|
|
|
|
.alert-error,
|
|
.message-error {
|
|
background-color: var(--pivoine-rose-fade) !important;
|
|
border-left-color: var(--pivoine-rose) !important;
|
|
color: var(--pivoine-rose-light) !important;
|
|
}
|
|
|
|
/* User Profile */
|
|
.avatar,
|
|
.user-avatar {
|
|
border: 3px solid var(--pivoine-rose) !important;
|
|
border-radius: 50% !important;
|
|
box-shadow: 0 2px 8px var(--pivoine-rose-glow);
|
|
}
|
|
|
|
/* Loading States */
|
|
.spinner,
|
|
.loading {
|
|
border-color: var(--pivoine-border) !important;
|
|
border-top-color: var(--pivoine-rose) !important;
|
|
}
|
|
|
|
/* Scrollbar Styling */
|
|
::-webkit-scrollbar {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: var(--pivoine-bg-dark);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: var(--pivoine-border);
|
|
border-radius: 6px;
|
|
border: 2px solid var(--pivoine-bg-dark);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background-color: var(--pivoine-rose);
|
|
}
|
|
|
|
/* Selection */
|
|
::selection {
|
|
background-color: var(--pivoine-rose-glow) !important;
|
|
color: white !important;
|
|
}
|
|
|
|
::-moz-selection {
|
|
background-color: var(--pivoine-rose-glow) !important;
|
|
color: white !important;
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 768px) {
|
|
.card,
|
|
.panel,
|
|
.container {
|
|
padding: 12px !important;
|
|
}
|
|
|
|
button,
|
|
.btn {
|
|
padding: 6px 12px !important;
|
|
font-size: 0.9em !important;
|
|
}
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes pivoine-pulse {
|
|
0%, 100% {
|
|
box-shadow: 0 0 0 0 var(--pivoine-rose-glow);
|
|
}
|
|
50% {
|
|
box-shadow: 0 0 0 8px rgba(206, 39, 91, 0);
|
|
}
|
|
}
|
|
|
|
.recording-item:hover,
|
|
.card:hover {
|
|
animation: pivoine-pulse 2s ease-in-out infinite;
|
|
}
|
|
|
|
/* Logo & Branding */
|
|
.logo {
|
|
filter: brightness(0) saturate(100%) invert(47%) sepia(74%) saturate(1845%) hue-rotate(319deg) brightness(93%) contrast(87%);
|
|
}
|
|
|
|
/* Custom Highlight */
|
|
mark,
|
|
.highlight {
|
|
background-color: var(--pivoine-rose-fade) !important;
|
|
color: var(--pivoine-rose-light) !important;
|
|
padding: 2px 6px;
|
|
border-radius: 3px;
|
|
}
|