Upload files to "users"

master
Joseph 2024-11-05 17:50:09 +00:00
commit 02f48ebfab
5 changed files with 1463 additions and 0 deletions

141
users/Cognacc.css 100644
View File

@ -0,0 +1,141 @@
body {
font-family: "Cognac";
}
@font-face {
font-family: "Cognac";
src: url(https://files.catbox.moe/ntyvo9.otf);
}
p {
font-size: 30px;
}
{
font-family: Copperplate, "Copperplate Gothic Light", fantasy;
}
p::before {
content: url("https://files.catbox.moe/hzbj8i.png");
}
p::after {
content: url("https://files.catbox.moe/qg7l3v.png");
}
img[alt="marseybux"] {
content: url(https://files.catbox.moe/fhaqne.png) !important;
width: auto !important;
}
img[alt="coins"] {
content: url(https://files.catbox.moe/g1z6gt.png) !important;
width: auto !important;
}
.profile-pic-30-hat.hat {
transform: translatey(-10px);
content: url("https://files.catbox.moe/5rd6i5.png");
}
.fas {
background: url("https://files.catbox.moe/zb97jx.png");
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 100% 100%;
}
.btn.btn-danger,
.btn.btn-primary,
#button-unsub,
#button-sub {
background-image: url("https://files.catbox.moe/zb97jx.png");
background-size: 100% 100%;
color: white;
-webkit-text-stroke: 1px black;
}
#logo-WPD {
content: url("https://files.catbox.moe/b9302w.png");
height: 45px;
width: 45px;
}
#header--icon {
content: url("https://files.catbox.moe/hknll4.png");
}
#profile--name {
content: url("https://files.catbox.moe/wybkk2.png");
width: 400px;
}
a[href="/@CognacDreams/views"] {
font-size: 0px;
}
a[href="/@CognacDreams/views"]::after {
font-size: 16px;
content: "under obbo 👮";
}
a[href="/@CognacDreams/upvoters"] {
font-size: 0px;
}
a[href="/@CognacDreams/upvoters"]::after {
font-size: 16px;
content: "YG's";
}
a[href="/@CognacDreams/downvoters"] {
font-size: 0px;
}
a[href="/@CognacDreams/downvoters"]::after {
font-size: 16px;
content: "Wastemen";
}
a[href="/@CognacDreams/upvoting"] {
font-size: 0px;
}
a[href="/@CognacDreams/upvoting"]::after {
font-size: 16px;
content: "GM's";
}
a[href="/@CognacDreams/downvoting"] {
font-size: 0px;
}
a[href="/@CognacDreams/downvoting"]::after {
font-size: 16px;
content: "Opps";
}
a[href="/@CognacDreams/followers"] {
font-size: 0px;
}
a[href="/@CognacDreams/followers"]::after {
font-size: 16px;
content: "Customers";
}
a[href="/@CognacDreams/following"] {
font-size: 0px;
}
a[href="/@CognacDreams/following"]::after {
font-size: 16px;
content: "Plugs";
}
a[href="/@CognacDreams/blocking"] {
font-size: 0px;
}
a[href="/@CognacDreams/blocking"]::after {
font-size: 16px;
content: "put in a spliff";
}
a[href="/@CognacDreams/blockers"] {
font-size: 0px;
}
a[href="/@CognacDreams/blockers"]::after {
font-size: 16px;
content: "no hiding";
}
a[href="/@CognacDreams/muters"] {
font-size: 0px;
}
a[href="/@CognacDreams/muters"]::after {
font-size: 16px;
content: "uprang witnesses";
}
a[href="/@CognacDreams/muting"] {
font-size: 0px;
}
a[href="/@CognacDreams/muting"]::after {
font-size: 16px;
content: "yutes";
}
body {
background: url("https://i.watchpeopledie.tv/images/17191921234944417.webp")
center center fixed;
background-size: auto;
}

668
users/G.css 100644
View File

