He/Him
Level 1
New Tinkerer
22

the custom css i use on pmc

  • Edit
  • Report
  • Delete
  • Delete
so this was made for planet minecraft but it works here also because the sites are so frickin simmaler try it out


/* =========================================
1. FONTS & TYPOGRAPHY
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');

/* Apply Comfortaa to all standard text */
* {
font-family: 'Comfortaa', cursive, sans-serif !important;
}

/* FIX: Force Material Icons back to original font */
.material-icons, i.material-icons, span.material-icons {
font-family: 'Material Icons' !important;
text-transform: none !important;
font-weight: normal;
font-style: normal;
}

/* =========================================
2. GLOBAL DARK THEME
========================================= */
/* Main Background - Deep Dark Grey */
html, body, #outer-wrapper, #content, #main, .p-layout-normal {
background-color: #121212 !important;
background-image: none !important;
}

/* Text Color - Default to soft grey */
body, .content-box, .widget {
color: #b0b3b8;
}

/* Custom Effects Fix: Allow custom user colors to work */
span[​style*="color"], font[​color] {
color: inherit;
}

/* Headings - Bright White */
h1, h2, h3, h4, h5, h6, .r-title, .hero-title {
color: #ffffff !important;
font-weight: 700 !important;
}

/* Links - PMC Blue */
a, a:visited {
color: #4aa3df !important;
text-decoration: none !important;
}

/* =========================================
3. MODERN CARD UI
========================================= */
/* Turn content boxes into dark cards */
.resource_list.grid > li,
.content-box,
.widget,
.names,
#header,
.member-content-wrapper,
.submission-preview {
background-color: #1e1e1e !important;
border: 1px solid #333 !important;
border-radius: 16px !important;
box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
overflow: visible !important; /* Vital for dropdowns */
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover "Lift" Effect */
.resource_list.grid > li:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
border-color: #555 !important;
z-index: 50;
}

/* Fix Images in cards */
.content-box img, .widget img, .resource_list.grid > li img {
border-radius: 12px;
}

/* Cleanup old borders */
.well, .panel, .alert {
border: none !important;
box-shadow: none !important;
background: #1e1e1e !important;
}

/* =========================================
4. INPUTS (Buttons Default / Inputs Modern)
========================================= */
/* Clean up Text Inputs/Search bars for visibility */
input[​type="text"], input[​type="password"], textarea, .search_keywords {
background-color: #2d2d2d !important;
border: 2px solid #444 !important;
border-radius: 12px !important;
color: #fff !important;
padding: 10px !important;
}

input:focus, textarea:focus {
border-color: #4aa3df !important;
background-color: #333 !important;
}

/* =========================================
5. LAYOUT & SIDEBAR
========================================= */
/* Ensure Right Sidebar is VISIBLE */
#right {
display: block !important;
margin-top: 0 !important;
}

/* Remove Trending Slider */
#reel-wrap, .alert_bar {
display: none !important;
}

/* Center Content */
#left {
width: 100% !important;
max-width: 1400px !important;
margin: 0 auto !important;
float: none !important;
}

.resource_list.grid > li {
margin: 10px !important;
}

/* =========================================
6. Z-INDEX & MENU FIXES
========================================= */
/* Ensure Header and Dropdowns are typically on top */
#header, #header-wrap, .navigation {
position: relative !important;
z-index: 999 !important;
overflow: visible !important;
border-radius: 0 0 16px 16px !important;
}

/* FIX: Easter Egg Canvas always on top */
/* Using absolute prevents the 'translate' from pushing it off-screen */
canvas.easter_egg {
position: absolute !important;
z-index: 99999 !important;
top: 0 !important;
left: 0 !important;
}

/* =========================================
8. DARK SCROLLBAR (Webkit/Chrome)
========================================= */
::-webkit-scrollbar {
width: 12px !important;
background-color: #121212 !important;
}

::-webkit-scrollbar-track {
background-color: #1e1e1e !important;
border-left: 1px solid #333 !important;
}

::-webkit-scrollbar-thumb {
background-color: #444 !important;
border-radius: 6px !important;
border: 2px solid #1e1e1e !important; /* Creates padding effect */
}

::-webkit-scrollbar-thumb:hover {
background-color: #4aa3df !important; /* Blue accent on hover */
}

/* =========================================
9. PAGINATION & MENUS
========================================= */
/* Fix Pagination Blocks */
.pagination a, .pagination span {
background-color: #2d2d2d !important;
border: 1px solid #444 !important;
color: #b0b3b8 !important;
border-radius: 8px !important;
margin: 0 2px !important;
}

.pagination .current, .pagination a:hover {
background-color: #4aa3df !important;
color: #fff !important;
border-color: #4aa3df !important;
}

/* Fix Dropdown Menus Backgrounds */
.dropdown-menu, .sub-menu, ul.menu {
background-color: #252525 !important;
border: 1px solid #444 !important;
box-shadow: 0 10px 20px rgba(0,0,0,0.5) !important;
}

/* Dropdown Links */
.dropdown-menu li a, .sub-menu li a {
color: #ccc !important;
border-bottom: 1px solid #333 !important;
}

.dropdown-menu li a:hover {
background-color: #333 !important;
color: #4aa3df !important;
padding-left: 15px !important; /* Slide effect */
}

Welcome