Template:Welcome/styles.css

From WikiVita
Jump to navigation Jump to search
/* ==========================================================================
   WIKIVITA DASHBOARD SYSTEM
   ========================================================================== */

/* Hero Container */
.wiki-hero-container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Welcome Badge */
.wiki-welcome-badge {
    display: inline-block;
    padding: 4px 16px;
    background: #eff6ff;
    border: 1px solid #dbeafe; 
    border-radius: 999px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.0em;
    color: #0f172a;
}
.wiki-welcome-badge span {
    color: #3366cc;
}

/* Subtitle/Tagline */
.wiki-hero-subtitle {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 1rem;
}

/* Base Description Layout */
.wiki-section-desc {
    max-width: 680px;
    margin: 1.5rem auto 0;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    color: #64748b;
}

/* Statistics Monitor */
.wiki-stats-counter {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #334155;
}
.wiki-stats-counter span {
    font-weight: 700;
}

/* Create Page Form Interface */
.wiki-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wiki-form-input {
    width: 100%;
    padding: 16px 18px;
    font-size: 16px;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    outline: none;
    background: #ffffff;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.wiki-form-button {
    width: 100%;
    padding: 16px;
    background: #cbd5e1;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: not-allowed;
    transition: all .2s ease;
    box-shadow: 0 8px 24px rgba(51,102,204,.18);
}

/* Category Grid Structure */
.wiki-category-section {
    margin-top: 2.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eff6ff;
    text-align: center;
}
.wiki-category-header {
    font-size: .90rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #334155;
    margin-bottom: -0.5rem;
}
.wiki-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
    max-width: 820px;
    margin: 0 auto;
}

/* Individual Content Display Cards */
.wiki-category-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 10px;
    min-height: 90px;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
}
.wiki-card-glyph {
    font-size: 40px; 
    color: #3366cc; 
    line-height: 1;
    font-family: 'Segoe UI Symbol', 'Apple Color Emoji', sans-serif;
}
.wiki-card-title {
    margin-top: 8px;
    font-weight: 600;
}

/* Base Graphic Utilities */
.wiki-bottom-accent {
    width: 90px;
    height: 5px;
    background: #cedff2;
    border-radius: 999px;
    margin: 1.2rem auto 0;
}