Kullanıcı:Admin/Vector-2022.css

FM Wiki sitesinden
18.36, 6 Aralık 2025 tarihinde Admin (mesaj | katkılar) tarafından oluşturulmuş 551 numaralı sürüm
Gezinti kısmına atla Arama kısmına atla

Not: Yayımladıktan sonra değişiklikleri görmek için tarayıcınızın önbelleğini temizlemeniz gerekebilir.

  • Firefox / Safari: Shift tuşuna basılıyken Yeniden Yükle'ye tıklayın ya da Ctrl-F5 ya da Ctrl-R tıklayın (Mac için ⌘-R).
  • Google Chrome: Ctrl-Shift-R'ye basın. (Mac için ⌘-Shift-R)
  • Internet Explorer / Edge: Ctrl basılıyken Yenile'ye tıklayın ya da Ctrl-F5 yapın.
  • Opera: Ctrl-F5 tıklayın.
/* ============================
   FOOTBALL MANAGER WIKI
   Professional FM-styled interface
   Based on FM24/FM25 UI design language
============================ */

/* ============================
   COLOR SYSTEM - FM PALETTE
============================ */
:root {
    /* Primary backgrounds - FM's signature dark tones */
    --fm-bg-canvas: #0a0e13;
    --fm-bg-primary: #0f1419;
    --fm-bg-secondary: #161b22;
    --fm-bg-tertiary: #1c2128;
    --fm-bg-elevated: #22272e;
    
    /* FM Brand colors */
    --fm-green-primary: #22b24c;
    --fm-green-bright: #2ec75f;
    --fm-green-dark: #1a8c3a;
    --fm-green-glow: rgba(34, 178, 76, 0.15);
    
    /* Tactical panel accent */
    --fm-blue-accent: #4fc3f7;
    --fm-blue-muted: #2a7a9e;
    
    /* Text hierarchy */
    --fm-text-primary: #e4e8ec;
    --fm-text-secondary: #b4bcc4;
    --fm-text-muted: #7d8590;
    --fm-text-inverse: #ffffff;
    
    /* Borders & dividers */
    --fm-border-default: rgba(255, 255, 255, 0.08);
    --fm-border-subtle: rgba(255, 255, 255, 0.04);
    --fm-border-accent: rgba(34, 178, 76, 0.25);
    
    /* Role colors - FM tactical positions */
    --role-goalkeeper: #3498db;
    --role-defense: #e74c3c;
    --role-midfield: #22b24c;
    --role-attack: #f39c12;
    
    /* Spacing system */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 3rem;
    
    /* Typography */
    --font-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 0.9375rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2.25rem;
    
    /* Shadows - FM's subtle depth */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 20px rgba(34, 178, 76, 0.2);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
}

/* ============================
   BASE STYLES
============================ */
body {
    background: 
        radial-gradient(circle at top right, rgba(34, 178, 76, 0.08), transparent 60%),
        radial-gradient(circle at bottom left, rgba(79, 195, 247, 0.05), transparent 60%),
        linear-gradient(135deg, var(--fm-bg-canvas) 0%, var(--fm-bg-primary) 100%);
    background-attachment: fixed;
    color: var(--fm-text-primary);
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.mw-page-container {
    background: transparent;
}

/* ============================
   MAIN CONTENT PANEL
============================ */
.mw-content,
.mw-body-content {
    background: rgba(22, 27, 34, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--fm-border-accent);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    margin: var(--space-xl) 0;
    box-shadow: var(--shadow-md);
}

/* ============================
   TYPOGRAPHY SYSTEM
============================ */

/* Page title - FM match header style */
.mw-page-title-main,
h1.firstHeading {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--fm-green-primary);
    text-shadow: 0 2px 12px rgba(34, 178, 76, 0.3);
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--fm-border-accent);
}

/* Heading hierarchy - FM tactical panel style */
h2 {
    font-size: var(--font-size-2xl);
    font-weight: 650;
    color: var(--fm-blue-accent);
    margin: var(--space-3xl) 0 var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    padding-left: var(--space-xl);
    background: linear-gradient(
        to right,
        rgba(79, 195, 247, 0.12),
        transparent
    );
    border-left: 4px solid var(--fm-blue-accent);
    border-radius: var(--radius-sm);
}

h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--fm-green-bright);
    margin: var(--space-2xl) 0 var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--fm-border-subtle);
}

h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--fm-text-primary);
    margin: var(--space-xl) 0 var(--space-md);
}

h5, h6 {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--fm-text-secondary);
    margin: var(--space-lg) 0 var(--space-md);
}

/* Paragraph text */
p {
    line-height: 1.7;
    margin: var(--space-md) 0;
    color: var(--fm-text-primary);
}

/* ============================
   LINKS - FM GREEN ACCENT
============================ */
a {
    color: var(--fm-green-bright);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--fm-green-primary);
    text-shadow: 0 0 8px rgba(34, 178, 76, 0.4);
}

a:visited {
    color: var(--fm-blue-muted);
}