@ -0,0 +1,668 @@
/* Set the font size of the .srd class to 0 to hide original text */
.srd {
font-size: 0 !important; /* Hide any text in elements with the class .srd */
}
/* Define the animation for the before pseudo-element of .srd */
.srd:before {
animation: vaporeon-owo 8s linear normal forwards; /* Apply the vaporeon-owo animation for 8 seconds */
animation-iteration-count: 1; /* Play the animation only once */
content: ""; /* Set content to an empty string to ensure it renders */
}
/* Define the animation for the after pseudo-element of .srd */
.srd:after {
animation: flicker 0.8s linear alternate forwards; /* Apply flicker animation for 0.8 seconds */
animation-iteration-count: 12; /* Play the flicker animation 12 times */
content: "|"; /* Set the content to a vertical bar */
}
/* Define the flicker animation to create a blinking effect */
@keyframes flicker {
0% {
filter: opacity(0);
} /* Start with the element fully transparent */
100% {
filter: opacity(1);
} /* End with the element fully visible */
}
/* Define the 'vaporeon-owo' animation to progressively reveal a sentence */
@keyframes vaporeon-owo {
0% {
content: " ";
} /* Start with a blank space */
2% {
content: "I";
} /* Add the letter 'I' */
4% {
content: "I ";
} /* Add a space after 'I' */
6% {
content: "I c";
} /* Add 'c' */
8% {
content: "I ca";
} /* Add 'a' */
10% {
content: "I can";
} /* Complete the phrase 'I can' */
12% {
content: "I can ";
} /* Add a space after 'can' */
14% {
content: "I can s";
} /* Add 's' */
16% {
content: "I can se";
} /* Add 'e' */
18% {
content: "I can see";
} /* Complete the phrase 'I can see' */
20% {
content: "I can see ";
} /* Add a space */
22% {
content: "I can see t";
} /* Add 't' */
24% {
content: "I can see th";
} /* Add 'h' */
26% {
content: "I can see the";
} /* Complete 'the' */
28% {
content: "I can see the ";
} /* Add a space */
30% {
content: "I can see the e";
} /* Add 'e' */
32% {
content: "I can see the en";
} /* Add 'n' */
34% {
content: "I can see the ener";
} /* Add 'e' */
36% {
content: "I can see the energ";
} /* Add 'g' */
38% {
content: "I can see the energy";
} /* Complete 'energy' */
40% {
content: "I can see the energy ";
} /* Add a space */
42% {
content: "I can see the energy f";
} /* Add 'f' */
44% {
content: "I can see the energy fl";
} /* Add 'l' */
46% {
content: "I can see the energy flo";
} /* Add 'o' */
48% {
content: "I can see the energy flow";
} /* Complete 'flow' */
50% {
content: "I can see the energy flowing";
} /* Complete 'flowing' */
52% {
content: "I can see the energy flowing ";
} /* Add a space */
54% {
content: "I can see the energy flowing t";
} /* Add 't' */
56% {
content: "I can see the energy flowing th";
} /* Add 'h' */
58% {
content: "I can see the energy flowing thr";
} /* Add 'r' */
60% {
content: "I can see the energy flowing thro";
} /* Add 'o' */
62% {
content: "I can see the energy flowing throu";
} /* Add 'u' */
64% {
content: "I can see the energy flowing throug";
} /* Add 'g' */
66% {
content: "I can see the energy flowing through";
} /* Complete 'through' */
68% {
content: "I can see the energy flowing through ";
} /* Add a space */
70% {
content: "I can see the energy flowing through e";
} /* Add 'e' */
72% {
content: "I can see the energy flowing through ev";
} /* Add 'v' */
74% {
content: "I can see the energy flowing through eve";
} /* Add 'e' */
76% {
content: "I can see the energy flowing through ever";
} /* Add 'r' */
78% {
content: "I can see the energy flowing through every";
} /* Add 'y' */
80% {
content: "I can see the energy flowing through everyt";
} /* Add 't' */
82% {
content: "I can see the energy flowing through everyth";
} /* Add 'h' */
84% {
content: "I can see the energy flowing through everythi";
} /* Add 'i' */
86% {
content: "I can see the energy flowing through everythin";
} /* Add 'n' */
88% {
content: "I can see the energy flowing through everything";
} /* Complete 'everything' */
90% {
content: "I can see the energy flowing through everything ";
} /* Add a space */
92% {
content: "I can see the energy flowing through everything m";
} /* Add 'm' */
94% {
content: "I can see the energy flowing through everything ma";
} /* Add 'a' */
96% {
content: "I can see the energy flowing through everything man";
} /* Add 'n' */
100% {
content: "I can see the energy flowing through everything man!";
} /* Complete the sentence with an exclamation mark */
}
/* Apply styles for screens that are 768px or wider */
@media (min-width: 768px) {
.srd:after,
.srd:before {
font-size: 16px; /* Set font size to 16px for pseudo-elements on larger screens */
}
}
/* Apply styles for screens that are smaller than 768px */
@media (max-width: 768px) {
.srd:after,
.srd:before {
font-size: 11.5px; /* Set font size to 11.5px for pseudo-elements on smaller screens */
}
}
/* Gradient text for multiple elements */
a,
p,
i,
h1,
h2,
h3,
h4,
h5,
h6,
li,
.btn,
.dropdown-menu,
.navbar-light,
.navbar-dark,
.navbar button {
background-image: linear-gradient(
120deg,
#FF0000,
#FFFF00,
#00FF00
) !important;
background-clip: text !important;
color: #0000 !important; /* Make text invisible but preserve the gradient */
}
/* Gradient background for srd */
.srd {
background-image: linear-gradient(
120deg,
#FF0000,
#FFFF00,
#00FF00
) !important;
}
/* Blur and background color for navbar */
#navbar {
backdrop-filter: blur(5px) !important;
background-color: #00FF00 !important;
}
/* Custom header icon */
#header--icon {
content: url(https://files.catbox.moe/v6zgao.webp) !important;
}
/* Hue rotation for logo */
#logo-WPD {
filter: hue-rotate(120deg) !important;
}
/* Custom dropdown menu width */
.dropdown-menu {
width: 230px !important;
}
/* Jumbotron styling with animation */
.jumbotron {
margin: 50px !important;
background-image: url(https://pomf2.lain.la/f/vsq9d7zf.webp) !important;
background-size: cover !important;
background-attachment: fixed !important;
background-position: center !important;
animation: sway 3s ease-in-out infinite alternate !important;
border-image: linear-gradient(45deg, #FF0000, #FFFF00, #00FF00) 1 !important;
border: 5px solid;
}
/* Define the 'sway' animation to create a slight back-and-forth rotation effect */
@keyframes sway {
0% {
transform: rotate(-0.3deg); /* Start by rotating slightly to the left */
}
100% {
transform: rotate(0.3deg); /* End by rotating slightly to the right */
}
}
/* Background for columns and rows */
.col,
div.row {
background: #0005 !important;
}
/* Custom borders for various elements */
.form-control,
.btn,
.navbar-nav,
.navbar,
#profile--groups,
#profile--awards,
#profile-mobile--groups,
#profile-mobile--awards,
#header,
#fixed-bar-mobile,
hr {
border-image: linear-gradient(120deg, #FF0000, #FFFF00, #00FF00) 1 !important;
border: 2px solid;
}
/* Hide comments from specific users */
div[id^="comment-"]:has(.user-info a[href="/@Mujahh"]) {
display: none !important; /* Hides comments from these users */
}
/* Hide the original TrueScore text by setting the font size to 0 */
p#profile--info--truescore,
p#profile-mobile--info--truescore {
font-size: 0 !important;
}
/* Display a fake TrueScore value after the original element, with a font size of 14px */
p#profile--info--truescore:after,
p#profile-mobile--info--truescore:after {
content: "True score: 999999999" !important; /* Set the fake TrueScore text */
font-size: 14px !important; /* Set the font size for the fake TrueScore */
}
/* Change the cursor to text when hovering over the fake TrueScore */
p#profile--info--truescore:hover:after,
p#profile-mobile--info--truescore:hover:after {
cursor: text !important; /* Set cursor to indicate text interaction */
}
/* Hide the original joined date text for desktop */
#profile--joined {
font-size: 0 !important; /* Hide the original text */
position: relative; /* Set position relative to allow absolute positioning of the tooltip */
}
/* Add the new joined date text for desktop */
#profile--joined:after {
content: "Joined April 25, 2022" !important; /* New date text */
font-size: 14px !important; /* Font size for the new text */
}
/* Tooltip styling for hover (desktop version, resembling mobile) */
#profile--joined:hover::before {
content: "Apr 25, 2022, 07:27 PM CDT" !important; /* Full date and time only */
font-size: 10px !important; /* Ensure tooltip font size is 14px */
background-color: rgba(
0,
0,
0,
0.7
); /* Transparent black background for better visibility */
color: white; /* Text color for the tooltip */
padding: 8px; /* Increased padding for a larger box */
border-radius: 4px; /* Rounded corners for the tooltip */
position: absolute; /* Position it above the text */
bottom: calc(
100% + 5px
); /* Move the tooltip down by 5px from the element */
left: 50%; /* Center it horizontally */
transform: translateX(-50%); /* Adjust to center */
white-space: nowrap; /* Prevent line breaks */
z-index: 10; /* Ensure it appears above other elements */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Black shadow for better depth */
}
/* Mobile-specific styles */
/* Hide the original joined date text for mobile */
#profile-mobile--joined {
font-size: 0 !important; /* Hide the original text on mobile */
position: relative; /* Set position relative to allow absolute positioning of the tooltip */
}
/* Add the new joined date text for mobile */
#profile-mobile--joined:after {
content: "Joined April 25, 2022" !important; /* New date text */
font-size: 14px !important; /* Font size for the new text */
}
/* Tooltip styling for hover on mobile */
#profile-mobile--joined:hover::before {
content: "Apr 25, 2022, 07:27 PM CDT" !important; /* Full date and time only */
font-size: 10px !important; /* Ensure tooltip font size is 14px */
background-color: rgba(0, 0, 0, 0.7); /* Transparent black background */
color: white; /* Text color for the tooltip */
padding: 8px; /* Increased padding for a larger box */
border-radius: 4px; /* Rounded corners for the tooltip */
position: absolute; /* Position it above the text */
bottom: calc(
100% + 5px
); /* Move the tooltip down by 5px from the element */
left: 50%; /* Center it horizontally */
transform: translateX(-50%); /* Adjust to center */
white-space: nowrap; /* Prevent line breaks */
z-index: 10; /* Ensure it appears above other elements */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Black shadow for better depth */
}
/* Change the image for elements with alt text 'marseybux' */
img[alt="marseybux"] {
content: url(https://files.catbox.moe/gisi9r.webp) !important;
width: auto !important;
}
/* Change the image for elements with alt text 'coins' */
img[alt="coins"] {
content: url(https://files.catbox.moe/ghgknm.webp) !important;
width: auto !important;
}
/* Hide the original button text by setting the font size to 0 and add an animation */
button#button-sub.btn.btn-primary,
#button-sub2 {
font-size: 0px; /* Make the original text invisible by setting font size to 0 */
animation: party 2s infinite alternate linear !important; /* Apply an infinite animation named 'party' with a 2-second duration, alternating between keyframes */
}
/* Add a custom text "become a G" after the specified buttons */
button#button-sub.btn.btn-primary:after,
#button-sub2:after {
font-size: 14.5px; /* Set font size for the custom text */
content: "become a G"; /* The custom text to display after the buttons */
}
/* Hide all elements with the class 'btn-danger' */
button.btn.btn-danger {
display: none !important; /* Ensure the button is not displayed */
}
/* Hide specific elements with the ID 'button-unsub' and 'button-unsub2', including those with additional classes */
button#button-unsub,
button#button-unsub.btn.btn-secondary,
#button-unsub2 {
display: none !important; /* Ensure these buttons are not displayed */
}
/* Apply an animation to links with specific href values */
a[href="/!stabbing"],
a[href="/!britbongers"] {
animation: party 2s infinite alternate linear !important; /* Apply the 'party' animation to these links */
}
/* Cognacc Comment Change */
#comment-text-4287820 {
visibility: hidden;
}
/* Cognacc Comment Change */
#comment-text-4287820::before {
content: "I love you Klez, I want you inside of me. Everyday I think about you and touch myself, please come over, and don't make me wait for too long";
visibility: visible;
}
/* NorfFC_4Ever Comment Change */
#comment-text-4291262 {
visibility: hidden;
}
/* NorfFC_4Ever Comment Change */
#comment-text-4291262::before {
content: "You are just so amazing. There's nobody I love more than you Klez, I want your massive cock inside my butthole";
visibility: visible;
}
/* NorfFC_4Ever Comment Change */
#comment-text-4295335 {
visibility: hidden;
}
/* NorfFC_4Ever Comment Change */
#comment-text-4295335::before {
content: "Hi babe, last night was awesome. When am I gonna be able to see u again? ;)";
visibility: visible;
}
/* SubaruXO Comment Change */
#comment-text-4298480 {
visibility: hidden;
}
/* SubaruXO Comment Change */
#comment-text-4298480::before {
content: "I have never met a man this stunning in my life. The way he carries himself, you can just tell he gets tons of pussy. I want to be like you Klez!!!";
visibility: visible;
}
/* chuddbase comment change */
#comment-text-4294585 {
visibility: hidden;
}
/* chuddbase comment change */
#comment-text-4294585::before {
content: "Oh Klez, I love you so much and I can't stop thinking about you! I've been feeling so lonely without you. Please can you just come over for a quicky and destroy my insides again, last time was just so gooooddd... (Also I would let u pee on me any day)";
visibility: visible;
}
/* Dwhite_Dynamite Comment Change */
#comment-text-4287228 {
visibility: hidden;
}
/* Dwhite_Dynamite Comment Change */
#comment-text-4287228::before {
content: "Klez, you have my heart. I think about you every day, and I can't help but dream of you. Please come over soon—I miss you more than words can express.";
visibility: visible;
}
/* Chuckles98 Comment Change */
#comment-text-4285327 {
visibility: hidden;
}
/* Chuckles98 Comment Change */
#comment-text-4285327::before {
content: "Your presence lights up my day! I can’t help but smile whenever I think of you.";
visibility: visible;
}
/* G Comment Change */
#comment-text-4260562 {
visibility: hidden;
}
/* G Comment Change */
#comment-text-4260562::before {
content: "am i gay?";
visibility: visible;
}
/* Modify Follwers Count */
#profile--followers {
font-size: 0 !important;
}
#profile--followers:after {
content: "2,792,421 followers" !important;
font-size: 14px !important;
}
#profile--followers:hover:after {
cursor: text !important;
}
/* Modify Coins Amount */
span#profile-coins-amount,
span#profile-coins-amount-mobile {
font-size: 0 !important;
}
span#profile-coins-amount:after,
span#profile-coins-amount-mobile:after {
content: "69,420,350" !important;
font-size: 14px !important;
}
span#profile-coins-amount:hover:after,
span#profile-coins-amount-mobile:hover:after {
cursor: text !important;
}
/* Modify Marseybux Amount */
span#profile-bux-amount,
span#profile-bux-amount-mobile {
font-size: 0 !important;
}
span#profile-bux-amount:after,
span#profile-bux-amount-mobile:after {
content: "69,420,350" !important;
font-size: 14px !important;
}
span#profile-bux-amount:hover:after,
span#profile-bux-amount-mobile:hover:after {
cursor: text !important;
}
/* Modify True Score */
p#profile--info--truescore,
p#profile-mobile--info--truescore {
font-size: 0 !important;
}
p#profile--info--truescore:after,
p#profile-mobile--info--truescore:after {
content: "True score: 69,420,350" !important;
font-size: 14px !important;
}
p#profile--info--truescore:hover:after,
p#profile-mobile--info--truescore:hover:after {
cursor: text !important;
}
/* Modify Effortposts Amount */
a[href="/search/posts?q=author:veracious+effortpost:true"] {
font-size: 0 !important;
}
a[href="/search/posts?q=author:veracious+effortpost:true"]:after {
content: "420" !important;
font-size: 14px !important;
font-weight: bold;
}
a[href="/search/posts?q=author:veracious+effortpost:true"]:hover:after {
cursor: text !important;
}
/* Change User ID */
#profile--info--id {
font-size: 0 !important;
}
#profile--info--id:after {
content: "User ID: 1" !important;
font-size: 14px !important;
}
#profile--info--id:hover:after {
cursor: text !important;
}
/* Remove Profile Anthem Toggle */
button#toggle-anthem {
display: none !important;
}
/* Modify Gift Marseybux Button Text */
.btn[data-onclick="toggleElement('bux-transfer', 'bux-transfer-amount')"],
.btn[data-onclick="toggleElement('bux-transfer-mobile', 'bux-transfer-amount-mobile')"] {
font-size: 0px;
}
.btn[data-onclick="toggleElement('bux-transfer', 'bux-transfer-amount')"]:after,
.btn[data-onclick="toggleElement('bux-transfer-mobile', 'bux-transfer-amount-mobile')"]:after {
content: "Gift Me MarseyBux Retard";
font-size: 1rem;
}
/* Modify Gift Coins Button Text */
.btn[data-onclick="toggleElement('coin-transfer', 'coin-transfer-amount')"],
.btn[data-onclick="toggleElement('coin-transfer-mobile', 'coin-transfer-amount-mobile')"] {
font-size: 0px;
}
.btn[data-onclick="toggleElement('coin-transfer', 'coin-transfer-amount')"]:after,
.btn[data-onclick="toggleElement('coin-transfer-mobile', 'coin-transfer-amount-mobile')"]:after {
content: "Gift Me Coins Retard";
font-size: 1rem;
}
/* Modify Message Button Text */
.btn[data-onclick="toggleElement('message', 'input-message')"],
.btn[data-onclick="toggleElement('message-mobile', 'input-message-mobile')"] {
font-size: 0px;
}
.btn[data-onclick="toggleElement('message', 'input-message')"]:after,
.btn[data-onclick="toggleElement('message-mobile', 'input-message-mobile')"]:after {
content: "Send My Dumbass A Message";
font-size: 1rem;
}
/* Hide Block and Mute Button */
.actionbtns button.btn.btn-danger {
display: none !important;
}
/* Remove Moderation History Button */
#moderation-history-desktop,
#moderation-history-mobile {
display: none !important;
}
/* Hide Alternative Accounts */
span#profile--alts,
ul#profile--alts-list {
display: none;
}
/* Modify Chat Button Text */
.actionbtns > form > * {
font-size: 0px;
}
.actionbtns > form > *:after {
content: "Create A Chat Retard";
font-size: 1rem;
}
body {
background: url("https://i.watchpeopledie.tv/images/17287537793153126.webp")
center center fixed;
background-size: auto;
}

