Welcome to SECApedia! Please check out our rules, manual of style aswell as some info on the site.


The site is currently in a "grace period" where only users can edit articles so that we can set things up in peace. This should end within a few days or so. Soyoyuki (talk) 14:22, 21 June 2026 (UTC)


CURRENT MISSION: Update, uncensor and (if needed) rewrite all the imported pages from SNCApedia.
Additionally, please remove all unnecessary discussion pages, for example those with outdated info.

Template:MainPage/Header/styles.css

From SECApedia
Jump to navigationJump to search
/* Container and Border */
.snca-header {
    border: 4px solid #2988F7;
    border-radius: 4px;
    overflow: hidden; 
    background: linear-gradient(#D3D7EF, #EEF2FF);
    padding: 8px;
    text-align: center;
    margin-bottom: 1em;
}

/* Top 3-Column Layout */
.snca-header-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.snca-col-side {
    flex: 1 1 150px;
}

.snca-col-main {
    flex: 2 1 350px;
}

/* Typography Settings */
.snca-welcome {
    font-size: 2.35em;
    line-height: 1.1em;
    margin-bottom: 0.2em;
}

.snca-subtitle {
    font-size: 1.65em;
    font-style: italic;
    line-height: 1.1em;
    margin-bottom: 0.4em;
}

.snca-stats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0.5em;
}

.snca-stats img {
    vertical-align: middle; /* Centers the tiny icons perfectly with the text */
}

.snca-cta {
    font-size: 1.25em;
    line-height: 1.1em;
    font-weight: bold;
    white-space: nowrap; 
}

/* News Section Polish */
.snca-news-title {
    font-size: 1.25em;
    text-shadow: 1px 1px black;
    font-weight: bold;
    margin-bottom: 5px;
}

.snca-news-img img {
    border-radius: 4px; /* Matches the outer container's corners */
}

/* Icon Links Bar */
.snca-icon-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    border-top: 1px solid #D9BFB7;
    border-bottom: 1px solid #D9BFB7;
    padding: 6px 0;
    margin: 8px 0;
}

.snca-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.85em;
    line-height: 1.2em;
    width: 95px;
    text-align: center;
    gap: 2px;
    transition: transform 0.2s ease-in-out; /* Smooth animation setup */
}

.snca-icon-item:hover {
    transform: scale(1.08); /* Subtle pop on hover */
}

.snca-icon-item div {
    white-space: nowrap; 
}

/* Footer Text */
.snca-footer {
    font-style: italic;
    font-size: 1em;
    text-align: center;
    padding: 0 5px;
}

/* MediaWiki parser artifact fixes */
.snca-icon-bar p { display: contents; }
.snca-icon-bar br { display: none; }

/* Mobile Responsiveness Polish */
@media screen and (max-width: 720px) {
    .snca-cta, .snca-icon-item div {
        white-space: normal; /* Allows text to wrap nicely on small phone screens */
    }
}