|
|
| (22 intermediate revisions by 2 users not shown) |
| Line 1: |
Line 1: |
| /* CSS placed here will be applied to all skins */ | | /* CSS placed here will be applied to all skins */ |
|
| |
|
| /* --- TABLE FIXES --- */
| | /* Hide user menu icon for anonymous */ |
| .fullwidth { width: 100% !important; }
| | .personal-tools-icon { |
| .nowrap { white-space: nowrap; }
| | display: none !important; |
| | |
| table.wikitable th a,
| |
| table.wikitable th.headerSort a {
| |
| pointer-events: none !important;
| |
| cursor: pointer !important;
| |
| color: black !important;
| |
| text-decoration: none !important;
| |
| }
| |
| | |
| /* Hide columns helpers */ | |
| .hide-Genre .col-genre,
| |
| .hide-Platform .col-platform,
| |
| .hide-Mode .col-mode,
| |
| .hide-Players .col-players {
| |
| display: none !important;
| |
| }
| |
| | |
| /* --- NEW: "ONE BOX" STYLE FOR EVENTS (FIXED v2) --- */
| |
| | |
| /* 1. The Container: The outer grey box */
| |
| .one-box-container {
| |
| border: 1px solid #ccc !important;
| |
| background: #f9f9f9;
| |
| padding: 15px;
| |
| border-radius: 4px;
| |
| margin-top: 5px;
| |
| }
| |
| | |
| /* 2. Hide Line Breaks (CRITICAL FIX) */
| |
| /* PageForms adds <br> tags that force stacking. This kills them. */
| |
| .one-box-container br {
| |
| display: none !important;
| |
| }
| |
| | |
| /* 3. The Wrapper: Force horizontal layout */
| |
| /* This targets the span that holds all checkboxes */
| |
| .one-box-container > span {
| |
| display: flex !important;
| |
| flex-wrap: wrap !important;
| |
| gap: 20px; /* Space between items */
| |
| align-items: center;
| |
| width: 100%;
| |
| }
| |
| | |
| /* 4. The Individual Items */
| |
| .one-box-container .checkboxLabel {
| |
| display: flex !important;
| |
| align-items: center !important;
| |
| width: auto !important;
| |
| margin: 0 !important;
| |
| padding: 0 !important;
| |
| background: transparent !important;
| |
| border: none !important;
| |
| }
| |
| | |
| /* 5. The Label Text */
| |
| .one-box-container label {
| |
| margin-left: 6px;
| |
| font-weight: normal;
| |
| cursor: pointer;
| |
| font-size: 13px;
| |
| line-height: 1.5;
| |
| }
| |
| | |
| /* 6. The Checkbox Input */
| |
| .one-box-container input {
| |
| margin: 0 !important;
| |
| cursor: pointer;
| |
| }
| |
| | |
| | |
| /* --- GAME FORM: GRID STYLE (Keep this for the Game Form) --- */
| |
| | |
| .checkbox-grid > span {
| |
| display: grid !important;
| |
| grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
| |
| gap: 8px !important;
| |
| width: 100%;
| |
| }
| |
| | |
| .checkbox-grid .checkboxLabel {
| |
| display: flex !important;
| |
| align-items: center;
| |
| background: #f9f9f9;
| |
| border: 1px solid #ccc;
| |
| padding: 6px 10px;
| |
| border-radius: 4px;
| |
| height: 25px;
| |
| font-size: 13px;
| |
| white-space: nowrap;
| |
| overflow: hidden;
| |
| }
| |
| | |
| .checkbox-grid .checkboxLabel:hover {
| |
| background: #fff;
| |
| border-color: #3366cc;
| |
| cursor: pointer;
| |
| }
| |
| | |
| .checkbox-grid br {
| |
| display: none !important;
| |
| }
| |
| /* =========================================
| |
| PC GAMING SHELTER - LANDING PAGE LAYOUT
| |
| ========================================= */
| |
| | |
| .pcs-wrapper {
| |
| background-color: #042037; /* Dark navy background */
| |
| padding: 30px;
| |
| font-family: sans-serif;
| |
| color: #ffffff;
| |
| border-radius: 8px;
| |
| max-width: 1200px; /* <--- NEW: Stops it from stretching too wide */
| |
| margin: 0 auto; /* <--- NEW: Centers the whole page */
| |
| }
| |
| | |
| /* Flexbox Rows for the Grid */
| |
| .pcs-row {
| |
| display: flex;
| |
| flex-wrap: wrap;
| |
| gap: 20px;
| |
| margin-bottom: 20px;
| |
| }
| |
| | |
| /* Base Box Styling */
| |
| .pcs-box {
| |
| background-color: #0d5287; /* Medium blue box */
| |
| border: 2px solid #011120; /* Dark border */
| |
| border-radius: 8px;
| |
| padding: 20px;
| |
| box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
| |
| box-sizing: border-box;
| |
| }
| |
| | |
| /* Column Sizes */
| |
| .pcs-col-70 { flex: 0 0 calc(70% - 10px); max-width: calc(70% - 10px); }
| |
| .pcs-col-30 { flex: 0 0 calc(30% - 10px); max-width: calc(30% - 10px); }
| |
| .pcs-col-50 { flex: 0 0 calc(50% - 10px); max-width: calc(50% - 10px); }
| |
| .pcs-col-100 { flex: 0 0 100%; max-width: 100%; }
| |
| | |
| /* Box Titles */
| |
| .pcs-title {
| |
| font-size: 1.4em;
| |
| font-weight: bold;
| |
| text-align: center;
| |
| border-bottom: 2px solid #ffffff;
| |
| padding-bottom: 5px;
| |
| margin-bottom: 15px;
| |
| }
| |
| | |
| /* Link Styling Inside Boxes */
| |
| .pcs-box a {
| |
| color: #ffffff;
| |
| text-decoration: none;
| |
| font-weight: bold;
| |
| }
| |
| .pcs-box a:hover {
| |
| color: #ff9900; /* Orange hover effect to match logo */
| |
| text-decoration: underline;
| |
| }
| |
| | |
| /* Search Bar Container */
| |
| .pcs-search-container {
| |
| text-align: center;
| |
| margin-bottom: 30px;
| |
| }
| |
| | |
| /* Responsive fix for smaller screens */
| |
| @media (max-width: 800px) {
| |
| .pcs-col-70, .pcs-col-30, .pcs-col-50 {
| |
| flex: 0 0 100%;
| |
| max-width: 100%;
| |
| }
| |
| }
| |
| /* =========================================
| |
| HIDE SIDEBAR & TABS ON MAIN PAGE ONLY
| |
| ========================================= */
| |
| body.page-Main_Page #mw-panel,
| |
| body.page-Main_Page #p-logo {
| |
| display: none !important;
| |
| }
| |
| body.page-Main_Page #content {
| |
| margin-left: 0 !important;
| |
| border: none !important;
| |
| }
| |
| body.page-Main_Page #left-navigation {
| |
| display: none !important;
| |
| }
| |
| body.page-Main_Page #firstHeading {
| |
| display: none !important; /* Hides the "Main Page" title text */
| |
| }
| |
| | |
| /* Align titles to the left for the full-width boxes (per your new concept) */
| |
| .pcs-title-left {
| |
| font-size: 1.4em;
| |
| font-weight: bold;
| |
| text-align: left;
| |
| border-bottom: 2px solid #ffffff;
| |
| padding-bottom: 5px;
| |
| margin-bottom: 15px;
| |
| }
| |
| /* =========================================
| |
| PCS: LIST, SEARCH, AND TABLE FIXES
| |
| ========================================= */
| |
| | |
| /* Search bar styling */
| |
| .pcs-search-form {
| |
| display: flex;
| |
| justify-content: center;
| |
| gap: 10px;
| |
| }
| |
| .pcs-search-input {
| |
| width: 100%;
| |
| max-width: 400px;
| |
| padding: 10px;
| |
| border-radius: 4px;
| |
| border: 1px solid #ccc;
| |
| background: #fff;
| |
| color: #000;
| |
| }
| |
| .pcs-search-btn {
| |
| padding: 10px 20px;
| |
| background: #ff9900;
| |
| color: #fff;
| |
| border: none;
| |
| border-radius: 4px;
| |
| font-weight: bold;
| |
| cursor: pointer;
| |
| }
| |
| .pcs-search-btn:hover { background: #e68a00; }
| |
| | |
| /* Custom lists to avoid MediaWiki parser bugs */
| |
| .pcs-list {
| |
| list-style: none; /* Removes the ugly default bullets */
| |
| padding: 0;
| |
| margin: 0;
| |
| text-align: left;
| |
| display: inline-block;
| |
| }
| |
| .pcs-list li {
| |
| margin-bottom: 5px;
| |
| }
| |
| | |
| /* 2-Column Grid for Links */
| |
| .pcs-2col {
| |
| display: grid;
| |
| grid-template-columns: 1fr 1fr;
| |
| gap: 30px;
| |
| justify-content: center;
| |
| width: fit-content;
| |
| margin: 0 auto;
| |
| }
| |
| | |
| /* Dark Theme overrides for the Wikitable */
| |
| .pcs-wrapper table.wikitable {
| |
| background-color: transparent !important;
| |
| color: #ffffff !important;
| |
| border: 1px solid #011120 !important;
| |
| }
| |
| .pcs-wrapper table.wikitable th {
| |
| background-color: #011120 !important;
| |
| border: 1px solid #0d5287 !important;
| |
| color: #ff9900 !important;
| |
| }
| |
| .pcs-wrapper table.wikitable td {
| |
| border: 1px solid #011120 !important;
| |
| }
| |
| /* =========================================
| |
| PCS: INPUTBOX SEARCH BAR STYLING
| |
| ========================================= */
| |
| .pcs-search-container {
| |
| text-align: center;
| |
| margin-bottom: 35px;
| |
| }
| |
| .pcs-search-container .searchboxInput {
| |
| padding: 12px;
| |
| border-radius: 4px;
| |
| border: none;
| |
| font-size: 1.1em;
| |
| min-width: 300px;
| |
| }
| |
| .pcs-search-container .searchboxSearchButton {
| |
| padding: 12px 25px;
| |
| background: #ff9900;
| |
| color: #fff;
| |
| border: none;
| |
| border-radius: 4px;
| |
| font-weight: bold;
| |
| cursor: pointer;
| |
| font-size: 1.1em;
| |
| margin-left: 10px;
| |
| }
| |
| .pcs-search-container .searchboxSearchButton:hover {
| |
| background: #e68a00;
| |
| }
| |
| /* =========================================
| |
| PCS: MAIN PAGE FULL BACKGROUND COLOR
| |
| ========================================= */
| |
| body.page-Main_Page,
| |
| body.page-Main_Page #content,
| |
| body.page-Main_Page .mw-page-container,
| |
| body.page-Main_Page #mw-page-base,
| |
| body.page-Main_Page #mw-head-base {
| |
| background-color: #042037 !important;
| |
| background-image: none !important; /* Removes default MediaWiki gradient shadows */
| |
| }
| |
| /* Orange Search Buttons for the InputBox */
| |
| .pcs-search-container input[type="submit"] {
| |
| padding: 8px 20px;
| |
| background: #ff9900 !important;
| |
| color: #fff !important;
| |
| border: none !important;
| |
| border-radius: 4px;
| |
| font-weight: bold;
| |
| cursor: pointer;
| |
| margin: 0 5px;
| |
| }
| |
| .pcs-search-container input[type="submit"]:hover {
| |
| background: #e68a00 !important;
| |
| }
| |
| /* =========================================
| |
| PCS: HIDE TOP NAVIGATION ON MAIN PAGE
| |
| ========================================= */
| |
| body.page-Main_Page #right-navigation,
| |
| body.page-Main_Page #p-personal,
| |
| body.page-Main_Page .mw-header {
| |
| display: none !important;
| |
| }
| |
| | |
| /* =========================================
| |
| PCS: HERO BANNER (Title & Logo)
| |
| ========================================= */
| |
| .pcs-hero {
| |
| display: flex;
| |
| align-items: center;
| |
| justify-content: flex-start;
| |
| gap: 20px;
| |
| margin-bottom: 40px;
| |
| padding: 10px 20px;
| |
| }
| |
| .pcs-hero-text h1 {
| |
| color: #ffffff;
| |
| font-size: 2.8em;
| |
| font-weight: bold;
| |
| font-family: 'Arial Black', Impact, sans-serif;
| |
| margin: 0;
| |
| padding: 0;
| |
| border: none; /* Removes wiki default underline */
| |
| text-transform: uppercase;
| |
| letter-spacing: 1px;
| |
| }
| |
| .pcs-hero-text p {
| |
| color: #ffffff;
| |
| font-size: 1.2em;
| |
| margin: 5px 0 0 0;
| |
| }
| |
| | |
| /* =========================================
| |
| PCS: REMOVE WHITE BACKGROUND FROM LOGO
| |
| ========================================= */
| |
| .pcs-hero-logo img,
| |
| .pcs-hero-logo a.image {
| |
| background: transparent !important;
| |
| background-color: transparent !important;
| |
| border: none !important;
| |
| } | | } |