User:Dereckson/timeless.css

From Nasqueron Agora
Revision as of 15:35, 29 August 2026 by Dereckson (talk | contribs) (Qwen older experiment)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/*  -------------------------------------------------------------
    T-rex and mountains are better than cats - content background
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -    */

#mw-content-container {
	background-image: url(https://windriver.nasqueron.org/~dereckson/gfx/svg/t-rex-complete.svg) !important;
	background-position: 30em 10em !important;
	background-repeat: no-repeat !important;
}

/*  -------------------------------------------------------------
    Tiles
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -    */

.tiles {
  grid-template-columns: 100px 50px 100px;
  grid-template-rows: 80px auto 80px; 
  column-gap: 10px;
  row-gap: 15px;
}

/* === Nasqueron Timeless Skin Theme === */

:root {
    /* Palette Tokens */
    --nk-mountain-fig: #383C49;
    --nk-deep-sea: #376167;
    --nk-stolen-kiss: #813235;
    --nk-little-blue: #8AC5BA;
    
    /* Light Mode Defaults */
    --nk-grenadine: #C2555D;
    --bg-primary: #F9F9F7;
    --bg-surface: #FFFFFF;
    --text-primary: var(--nk-mountain-fig);
    --text-secondary: #5A6072;
    --accent-primary: var(--nk-grenadine);
    --border-color: #E5E5E2;
}

@media (prefers-color-scheme: dark) {
    :root {
        --nk-grenadine: #E5868E;
        --bg-primary: #242730;
        --bg-surface: #383C49;
        --text-primary: #F2F4F5;
        --text-secondary: #A9B0C2;
        --accent-primary: var(--nk-grenadine);
        --border-color: #4B5162;
    }
}

/* Global Typography & Reset */
body, #mw-wrapper {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Content Area */
.mw-body, .parsoid-body {
    background-color: var(--bg-surface) !important;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

/* Headings (Typographic Hierarchy) */
.mw-body h1, .mw-body h2, .mw-heading1, .mw-heading2 {
    color: var(--nk-deep-sea) !important;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.mw-body h3, .mw-body h4 {
    color: var(--text-primary) !important;
    font-weight: 600;
}

/* Links & Interactivity */
a { color: var(--accent-primary) !important; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--nk-stolen-kiss) !important; text-decoration: underline; }
a.new { color: #B22222 !important; } /* Uncreated pages */

/* Navigation & Sidebars */
#site-navigation, #other-languages, #page-tools {
    background-color: var(--bg-surface);
    border-right: 1px solid var(--border-color);
}
#site-navigation h3, #page-tools h3 {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Top Personal Tools & Search */
#personal {
    background-color: var(--bg-surface) !important;
    border-bottom: 1px solid var(--border-color);
}
#simpleSearch {
    background-color: var(--bg-primary) !important;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}
#simpleSearch #searchInput {
    color: var(--text-primary);
}

/* Buttons (Material Honesty) */
.mw-ui-button, .mw-ui-button.mw-ui-progressive {
    background-color: var(--accent-primary) !important;
    border: 1px solid var(--accent-primary) !important;
    color: #FFFFFF !important;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(194, 85, 93, 0.1);
}
.mw-ui-button:hover {
    background-color: var(--nk-stolen-kiss) !important;
    border-color: var(--nk-stolen-kiss) !important;
    box-shadow: 0 4px 8px rgba(129, 50, 53, 0.2);
}
.mw-ui-button:active {
    transform: translateY(1px);
}