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
No edit summary
No edit summary
Line 3: Line 3:
margin: 1em auto;
margin: 1em auto;
max-width: 650px;
max-width: 650px;
text-align: center;
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 Clickable Banner */
/* The Roundy Pill Container */
.tiktok-banner {
.tiktok-pill-container {
display: flex;
align-items: center;
background: #000;
background: #000;
color: #fff;
color: #fff;
border-radius: 50px; /* Modern rounded corners */
border-radius: 50px;
padding: 10px 25px;
box-shadow: -3px -3px 0 #00f7ef, 3px 3px 0 #ff004f;
display: inline-flex;
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;
/* TikTok glitch effect on the rounded border */
padding: 5px;
box-shadow: -3px -3px 0 #00f7ef, 3px 3px 0 #ff004f;
transition: opacity 0.2s;
transition: transform 0.1s ease;
font-size: 1.1em;
}
}


.tiktok-banner:active {
.tk-main-toggle:active {
transform: scale(0.98); /* Satisfying click animation */
opacity: 0.7; /* Click animation */
}
}


/* Hide standard Wiki [Expand] text */
/* Hide standard Wiki [Expand] text */
.tiktok-banner .mw-collapsible-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 "Music Button Next To It" */
/* The Isolated Music Player (Right Side) */
.tk-music-btn {
.tk-audio-player {
display: inline-flex;
flex-shrink: 0;
padding-left: 10px;
border-left: 2px solid #333; /* Visual separator */
display: flex;
align-items: center;
align-items: center;
gap: 5px;
font-weight: bold;
font-size: 0.9em;
color: #fff;
background: #222;
padding: 5px 12px;
border-radius: 20px;
margin-left: 5px;
}
}


/* Easter Egg Container */
/* Easter Egg Container (Drops Below) */
.tiktok-easter-egg {
.tk-easter-egg-dropdown {
margin-top: 20px;
margin-top: 15px;
background: #000;
background: #050505;
border-radius: 15px;
border-radius: 12px;
overflow: hidden;
border: 1px solid #222;
border: 1px solid #333;
padding: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.5);
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 (The Easter Egg) */
/* Horizontal Swipe Feed of MP4s */
.tiktok-swipe-feed {
.tiktok-swipe-feed {
display: flex;
display: flex;
overflow-x: auto;
overflow-x: auto;
gap: 12px;
gap: 15px;
padding: 15px;
padding-bottom: 10px;
background: #050505;
}
}


.tiktok-swipe-feed a.image,
.tiktok-swipe-feed > * {
.tiktok-swipe-feed > div {
flex: 0 0 160px; /* Wider for MP4s */
flex: 0 0 120px;
background: #111;
height: 180px;
background: #1a1a1a;
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;
border: 1px solid #222;
}
}


.tiktok-swipe-feed img {
/* Ensure Videos and Images scale perfectly */
width: 100%;
.tiktok-swipe-feed video,
height: 100%;
.tiktok-swipe-feed img,
.tiktok-swipe-feed .mediaContainer {
width: 100% !important;
height: auto !important;
max-height: 280px;
object-fit: cover;
object-fit: cover;
}
.tk-audio {
padding: 10px;
background: #111;
border-top: 1px solid #333;
}
}

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;
}