/* External links */
a.external::after {
    content: '↗';
    font-size: 0.75em;
    margin-left: 0.25em;
    opacity: 0.6;
}

/* ============================
   LISTS
============================ */
ul, ol {
    margin: var(--space-lg) 0;
    padding-left: var(--space-2xl);
}

li {
    margin: var(--space-sm) 0;
    line-height: 1.7;
    color: var(--fm-text-primary);
}

ul li::marker {
    color: var(--fm-green-primary);
}

/* Navigation lists - FM sidebar style */
.mw-list-item {
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xs) 0;
    border-left: 3px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.mw-list-item:hover {
    background: rgba(34, 178, 76, 0.08);
    border-left-color: var(--fm-green-primary);
    padding-left: calc(var(--space-lg) + 4px);
}

/* ============================
   BUTTONS - FM ACTION STYLE
============================ */
button,
.mw-ui-button,
.cdx-button {
    background: linear-gradient(180deg, var(--fm-green-primary) 0%, var(--fm-green-dark) 100%);
    color: var(--fm-bg-canvas);
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

button:hover,
.mw-ui-button:hover,
.cdx-button:hover {
    background: linear-gradient(180deg, var(--fm-green-bright) 0%, var(--fm-green-primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
}

button:active,
.mw-ui-button:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Secondary button */
button.secondary,
.mw-ui-button.secondary {
    background: linear-gradient(180deg, var(--fm-bg-elevated) 0%, var(--fm-bg-tertiary) 100%);
    color: var(--fm-text-primary);
    border: 1px solid var(--fm-border-default);
}

/* ============================
   SEARCH INPUT - FM FILTER STYLE
============================ */
#searchInput,
.cdx-search-input,
.cdx-text-input__input {
    background: rgba(28, 33, 40, 0.9);
    border: 2px solid var(--fm-border-default);
    color: var(--fm-text-primary);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
}

#searchInput:focus,
.cdx-search-input:focus,
.cdx-text-input__input:focus {
    background: var(--fm-bg-secondary);
    border-color: var(--fm-green-primary);
    box-shadow: 0 0 0 3px var(--fm-green-glow), var(--shadow-sm);
    outline: none;
}

#searchInput::placeholder {
    color: var(--fm-text-muted);
}

/* ============================
   TABLES - FM DATA PRESENTATION
============================ */
table,
table.wikitable {
    background: rgba(28, 33, 40, 0.8);
    border: 1px solid var(--fm-border-default);
    border-radius: var(--radius-md);
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin: var(--space-xl) 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

table th,
table.wikitable th {
    background: linear-gradient(
        180deg,
        rgba(34, 178, 76, 0.25) 0%,
        rgba(34, 178, 76, 0.12) 100%
    );
    color: var(--fm-green-primary);
    padding: var(--space-lg) var(--space-lg);
    text-align: left;
    font-weight: 700;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--fm-green-dark);
}

table td,
table.wikitable td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--fm-border-subtle);
    color: var(--fm-text-secondary);
    font-size: var(--font-size-sm);
}

table tbody tr,
table.wikitable tbody tr {
    transition: background-color var(--transition-fast);
}

table tbody tr:hover,
table.wikitable tbody tr:hover {
    background: rgba(34, 178, 76, 0.06);
}

table tbody tr:last-child td {
    border-bottom: none;
}

/* Striped rows for better readability */
table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.1);
}

/* ============================
   INFO PANELS - FM PLAYER CARD STYLE
============================ */
.mbox,
.infobox,
.navbox {
    background: rgba(22, 27, 34, 0.85);
    backdrop-filter: blur(8px);
    border: 2px solid var(--fm-border-accent);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    box-shadow: var(--shadow-md);
}

/* Infobox - Player/Team card style */
.infobox {
    float: right;
    max-width: 320px;
    margin: 0 0 var(--space-xl) var(--space-xl);
    background: linear-gradient(
        180deg,
        rgba(34, 178, 76, 0.08) 0%,
        rgba(22, 27, 34, 0.9) 30%
    );
}

.infobox caption,
.infobox th.infobox-above {
    background: linear-gradient(
        135deg,
        var(--fm-green-primary),
        var(--fm-green-dark)
    );
    color: var(--fm-text-inverse);
    font-weight: 700;
    font-size: var(--font-size-lg);
    padding: var(--space-lg);
    text-align: center;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.infobox th {
    background: rgba(34, 178, 76, 0.1);
    color: var(--fm-text-secondary);
    font-weight: 600;
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--fm-border-subtle);
    width: 40%;
}

.infobox td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--fm-border-subtle);
    color: var(--fm-text-primary);
}

/* Navbox - FM tactical panel */
.navbox {
    background: linear-gradient(
        180deg,
        rgba(79, 195, 247, 0.08) 0%,
        rgba(22, 27, 34, 0.85) 100%
    );
    border-color: rgba(79, 195, 247, 0.2);
}

