New mission: revamp the portals to make them look actually tolerable to the eye. They are currently placeholders as of now.
The Gold Network: Soyworld | SNCApedia | SoyPlace
Please do not be surprised when the site randomly loads extremely slow. It is probably being DDoSed.
I'm not dead, just inactive for the moment. Faggot (talk) 20:16, 9 April 2026 (UTC)
Template:Tiktok/styles.css: Difference between revisions
From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search
SomebodyRum (talk | contribs) No edit summary |
SomebodyRum (talk | contribs) No edit summary |
||
| Line 3: | Line 3: | ||
margin: 1em auto; | margin: 1em auto; | ||
max-width: 650px; | max-width: 650px; | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; | ||
display: block; /* Forces easter egg to drop below */ | |||
} | } | ||
/* The Roundy | /* The Roundy Pill Container */ | ||
.tiktok- | .tiktok-pill-container { | ||
display: flex; | |||
align-items: center; | |||
background: #000; | background: #000; | ||
color: #fff; | color: #fff; | ||
border-radius: 50px; /* | border-radius: 50px; | ||
box-shadow: -3px -3px 0 #00f7ef, 3px 3px 0 #ff004f; | |||
display: | padding: 5px 15px; | ||
gap: 10px; | |||
} | |||
/* The Clickable Ohio Text (Left Side) */ | |||
.tk-main-toggle { | |||
flex: 1; | |||
display: flex; | |||
align-items: center; | align-items: center; | ||
justify-content: center; | justify-content: center; | ||
| Line 19: | Line 28: | ||
cursor: pointer; | cursor: pointer; | ||
user-select: none; | user-select: none; | ||
padding: 5px; | |||
transition: opacity 0.2s; | |||
transition: | |||
} | } | ||
. | .tk-main-toggle:active { | ||
opacity: 0.7; /* Click animation */ | |||
} | } | ||
/* Hide standard Wiki [Expand] text */ | /* Hide standard Wiki [Expand] text */ | ||
. | .tk-main-toggle .mw-collapsible-text { | ||
display: none !important; | display: none !important; | ||
} | } | ||
| Line 36: | Line 43: | ||
.tk-banner-text { | .tk-banner-text { | ||
font-weight: bold; | font-weight: bold; | ||
font-size: 1.1em; | |||
white-space: nowrap; | white-space: nowrap; | ||
} | } | ||
/* The | /* The Isolated Music Player (Right Side) */ | ||
.tk- | .tk-audio-player { | ||
display: | flex-shrink: 0; | ||
padding-left: 10px; | |||
border-left: 2px solid #333; /* Visual separator */ | |||
display: flex; | |||
align-items: center; | align-items: center; | ||
} | } | ||
/* Easter Egg Container */ | /* Easter Egg Container (Drops Below) */ | ||
. | .tk-easter-egg-dropdown { | ||
margin-top: | margin-top: 15px; | ||
background: # | background: #050505; | ||
border-radius: | border-radius: 12px; | ||
border: 1px solid #222; | |||
padding: 15px; | |||
box-shadow: 0 | box-shadow: 0 8px 20px rgba(0,0,0,0.8); | ||
} | |||
.tk-swipe-title { | |||
font-size: 0.85em; | |||
color: #aaa; | |||
text-align: center; | |||
margin-bottom: 10px; | |||
font-weight: bold; | |||
} | } | ||
/* Horizontal Swipe Feed | /* Horizontal Swipe Feed of MP4s */ | ||
.tiktok-swipe-feed { | .tiktok-swipe-feed { | ||
display: flex; | display: flex; | ||
overflow-x: auto; | overflow-x: auto; | ||
gap: | gap: 15px; | ||
padding: | padding-bottom: 10px; | ||
} | } | ||
.tiktok-swipe-feed > * { | |||
.tiktok-swipe-feed > | flex: 0 0 160px; /* Wider for MP4s */ | ||
flex: 0 0 | background: #111; | ||
background: # | |||
border-radius: 8px; | border-radius: 8px; | ||
border: 1px solid #333; | |||
overflow: hidden; | overflow: hidden; | ||
display: flex; | display: flex; | ||
flex-direction: column; | |||
align-items: center; | align-items: center; | ||
justify-content: center; | justify-content: center; | ||
} | } | ||
.tiktok-swipe-feed img { | /* Ensure Videos and Images scale perfectly */ | ||
width: 100%; | .tiktok-swipe-feed video, | ||
height: | .tiktok-swipe-feed img, | ||
.tiktok-swipe-feed .mediaContainer { | |||
width: 100% !important; | |||
height: auto !important; | |||
max-height: 280px; | |||
object-fit: cover; | object-fit: cover; | ||
} | } | ||
Revision as of 08:38, 20 April 2026
/* Main Wrapper */
.tiktok-wrapper {
margin: 1em auto;
max-width: 650px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
display: block; /* Forces easter egg to drop below */
}
/* The Roundy Pill Container */
.tiktok-pill-container {
display: flex;
align-items: center;
background: #000;
color: #fff;
border-radius: 50px;
box-shadow: -3px -3px 0 #00f7ef, 3px 3px 0 #ff004f;
padding: 5px 15px;
gap: 10px;
}
/* The Clickable Ohio Text (Left Side) */
.tk-main-toggle {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
cursor: pointer;
user-select: none;
padding: 5px;
transition: opacity 0.2s;
}
.tk-main-toggle:active {
opacity: 0.7; /* Click animation */
}
/* Hide standard Wiki [Expand] text */
.tk-main-toggle .mw-collapsible-text {
display: none !important;
}
.tk-banner-text {
font-weight: bold;
font-size: 1.1em;
white-space: nowrap;
}
/* The Isolated Music Player (Right Side) */
.tk-audio-player {
flex-shrink: 0;
padding-left: 10px;
border-left: 2px solid #333; /* Visual separator */
display: flex;
align-items: center;
}
/* Easter Egg Container (Drops Below) */
.tk-easter-egg-dropdown {
margin-top: 15px;
background: #050505;
border-radius: 12px;
border: 1px solid #222;
padding: 15px;
box-shadow: 0 8px 20px rgba(0,0,0,0.8);
}
.tk-swipe-title {
font-size: 0.85em;
color: #aaa;
text-align: center;
margin-bottom: 10px;
font-weight: bold;
}
/* Horizontal Swipe Feed of MP4s */
.tiktok-swipe-feed {
display: flex;
overflow-x: auto;
gap: 15px;
padding-bottom: 10px;
}
.tiktok-swipe-feed > * {
flex: 0 0 160px; /* Wider for MP4s */
background: #111;
border-radius: 8px;
border: 1px solid #333;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* Ensure Videos and Images scale perfectly */
.tiktok-swipe-feed video,
.tiktok-swipe-feed img,
.tiktok-swipe-feed .mediaContainer {
width: 100% !important;
height: auto !important;
max-height: 280px;
object-fit: cover;
}