text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 0 0;
filter: drop-shadow(1px 1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(0 2px 0 black) drop-shadow(0 -1px 0 black);
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black, 0 0, 2px 2px 8px black;
background: linear-gradient(red, black);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-text-stroke: 1px black;
writing-mode: vertical-rl;
text-orientation: downwards;
filter: drop-shadow(0px 1px black) drop-shadow(0 -1px black) drop-shadow(1px 0 black) drop-shadow(-1px 0 black);
filter: drop-shadow(0px 1px black) drop-shadow(0 -1px black) drop-shadow(1px 0 black) drop-shadow(-1px 0 black);
filter: drop-shadow( 0 1px black) drop-shadow( 1px 0 black) drop-shadow( 0 -1px black) drop-shadow( -1px 0 black) drop-shadow( 0 2px white) drop-shadow( 2px 0 white) drop-shadow( 0 -2px white) drop-shadow( -2px 0 white) drop-shadow( 0 3px black) drop-shadow( 3px 0 black) drop-shadow( 0 -3px black) drop-shadow(-3px 0 black) drop-shadow(1px 1px 0 red) drop-shadow(-1px 1px 0 red);
#cont {
display: grid;
grid-template-columns: 50% 50%;
}
in between your <style> & </style> tags.#column {
}
below #cont, still within your style tags. with your css knowledge, you can give your columns heights, borders, backgrounds, paddings, overflows, you name it!3. Enough talk, time for the html.<div id="cont">
<div id="column"></div>
<div id="column"></div>
</div>
grid-gap: 5px;
is what youre looking for, but feel free to change that 5px to literally anything else. paste this into #cont.now, my apostle, make something real neat and clean with this knowledge i have bestowed upon you.My example is below - i used W3Schools to test this out, which is also shown in the screenshot.margin: auto;
position: absolute;
top: 50%; left: 50%;
transform: translateX(-50%) translateY(-50%);
This should be your result below.box-shadow:inset -1px -1px #0a0a0a,inset 1px 1px #dfdfdf,inset -2px -2px grey,inset 2px 2px #fff;
<div id="wrapper">
before you do anything. close this tag with </div>
and write whatever you're trying to make between these tags!you can also put <div id="wrapper"></div>
before the rest of your html. it won't hurt anything. just put it wherever you'd like, as long as the div starts before anything else.NOTE: use this with a dark background.here's what your code should look like below.<div class="crt">
<!--your content goes here, whatever you put between these 2 div tags will be under an overlay effect and text will have like a warp effect i guess-->
</div>
NOTE: use on a dark background. unlike in the instructions i linked, make sure to use "class" instead of "id".also, this is carrd friendly and should automatically convert text without strokes or shadows to the flickery fun shit.<audio id='musicsrc' loop src='put your shit here'></audio>
there you have it. just paste your link in between the apostrophes or quotation marks.in order to HOST the file you want in there, i recommend dropbox or catbox - once youve uploaded your file, click around for the link.if youre using dropbox, now you have to edit your link a bit, otherwise it wont work. hey, stay with me here.look at this link. https://www.dropbox.com/s/9n6kg83z8nqdnm9/reverb.mp3?dl=0
okay, now remove the 'www' and replace it with 'dl', then remove the '?dl=0' tacked onto the end. your link should now look like this.https://dl.dropbox.com/s/9n6kg83z8nqdnm9/reverb.mp3
also, no, i did not shamelessly plug my favorite song or whatever. its a link to a rather amusing fart sound that echoes.anyway, there you have it. simple as that.https://dl.dropbox.com/s/zcxcm788quzwjo2/sh2%20item%20pickup%20sound.mp3
with "www" replaced with "dl" and youve removed the "dl=0" from the end of it, youre ready to go on ahead. catbox users dont need to worry about this step.paste<audio id="sound" src="Dropbox Link Here" preload="auto"></audio>
into an embed and replace "dropbox link here" with the link you have.now, add an image to your carrd.navigate to the settings of this image and click events.alright. now paste this into that text box.document.getElementById('sound').play();
and youre done!you can add as many sound effects as you want to your carrd, all you need to do is replace the audio id ("sound" by default) with some other word and edit your events code snippet's 'sound' to whatever youve changed the audio id to.<a href="#" data-toggle="tooltip" title="this is where you insert the tooltip text" class="">hey lois its peter if you need any extra help my cbox is always open</a>
is the format for adding tooltip to elements - <a> is just an example element you can wedge data-toggle="tooltip" title="this is where you insert the tooltip text" class=""
right beside in the first tag.and thats that! i hope i didnt explain this too clumsily - i dont even know where ive been for the past month<style>
@font-face {
font-family: font name here;
src: url(put your link in between these brackets);
}
</style>
font-family: font name here;
into text. it should be at the top.<style>
body {
font-family: font name here;
}
@font-face {
font-family: font name here;
src: url(put your link in between these brackets);
}
</style>
into your embed and everything on your carrd should be the same font.<style>
#txt {
font-family: font name here;
}
@font-face {
font-family: font name here;
src: url(put your link in between these brackets);
}
</style>
<div id="txt">ehehehe look lois im html in an embed on carrd</div>
<style>
html, a, a:hover {
cursor: url(https://64.media.tumblr.com/fa5e0737f465ad2f7c591df98c0496e0/e421920703343e33-44/s2048x3072/35f8e0a121325b0901b4aa09abb03df9ae721082.png), auto;
}
</style>
by default its a knife but if you replace the unfeasibly long link wedged in between the parentheses with whatever you want your cursor to be (though you kinda need to upload your png somewhere like discord, catbox or dropbox), youll have whatever you want really.if you dont want to make like a hamburger cursor or some bullshit like that and instead just want the funny question mark thing that pops up on links and shit, here you go.<style>
a:hover {
cursor: help;
}
</style>
theres other cursors like the question mark that dont require a link to an image and simply require whichever word that will specify them. heres a link to a list.also you can go look at cursors-4u to find a real zinger custom cursor. if youre on carrd, use the universal css/html code you see pasted above the stylesheet code.if you have access to a stylesheet, well... im sure you know what to do.<marquee behavior="scroll" direction="left" scrollamount="15">
That's an insult to the PEZ community.
</marquee>
Check out the scrollamount="15" bit. This ones easy as fuck: replace that 15 with a higher number if you want it to be so fast you probably cant even read it. I think the default speed without defining a speed is ... 10?Here let me dumb it down for you like crazy.Higher number than 10 = faster than default speedLower number than 10 = slower than default speedWANT IT EVEN MORE DUMBED DOWN? I feel like im in a tim and eric skit but here we go.Bigger number = fasterSmaller number = slowerSO THERE YOU GO! also the text in that snippet is from what is probably my favorite scene from Pawn Stars. I need to bring back the embedded corner video on desktop for that oneclicksound.playclip();
into the box below on click.NOTE: it seems only image elements support the on click event, so with other elements, so, say, text, you'll have to write html. use this on any element you'd like—the world's your oyster!HTML: onmouseover="mouseoversound.playclip()" onclick="clicksound.playclip()
before closing your element's opening tag. here's an example.<div onmouseover="mouseoversound.playclip()" onclick="clicksound.playclip()">hover/click me!</div>
...and there you have it!how do i customize my sounds? simple! upload your desired sound(s) to a file hosting site like dropbox or catbox, grab the link, then replace the original links found at the bottom of the script with your own. **please note that if you're using dropbox, you'll have to edit your link to make it work. look here, at the bottom, for a quick guide.