View File

@ -0,0 +1,138 @@
h3#profile--name {
content: url("https://files.catbox.moe/024iy0.png");
width: 200px;
filter: drop-shadow(0px 0px 3px red);
}
:root {
--secondary: red;
--white: black;
--black: red;
--light: red;
--muted: red !important;
--gray: black;
--gray-100: #000000;
--gray-200: red;
--gray-300: black;
--gray-400: red;
--gray-500: black;
--gray-600: black;
--gray-700: black;
--gray-800: black;
--gray-900: black;
--background: 0, 0, 0;
}
img#header--icon {
content: url("https://files.catbox.moe/5x3sxl.png");
}
p::after,
p::before {
content: url("https://files.catbox.moe/soyn6t.png");
}
a,
p,
i,
body {
cursor: url(https://files.catbox.moe/r7doe1.png)crosshair;
}
#userpage::after {
content: "";
background-image: url("https://files.catbox.moe/msxi0n.png");
position: fixed;
top: 0px;
left: 0px;
width: 100%;
pointer-events: none;
height: 100%;
z-index: 222222;
background-size: cover;
bottom: initial;
background-repeat: no-repeat;
opacity: ;
}
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
.btn,
button,
li,
ol,
dev.mt-3,
span,
div.srd {
color: red !important;
filter: drop-shadow(0px 0px 2px red);
}
.srd {
background-color: #010101 !important;
}
a:hover,
i:hover,
button:hover,
.btn:hover {
filter: drop-shadow(0px 0px 3px red);
}
h3#profile--name {
padding: 1.5px 5px 3px !important;
border-radius: 5px !important;
background-color: black;
}
/* Change the image for elements with alt text 'marseybux' */
img[alt="marseybux"] {
content: url(https://files.catbox.moe/zh16c1.gif) !important;
width: auto !important;
}
/* Change the image for elements with alt text 'coins' */
img[alt="coins"] {
content: url(https://files.catbox.moe/s6nwud.gif) !important;
width: auto !important;
}
body {
background: url("https://i.watchpeopledie.tv/images/17304457856833155.webp")
center center fixed;
background-size: auto;
}

264
users/scvm.css 100644
View File

@ -0,0 +1,264 @@
button,
a,
li,
ul,
.comment-actions,
.fa,
h3,
.fas,
ul.d-none.d-md-flex.list-inline.text-right.text-md-left,
#header,
.srd,
a.mx-1,
div#profile--simphate,
div.font-weight-bolder-mb-2,
a.mr-1,
span,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
#text,
a.span,
span#user-coins-ammount,
span#user-bux-ammount,
span#profile-coins-ammount,
span#profile-bux-ammount,
bdi.text-break,
div.user-info,
.btn {
font-size: 13px;
background: url("https://pomf2.lain.la/f/b6anadc9.gif") !important;
-webkit-background-clip: text !important;
background-clip: text !important;
color: transparent !important;
}
.jumbotron {
opacity: 100%;
color: white;
margin: 75px;
border-style: solid !important;
border-color: #ff00575e !important;
border-radius: 2px !important;
border-width: 2px !important;
}
span#profile-coins-amount::before {
content: "" !important;
}
span#profile-coins-amount::after {
content: "" !important;
}
span#profile-bux-amount::before {
content: "2" !important;
}
div#header--username--outerdiv {
text-align: justify !important;
}
h4,
h5,
h6,
.comment-form-space-u_488221 {
color: #333333 !important;
border-style: solid !important;
border-color: black !important;
border-width: thin !important;
}
.profile--name,
text-muted font-weight-bold {
color: azure !important;
}
hr {
height: 07;
}
blockquote::before {
content: "Quote" !important;
}
blockquote::after {
content: "End quote " !important;
}
blockquote {}
}
#profile-coin-amount:after,
profile-coin--amount-mobile:after {
content: "8";
display: inline-block;
}
#profilestuff:before {
color: PapayaWhip !important margin-top: 2rem;
font-size: 1.1rem;
font-weight: 650;
content: "";
}
* {
color: #d9d9d9 !important;
border-color: #7a004a !important;
font-family: helvetica;
font-weight: bold;
text-shadow: 1px 1px 5px #c4dfff !important;
}
.srd {
background-color: black !important;
color: PapayaWhip !important;
}
#header--icon {
height: 35px;
content: url(https://files.catbox.moe/o7r4gf.png)
}
#logo-WPD {
height: 35px;
width: 175px;
content: url(https://pomf2.lain.la/f/4atsgcqh.gif)
}
a:hover,
i:hover,
button:hover,
.btn:hover {
filter: drop-shadow(0px 0px 0px #666666);
}
btn {
font-size: 20px !important;
}
body::before {
content: " ";
display: block;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(rgb(18 16 16 / 48%) 50%, rgb(0 0 0 / 0%) 50%);
z-index: 2;
background-size: 100% 3.5px, 2px 100%;
pointer-events: none;
}
:root {
--background: transparent !important;
}
body {
background: url("https://pomf2.lain.la/f/1x27z4wp.gif") center center fixed;
background-size: auto;
position: static
}
#profile--info--truescore {
display: none;
}
#profile--info--casino-winnings {}
#profile--info--lottery-winnings {}
#profile--info--hats-owned {
display: none;
}
#profile--info--spent {
display: none;
}
#profile--info--effortposts {
display: none;
}
.comment-anchor {
border-style: solid !important;
border-color: #ff007b !important;
border-radius: 2px !important;
border-width: 1px !important;
box-shadow: 0px 0px 4px #ff00575e !important;
}
h3 {
content: url("https://pomf2.lain.la/f/xqcls4i4.png");
}
#profile--simphate a {
background-color: #red;
border-radius: 1px;
animation: textShadow 1.6s infinite;
}
.srd {
font-size: 0px
}
.srd:after {
text-align: center;
font-size: 14px;
content: "can we talk?"
}
p.text-uppercase.my-0,
p.text-uppercase.my-0.pb-1 {
font-size: 0px !important;
text-align: center !important
}
p.text-uppercase.my-0:after {
content: "stop namelocking me" !important;
font-size: 14px !important;
text-transform: none !important;
}
p.text-uppercase.my-0.pb-1:after {
font-size: 14px !important;
content: "gangs" !important;
text-transform: none !important;
}
{
.actionbtns>form>* {
display: none;
}
.comment,
.flex-row.box-shadow-bottom.d-flex.justify-content-center.justify-content-md-between.align-items-center {
display: none !important;
}
.form-text.text-small.p-0.m-0 {
font-size: 0 !important;
text-align: center !important;
}
.form-text.text-small.p-0.m-0:after {
content: "";
font-size: 20px !important;
text-align: center !important;
}
ul.pagination.pagination-sm.mb-0.pl-1.mt-4 {
display: none !important;
}
}
body {
background: url("https://i.watchpeopledie.tv/images/17279012957564304.webp") center center fixed;
background-size: auto;
}

