Template:Pepe/styles.css
From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search
/* Outer container forces the entire template to shrink-wrap (no extra width) */
.pepe-outer {
display: table;
margin: 0.5em auto;
}
/* Main wrapper container */
.pepe-wrapper {
position: relative;
display: flex;
align-items: stretch; /* Allows children to define their vertical alignment */
justify-content: space-between;
border: 5px solid #417a05;
background: linear-gradient(#8DB255, #5B8930);
text-shadow: 0px 0px 40px #00fe20, 0px 0px 2px #00fe20;
overflow: hidden;
}
/* Neutralize MediaWiki's automatic paragraph and break tags */
.pepe-wrapper p, .pepe-outer p { display: contents; margin: 0; }
.pepe-wrapper br, .pepe-outer br { display: none; }
/*
==========================================
KEK TEXT BACKGROUND
==========================================
*/
.pepe-bg-kek {
position: absolute;
top: -50px; left: -50px; right: -50px; bottom: -50px;
z-index: 1;
color: rgba(0, 255, 32, 0.15); /* Faint green watermark */
font-family: Arial, sans-serif;
font-size: 28px;
font-weight: 900;
line-height: 0.8;
text-transform: uppercase;
text-align: center;
word-wrap: break-word;
}
/*
==========================================
LEFT SIDE (Pepe)
==========================================
*/
.pepe-left {
position: relative;
width: 110px;
height: 110px; /* Fixed height ensures the container doesn't collapse */
align-self: flex-end; /* Anchors the entire left container to the absolute bottom */
flex-shrink: 0;
z-index: 5;
}
.pepe-left a.image,
.pepe-right a.image {
border: none;
background: transparent;
display: block;
line-height: 0;
}
.pepe-body {
position: absolute;
bottom: 0; /* Touches the exact bottom of the box */
left: 0; /* Touches the exact left of the box */
z-index: 10;
}
/* Hand positioned with your exact coordinates */
.pepe-hand {
position: absolute;
bottom: -20px;
left: -20px;
z-index: 15;
transform-origin: bottom left;
transition: transform 0.2s ease-in-out;
}
/*
==========================================
CENTER CONTENT (Shrunk & Tightened)
==========================================
*/
.pepe-center {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 5px 15px; /* Tight padding to keep the box small */
z-index: 5;
line-height: 1.2;
}
.pepe-title {
color: #6666cc;
font-size: 1.3em;
font-weight: bold;
margin-bottom: 2px;
}
.pepe-title a { color: #ffffff !important; }
.pepe-subtitle {
color: #ffa500;
font-size: 1.1em;
font-weight: bold;
margin-bottom: 5px;
}
.pepe-audio { margin-bottom: 5px; }
/*
==========================================
RIGHT SIDE (Spinning CD)
==========================================
*/
.pepe-right {
display: flex;
align-items: center;
justify-content: center;
width: 110px;
padding: 5px;
flex-shrink: 0;
z-index: 5;
}
/* Mobile adjustments */
@media (max-width: 550px) {
.pepe-wrapper { flex-direction: column; align-items: center; }
.pepe-left { align-self: flex-start; } /* Moves Pepe to top left on mobile */
.pepe-title { font-size: 1.1em; }
.pepe-subtitle { font-size: 1em; }
}