.navbox-title,
.navbox th.navbox-title {
    background: linear-gradient(
        to right,
        var(--fm-blue-accent),
        var(--fm-blue-muted)
    );
    color: var(--fm-text-inverse);
    font-weight: 700;
    padding: var(--space-lg);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbox-group {
    background: rgba(79, 195, 247, 0.08);
    color: var(--fm-blue-accent);
    font-weight: 600;
    padding: var(--space-md);
    vertical-align: top;
    width: 140px;
}

.navbox-list {
    padding: var(--space-md);
}

.navbox-list a {
    display: inline-block;
    margin: var(--space-xs) var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.navbox-list a:hover {
    background: rgba(79, 195, 247, 0.12);
}

/* ============================
   CODE BLOCKS
============================ */
pre,
code {
    background: rgba(15, 20, 25, 0.95);
    border: 1px solid var(--fm-border-default);
    color: var(--fm-blue-accent);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: var(--font-size-sm);
}

pre {
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    overflow-x: auto;
    line-height: 1.5;
}

/* ============================
   SIDEBAR/NAVIGATION
============================ */
.mw-sidebar-primary,
#mw-panel,
.vector-menu-portal {
    background: rgba(22, 27, 34, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--fm-border-default);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.vector-menu-heading {
    color: var(--fm-green-primary);
    font-weight: 700;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--fm-border-subtle);
    margin-bottom: var(--space-md);
}

/* ============================
   TACTICAL ROLE CARDS
============================ */

/* Role indicators - FM position colors */
.role-goalkeeper {
    border-left: 4px solid var(--role-goalkeeper);
    padding-left: var(--space-lg);
}

.role-defense {
    border-left: 4px solid var(--role-defense);
    padding-left: var(--space-lg);
}

.role-midfield {
    border-left: 4px solid var(--role-midfield);
    padding-left: var(--space-lg);
}

.role-attack {
    border-left: 4px solid var(--role-attack);
    padding-left: var(--space-lg);
}

/* Tactic/Formation cards - FM tactics screen style */
.tactic-card,
.formation-card {
    background: linear-gradient(
        135deg,
        rgba(79, 195, 247, 0.08) 0%,
        rgba(22, 27, 34, 0.9) 100%
    );
    border: 2px solid rgba(79, 195, 247, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.tactic-card:hover,
.formation-card:hover {
    background: linear-gradient(
        135deg,
        rgba(34, 178, 76, 0.08) 0%,
        rgba(22, 27, 34, 0.95) 100%
    );
    border-color: var(--fm-green-primary);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
    transform: translateY(-4px);
}

.tactic-card h3,
.formation-card h3 {
    margin-top: 0;
    color: var(--fm-blue-accent);
}

/* ============================
   MESSAGE BOXES
============================ */
.mw-message-box {
    background: rgba(34, 178, 76, 0.08);
    border: 2px solid var(--fm-green-primary);
    border-left-width: 5px;
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}

.mw-message-box-warning {
    background: rgba(243, 156, 18, 0.08);
    border-color: #f39c12;
}

.mw-message-box-error {
    background: rgba(231, 76, 60, 0.08);
    border-color: #e74c3c;
}

/* ============================
   FOOTER
============================ */
footer,
#footer,
.mw-footer {
    background: rgba(15, 20, 25, 0.95);
    border-top: 2px solid var(--fm-border-accent);
    color: var(--fm-text-muted);
    padding: var(--space-2xl);
    margin-top: var(--space-3xl);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

footer a,
.mw-footer a {
    color: var(--fm-blue-accent);
}

footer a:hover,
.mw-footer a:hover {
    color: var(--fm-green-primary);
}

/* ============================
   UTILITY CLASSES
============================ */
.fm-highlight {
    color: var(--fm-green-primary);
    font-weight: 700;
}

.fm-secondary {
    color: var(--fm-blue-accent);
}

.text-muted {
    color: var(--fm-text-muted);
}

/* ============================
   RESPONSIVE DESIGN
============================ */
@media (max-width: 768px) {
    :root {
        --font-size-3xl: 1.75rem;
        --font-size-2xl: 1.5rem;
        --space-2xl: 1.25rem;
        --space-3xl: 2rem;
    }
    
    .mw-content,
    .mw-body-content {
        padding: var(--space-xl);
        margin: var(--space-md) 0;
    }
    
    .infobox {
        float: none;
        max-width: 100%;
        margin: var(--space-xl) 0;
    }
    
    table,
    table.wikitable {
        font-size: var(--font-size-sm);
    }
    
    table th,
    table td {
        padding: var(--space-sm) var(--space-md);
    }
    
    .tactic-card,
    .formation-card {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .mw-content,
    .mw-body-content {
        padding: var(--space-lg);
    }
    
    h2 {
        font-size: var(--font-size-xl);
        padding: var(--space-sm) var(--space-md);
    }
}

/* ============================
   ACCESSIBILITY
============================ */
:focus-visible {
    outline: 2px solid var(--fm-green-primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================
   PRINT STYLES
============================ */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .mw-content {
        border: none;
        box-shadow: none;
    }
    
    a {
        color: #0066cc;
        text-decoration: underline;
    }
}