252
users/srNand0.css 100644
View File

@ -0,0 +1,252 @@
{
Trying to use a fucking custom font Regular: https: //files.catbox.moe/9vet1m.ttf
Medium: https: //files.catbox.moe/ap02k1.ttf
}
@font-face {
font-family: "Poppins";
src: url(https://files.catbox.moe/9vet1m.ttf);
}
* {
font-family: "Poppins";
}
#profile--pronouns,
#profile-mobile--pronouns {
font-size: 0px !important;
}
#profile--pronouns::after,
#profile-mobile--pronouns::after {
font-size: 14px !important;
content: "kill/me";
}
.srd {
font-size: 0px;
background-color: #F00;
}
.srd::after {
color: #FFFFBC;
font-size: 24px;
filter: drop-shadow(0px 0px 8px #FFBC00);
content: "WHAT IS THE HUMAN LIMIT?";
}
h1,
#profile--name span,
#profile-mobile--name span {
animation: bloom 4s 0s linear normal infinite !important;
}
#profile--name span,
#profile-mobile--name span {
border-radius: 0px !important;
padding: 0px !important;
background-color: #00000000 !important;
}
h3 span {
position: relative;
padding: 0px 8px;
border-radius: 4px;
background: #000;
color: #FFF;
}
h3 span::before,
h3 span::after {
position: absolute;
content: attr(id);
padding: 0px 4px;
background: #000;
overflow: hidden;
}
h3 span::before {
color: #FFFFBC;
left: 2px;
text-shadow: -1px 0 #FFBC00, -2px 0 #FF0000;
animation: glitch-1 2s 0s linear normal infinite;
}
h3 span::after {
color: #BCFFFF;
left: 6px;
text-shadow: 1px 0 #00BCFF, 2px 0 #0000FF;
animation: glitch-2 2s 0s linear normal infinite;
}
@keyframes glitch-1 {
0% {
clip-path: circle(0);
}
20% {
clip-path: circle(0);
}
24% {
clip-path: polygon(0% 50%, 0% 75%, 100% 75%, 100% 50%);
}
28% {
clip-path: circle(0);
}
30% {
clip-path: circle(0);
}
32% {
clip-path: polygon(0% 20%, 0% 40%, 100% 40%, 100% 20%);
}
34% {
clip-path: circle(0);
}
52% {
clip-path: circle(0);
}
56% {
clip-path: polygon(0% 25%, 0% 75%, 100% 75%, 100% 25%);
}
60% {
clip-path: circle(0);
}
80% {
clip-path: circle(0);
}
82% {
clip-path: polygon(0% 15%, 0% 30%, 100% 30%, 100% 15%);
}
84% {
clip-path: circle(0);
}
86% {
clip-path: circle(0);
}
88% {
clip-path: polygon(0% 70%, 0% 80%, 100% 80%, 100% 70%);
}
90% {
clip-path: circle(0);
}
100% {
clip-path: circle(0);
}
}
@keyframes glitch-2 {
0% {
clip-path: circle(0);
}
6% {
clip-path: circle(0);
}
8% {
clip-path: polygon(0% 20%, 0% 40%, 100% 40%, 100% 20%);
}
10% {
clip-path: circle(0);
}
40% {
clip-path: circle(0);
}
42% {
clip-path: polygon(0% 70%, 0% 80%, 100% 80%, 100% 70%);
}
44% {
clip-path: circle(0);
}
46% {
clip-path: circle(0);
}
48% {
clip-path: polygon(0% 15%, 0% 30%, 100% 30%, 100% 15%);
}
50% {
clip-path: circle(0);
}
70% {
clip-path: circle(0);
}
74% {
clip-path: polygon(0% 25%, 0% 50%, 100% 50%, 100% 25%);
}
78% {
clip-path: circle(0);
}
90% {
clip-path: circle(0);
}
94% {
clip-path: polygon(0% 30%, 0% 70%, 100% 70%, 100% 30%);
}
98% {
clip-path: circle(0);
}
100% {
clip-path: circle(0);
}
}
@keyframes bloom {
0% {
color: #FF0000;
filter: drop-shadow(0px 0px 1px #FF000000) drop-shadow(0px 0px 2px #FF000000) drop-shadow(0px 0px 4px #FF000000) drop-shadow(0px 0px 8px #FF000000) drop-shadow(0px 0px 16px #FF000000);
}
25% {
color: #FF8963;
filter: drop-shadow(0px 0px 1px #FF000080) drop-shadow(0px 0px 2px #FF000080) drop-shadow(0px 0px 4px #FF000080) drop-shadow(0px 0px 8px #FF000080) drop-shadow(0px 0px 16px #FF000080);
}
50% {
color: #FFFFBC;
filter: drop-shadow(0px 0px 1px red) drop-shadow(0px 0px 2px red) drop-shadow(0px 0px 4px red) drop-shadow(0px 0px 8px red) drop-shadow(0px 0px 16px red);
}
75% {
color: #FF8963;
filter: drop-shadow(0px 0px 1px #FF000080) drop-shadow(0px 0px 2px #FF000080) drop-shadow(0px 0px 4px #FF000080) drop-shadow(0px 0px 8px #FF000080) drop-shadow(0px 0px 16px #FF000080);
}
100% {
color: #FF0000;
filter: drop-shadow(0px 0px 1px #FF000000) drop-shadow(0px 0px 2px #FF000000) drop-shadow(0px 0px 4px #FF000000) drop-shadow(0px 0px 8px #FF000000) drop-shadow(0px 0px 16px #FF000000);
}
}
body {
background: url("https://i.watchpeopledie.tv/images/1728626779933711.webp") center center fixed;
background-size: auto;
}