MediaWiki:Vector.css: Difference between revisions

From Frutiger Space Wikipedia!
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 1: Line 1:
.mainpage-wrapper {
    display: flex;
    gap: 15px; /* Space between the columns */
}
.mainpage-left-column {
    width: 70%;
}
.mainpage-right-column {
    width: 30%;
}
.mainpage-box {
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden; /* Keeps the header inside the rounded corners */
}
.mainpage-box-body {
    padding: 15px;
    background-color: #f0f8ff; /* A very light, airy blue */
    font-size: 0.9em;
    line-height: 1.6;
}
#firstHeading {
    color: #005a9e;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}


a {
    color: #0078d3;
}
a:visited {
    color: #005a9e;
}
.mw-body-content a.external {
    background-image: none !important;
    padding-right: 0 !important;
}
#mw-head-base {
#mw-head-base {
     background-image: url("https://i.imgur.com/0YEvDXm.png");
     background-image: url("https://i.imgur.com/0YEvDXm.png");
Line 64: Line 21:
     background-repeat: no-repeat;
     background-repeat: no-repeat;
     background-position: center;
     background-position: center;
}
.mw-body {
    background-color: rgba(255, 255, 255, 0.75) !important; /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Frosted glass effect for modern browsers */
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
}

Latest revision as of 04:02, 4 September 2025

#mw-head-base {
    background-image: url("https://i.imgur.com/0YEvDXm.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mw-page-container {
    margin-left: 135px;
}

#p-logo {
    width: 0;
    min-width: 0;
}

#p-logo a {
    background-image: url('https://i.imgur.com/A6MdQon.png') !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}