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

From SNCApedia, the shit nobody cares about encyclopedia
Revision as of 08:20, 20 April 2026 by SomebodyRum (talk | contribs) (Created page with "Container and Layout: .tiktok-wrapper { background: #000; color: #fff; max-width: 350px; margin: 1em auto; border-radius: 12px; overflow: hidden; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; box-shadow: 0 4px 15px rgba(0,0,0,0.5); border: 1px solid #222; } .tiktok-main { position: relative; height: 550px; background: linear-gradient(135deg, #1a1a1a, #0a0a0a); display: flex; flex-direction: column; }...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
/* Container and Layout */
.tiktok-wrapper {
	background: #000;
	color: #fff;
	max-width: 350px;
	margin: 1em auto;
	border-radius: 12px;
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	box-shadow: 0 4px 15px rgba(0,0,0,0.5);
	border: 1px solid #222;
}

.tiktok-main {
	position: relative;
	height: 550px;
	background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
	display: flex;
	flex-direction: column;
}

/* Video/Main Image Area */
.tiktok-video {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.tiktok-video a.image img,
.tiktok-video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Overlay for Text and Buttons */
.tiktok-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 40%);
}

/* Sidebar Action Buttons */
.tiktok-sidebar {
	position: absolute;
	right: 12px;
	bottom: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.tk-profile-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 5px;
}

.tk-profile {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #ddd;
	border: 2px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	overflow: hidden;
}

.tk-profile a.image img,
.tk-profile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tk-plus {
	background: #ea4359;
	color: #fff;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	margin-top: -10px;
	z-index: 2;
	border: 2px solid #000;
}

.tk-action {
	text-align: center;
	font-size: 1.8em;
	text-shadow: 1px 1px 2px #000;
	cursor: pointer;
}

.tk-action span {
	display: block;
	font-size: 0.35em;
	font-weight: 600;
	margin-top: 4px;
}

/* Spinning Vinyl Animation */
.tk-disc-container {
	margin-top: 10px;
}

.tk-disc {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: radial-gradient(circle, #444 20%, #111 25%, #222 40%, #111 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	animation: tk-spin 4s linear infinite;
	border: 6px solid #222;
	font-size: 0.5em;
}

@keyframes tk-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Bottom Information Area */
.tiktok-bottom-info {
	padding: 15px;
	padding-right: 80px; /* Don't overlap sidebar */
}

.tk-user {
	font-weight: bold;
	font-size: 1.1em;
	margin-bottom: 5px;
	text-shadow: 1px 1px 2px #000;
}

.tk-desc {
	font-size: 0.95em;
	margin-bottom: 10px;
	line-height: 1.3;
	text-shadow: 1px 1px 2px #000;
}

/* Music Marquee */
.tk-music {
	font-size: 0.85em;
	display: flex;
	align-items: center;
	gap: 8px;
}

.tk-music-marquee {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	width: 150px;
}

.tk-music-text {
	display: inline-block;
	padding-left: 100%;
	animation: tk-marquee 8s linear infinite;
}

@keyframes tk-marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-100%); }
}

/* Optional Audio Player block */
.tk-audio {
	margin-top: 10px;
}

.tk-audio audio {
	height: 30px;
	width: 100%;
}

/* Easter Egg: Expandable Swipe Feed */
.tiktok-easter-egg {
	background: #000;
	border-top: 1px solid #222;
}

.tiktok-swipe-prompt {
	list-style: none;
	text-align: center;
	padding: 12px;
	font-size: 0.85em;
	color: #aaa;
	cursor: pointer;
	user-select: none;
	transition: background 0.2s, color 0.2s;
}

.tiktok-swipe-prompt:hover {
	background: #111;
	color: #fff;
}

.tiktok-easter-egg[open] .tiktok-swipe-prompt {
	border-bottom: 1px solid #222;
	color: #fff;
}

/* Horizontal Scrolling Logic */
.tiktok-swipe-feed {
	display: flex;
	overflow-x: auto;
	gap: 10px;
	padding: 15px 10px;
	background: #050505;
}

.tiktok-swipe-feed a.image,
.tiktok-swipe-feed > div {
	flex: 0 0 110px;
	height: 160px;
	background: #1a1a1a;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #222;
	position: relative;
}

.tiktok-swipe-feed img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}