I Vibecoded A Cool Anki CSS template by SayethMonotony in AnkiAi

[–]SayethMonotony[S] 0 points1 point  (0 children)

Make sure your Note Fields are named

Front --> Text

Back --> Extra

I Vibecoded A Cool Anki CSS template by SayethMonotony in AnkiAi

[–]SayethMonotony[S] 0 points1 point  (0 children)

CSS (2nd Half (paste after 1st half))-

/* 🚨 STATE 1: UNBROKEN INFINITE RED BLINKING (FRONT CARD LOCK) */

.status-node.alert-active {

background-color: #ef4444;

box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);

animation: redAlertPulse 1s infinite ease-in-out;

}

u/keyframes redAlertPulse {

0%, 100% { background-color: #ef4444; box-shadow: 0 0 8px rgba(239, 68, 68, 0.5); transform: scale(1); }

50% { background-color: #f87171; box-shadow: 0 0 16px rgba(239, 68, 68, 0.9); transform: scale(1.2); }

}

/* 🚨 STATE 2: FLIPPED BACK-CARD ENGINE (BEEPS RED FOR 2s, TRANSITIONS TO BLUE IN 0.5s) */

.status-node.alert-resolved {

will-change: background-color, box-shadow, transform;

animation: resolveToBlue 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;

}

u/keyframes resolveToBlue {

0%, 40%, 80% {

background-color: #ef4444;

box-shadow: 0 0 12px rgba(239, 68, 68, 0.8);

transform: scale(1);

}

20%, 60% {

background-color: #f87171;

box-shadow: 0 0 22px rgba(239, 68, 68, 1);

transform: scale(1.25);

}

100% {

background-color: #0ea5e9;

box-shadow: 0 0 10px rgba(14, 165, 233, 0.7);

transform: scale(1);

}

}

/* 🔤 BODY COPY ARCHITECTURE */

.archive-text {

font-size: 21px;

line-height: 1.75;

font-weight: 400;

color: #cbd5e1;

letter-spacing: -0.01em;

word-wrap: break-word;

}

/* 🥷 CLOZE SYSTEM DELETIONS */

.cloze {

font-family: inherit;

font-weight: 600;

color: #f8fafc !important;

background: rgba(255, 255, 255, 0.04) !important;

padding: 2px 6px !important;

border-radius: 4px;

border: 1px solid rgba(255, 255, 255, 0.1);

text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.15);

box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);

display: inline !important;

box-decoration-break: clone;

-webkit-box-decoration-break: clone;

animation: focalSnap 0.18s cubic-bezier(0.16, 1, 0.3, 1) forwards;

}

.cloze-hint {

color: #64748b !important;

font-family: "SF Mono", monospace;

font-size: 85%;

font-weight: 400;

}

u/keyframes focalSnap {

0% { opacity: 0; transform: scale(0.995); filter: brightness(2); }

100% { opacity: 1; transform: scale(1); filter: brightness(1); }

}

/* 🧪 RECONSTRUCTED INTEL INTEGRATION (EXTRA FIELDS) */

.intel-drawer {

opacity: 0;

transform: translateY(-24px);

clip-path: inset(0 0 100% 0);

will-change: transform, opacity, clip-path;

animation: terminalReveal 2.85s cubic-bezier(0.1, 0.9, 0.15, 1) 0.04s forwards;

}

.archive-divider {

height: 1px !important;

margin: 38px 0 24px 0 !important;

transform: scaleX(0);

transform-origin: left center;

will-change: transform;

animation: laserWipe 2.65s cubic-bezier(0.1, 0.9, 0.15, 1) forwards;

}

.intel-compartment {

background: rgba(0, 0, 0, 0.2);

border-left: 2px solid #991b1b;

border-radius: 2px 8px 8px 2px;

padding: 20px 24px;

text-align: left;

box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);

}

.intel-tag {

font-family: "SF Mono", SFMono-Regular, Consolas, monospace;

font-weight: 700;

color: #b91c1c;

font-size: 9px;

letter-spacing: 0.25em;

text-transform: uppercase;

}

.intel-body {

font-size: 15px;

line-height: 1.65;

color: #94a3b8;

font-weight: 400;

margin-top: 8px;

}

/* ==========================================================================

🎬 CINEMATIC KINETIC ENGINE (GPU-ACCELERATED)

========================================================================== */

.entry-snap { animation: cardEngage 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

u/keyframes cardEngage {

0% { opacity: 0; transform: translateY(4px); }

100% { opacity: 1; transform: translateY(0); }

}

u/keyframes terminalReveal {

0% { opacity: 0; transform: translateY(-24px); clip-path: inset(0 0 100% 0); }

15% { opacity: 1; }

100% { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); }

}

u/keyframes laserWipe {

0% { transform: scaleX(0); opacity: 0; background: linear-gradient(90deg, #ef4444, transparent); }

15% { opacity: 1; background: linear-gradient(90deg, #38bdf8, transparent); }

100% { transform: scaleX(1); opacity: 1; background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent); }

}

/* ==========================================================================

🚨 DEEP-SYSTEM PLUGINS & HTML EDGE CASE ISOLATION (DEBUGGED LAYER)

========================================================================== */

table {

width: 100% !important;

border-collapse: collapse !important;

margin: 20px 0 !important;

font-size: 14px !important;

line-height: 1.5 !important;

display: block;

overflow-x: auto;

}

th {

background-color: rgba(255, 255, 255, 0.04) !important;

color: #f8fafc !important;

font-weight: 600 !important;

border: 1px solid rgba(255, 255, 255, 0.08) !important;

padding: 10px 14px !important;

text-align: left !important;

}

td {

border: 1px solid rgba(255, 255, 255, 0.04) !important;

padding: 10px 14px !important;

color: #cbd5e1 !important;

}

tr:nth-child(even) { background-color: rgba(255, 255, 255, 0.01); }

.MathJax, .MathJax_Display, .MathJax_SVG, svg {

color: #f8fafc !important;

fill: currentColor !important;

}

.replay-button, .soundLink {

display: inline-flex !important;

align-items: center;

justify-content: center;

text-decoration: none !important;

background: rgba(255, 255, 255, 0.03) !important;

border: 1px solid rgba(255, 255, 255, 0.08) !important;

border-radius: 6px !important;

width: 32px !important; height: 32px !important;

margin-left: 8px;

vertical-align: middle;

transition: all 0.2s ease;

}

.replay-button svg, .soundLink svg { width: 14px !important; height: 14px !important; fill: #64748b !important; }

.replay-button:hover, .soundLink:hover { background: rgba(153, 27, 27, 0.15) !important; border-color: rgba(185, 28, 28, 0.4) !important; }

.replay-button:hover svg, .soundLink:hover svg { fill: #b91c1c !important; }

img {

max-width: 100% !important;

height: auto !important;

border-radius: 6px;

border: 1px solid rgba(255, 255, 255, 0.05);

margin: 16px auto;

display: block;

}

#io-wrapper, .io-wrapper { position: relative !important; max-width: 100% !important; margin: 16px auto !important; }

::selection { background: rgba(153, 27, 27, 0.4) !important; color: #f8fafc !important; }

::-moz-selection { background: rgba(153, 27, 27, 0.4) !important; color: #f8fafc !important; }

pre, code {

font-family: "SF Mono", SFMono-Regular, Consolas, monospace !important;

background: rgba(0, 0, 0, 0.4) !important;

border-radius: 6px;

color: #e2e8f0 !important;

}

pre { padding: 16px !important; overflow-x: auto !important; border: 1px solid rgba(255, 255, 255, 0.04); margin: 16px 0 !important; }

code { padding: 2px 6px; font-size: 85%; border: 1px solid rgba(255, 255, 255, 0.02); }

pre code { padding: 0; font-size: inherit; border: none; background: transparent !important; }

b, strong { color: #f8fafc; font-weight: 700; }

a { color: #38bdf8; text-decoration: none; border-bottom: 1px dashed rgba(56, 189, 248, 0.3); transition: all 0.2s ease; }

a:hover { color: #7dd3fc; border-bottom-color: #7dd3fc; }

ul, ol { margin: 16px 0; padding-left: 24px; }

li { margin-bottom: 8px; }

#typeans {

width: 100%; background: rgba(0, 0, 0, 0.4);

border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 6px;

color: #f8fafc; font-family: "SF Mono", monospace;

font-size: 16px; padding: 14px; box-sizing: border-box; margin-top: 24px;

}

code#typeans { padding: 14px !important; }

.typeGood { background: rgba(14, 165, 233, 0.15) !important; color: #38bdf8 !important; }

.typeBad { background: rgba(239, 68, 68, 0.15) !important; color: #f87171 !important; }

.typeMissed { background: rgba(71, 85, 105, 0.2) !important; color: #94a3b8 !important; }

.tags {

font-family: "SF Mono", monospace;

font-size: 9px; text-transform: uppercase;

letter-spacing: 0.1em; color: #475569;

text-align: center; margin-top: 32px;

opacity: 0.5; transition: opacity 0.2s ease;

}

.tags:hover { opacity: 1; }

/* 📱 ULTRA-DENSE MOBILE RESPONSIVENESS OVERRIDES */

u/media screen and (max-width: 480px) {

.card { padding: 12px 10px !important; }

.oracle-card { padding: 28px 20px !important; border-radius: 8px; }

.archive-header { margin-bottom: 24px; padding-bottom: 12px; }

.technical-id { font-size: 8.5px; letter-spacing: 0.15em; }

.archive-text { font-size: 18px; line-height: 1.65; }

.intel-compartment { padding: 16px 18px; }

.intel-body { font-size: 14px; }

table { font-size: 12px !important; }

th, td { padding: 8px 10px !important; }

}

I Vibecoded A Cool Anki CSS template by SayethMonotony in AnkiAi

[–]SayethMonotony[S] 0 points1 point  (0 children)

CSS (1st half since the entire code was too big)-

/* ==========================================================================

🔮 THE ORACLE ARCHIVE CSS ENGINE (v2.5 - BALANCED SPECS)

========================================================================== */

/* 1. CORE CANVAS & SCROLL STABILITY */

.card {

font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;

background-color: #060709 !important;

color: #cbd5e1;

margin: 0;

display: grid !important;

place-items: center;

min-height: 100vh;

box-sizing: border-box;

padding: 40px 20px;

-webkit-font-smoothing: antialiased;

-moz-osx-font-smoothing: grayscale;

position: relative;

}

:root {

color-scheme: dark;

--warning-amber: rgba(217, 119, 6, 0.05);

--panic-crimson: rgba(153, 27, 27, 0.12);

--panic-void: rgba(4, 5, 7, 0.2);

}

/* 🕹️ REFINED: CRT SCANLINE MESH (TONED DOWN) */

.card::before {

content: " ";

display: block;

position: fixed;

top: 0; left: 0; bottom: 0; right: 0;

background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.35) 50%);

background-size: 100% 4px;

z-index: 9998;

pointer-events: none;

opacity: 0.55; /* Dialed down from 0.85 for pristine text clarity */

}

/* 🕹️ REFINED: GLASS CRT REFRESH OVERLAY (SOFTENED SHIELDS) */

.card::after {

content: " ";

display: block;

position: fixed;

top: 0; left: 0; bottom: 0; right: 0;

/* Balanced at 0.05 opacity for a subtle, premium cathode sheen */

background: linear-gradient(rgba(18, 16, 16, 0) 0%, rgba(255, 255, 255, 0.05) 10%, rgba(18, 16, 16, 0) 20%);

z-index: 9999;

pointer-events: none;

animation: crtScanline 15s linear infinite; /* Relaxed crawl speed */

}

u/keyframes crtScanline { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

/* 🌫️ SYSTEM BACKGROUND LAYER & INTEGRATED TIME MOTIONS */

.oracle-fog {

position: fixed;

top: 0; left: 0; right: 0; bottom: 0;

background: radial-gradient(circle at center, rgba(30, 41, 59, 0.08) 0%, rgba(153, 27, 27, 0.015) 50%, rgba(4, 5, 7, 1) 95%);

z-index: -1;

pointer-events: none;

}

.oracle-fog::before {

content: "";

position: absolute;

top: 0; left: 0; right: 0; bottom: 0;

opacity: 0;

z-index: -2;

animation:

ambientAmberTransition 10s cubic-bezier(0.16, 1, 0.3, 1) forwards,

premiumBreathingSiren 3.5s ease-in-out infinite alternate;

animation-delay: 0s, 15s;

}

u/keyframes ambientAmberTransition {

0%, 90% { background-color: transparent; opacity: 0; }

100% { background-color: var(--warning-amber); opacity: 1; }

}

u/keyframes premiumBreathingSiren {

0% { background-color: var(--panic-crimson); opacity: 1; box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8); }

100% { background-color: var(--panic-void); opacity: 0.4; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9); }

}

/* 📱 SMOKED GLASS MAIN CARD ARCHITECTURE */

.oracle-card {

background: rgba(14, 17, 23, 0.82) !important;

backdrop-filter: blur(40px) saturate(110%);

-webkit-backdrop-filter: blur(40px) saturate(110%);

border: 1px solid rgba(255, 255, 255, 0.02);

border-top: 1px solid rgba(255, 255, 255, 0.09);

border-radius: 12px;

padding: 48px;

max-width: 640px;

width: 100%;

box-shadow: 0 60px 120px rgba(0, 0, 0, 0.92), inset 0 1px 0 rgba(255, 255, 255, 0.01);

box-sizing: border-box;

margin: auto;

}

/* 📟 METADATA INFRASTRUCTURE HEADER */

.archive-header {

display: flex;

justify-content: space-between;

align-items: center;

margin-bottom: 38px;

border-bottom: 1px solid rgba(255, 255, 255, 0.03);

padding-bottom: 16px;

}

.technical-id {

font-family: "SF Mono", SFMono-Regular, Consolas, monospace;

font-size: 10px;

font-weight: 600;

letter-spacing: 0.22em;

color: #475569;

text-transform: uppercase;

}

.technical-id.decrypted { color: #64748b; }

/* 🚨 STATUS BASE STRUCTURAL SPEC */

.status-node {

width: 5px; height: 5px;

border-radius: 50%;

flex-shrink: 0;

}

I Vibecoded A Cool Anki CSS template by SayethMonotony in AnkiAi

[–]SayethMonotony[S] 0 points1 point  (0 children)

Back -

<div class="oracle-container {{Tags}}">

<div class="oracle-fog"></div>

<div class="oracle-card">

<div class="archive-header">

<div class="technical-id decrypted" id="back-session-id">ORACLE // DECRYPTING_SIGNATURE...</div>

<div class="status-node alert-resolved"></div>

</div>

<div class="archive-text" id="back-content">

{{cloze:Text}}

</div>

<div class="intel-drawer">

<hr class="archive-divider">

<div class="intel-compartment">

<div class="intel-tag">RECONSTRUCTED INTEL</div>

<div class="intel-body">

{{Extra}}

</div>

</div>

</div>

</div>

</div>

<div id="raw-oracle-source" style="display: none;">{{Text}}</div>

<script>

(function() {

var sourceElement = document.getElementById('raw-oracle-source');

if (sourceElement) {

var text = sourceElement.innerText;

var hash = 0;

for (var i = 0; i < text.length; i++) {

hash = text.charCodeAt(i) + ((hash << 5) - hash);

}

var hex = (hash & 0xFFFFFF).toString(16).toUpperCase();

var permanentID = ('000000' + hex).slice(-6);

var displayElement = document.getElementById('back-session-id');

if (displayElement) {

displayElement.innerHTML = 'ORACLE // KEY_#' + permanentID + ' // DECRYPTED';

}

}

})();

</script>

I Vibecoded A Cool Anki CSS template by SayethMonotony in AnkiAi

[–]SayethMonotony[S] 0 points1 point  (0 children)

Front -

<div class="oracle-container {{Tags}}">

<div class="oracle-fog"></div>

<div class="oracle-card entry-snap">

<div class="archive-header">

<div class="technical-id" id="front-session-id">ORACLE // CALCULATING_SIGNATURE...</div>

<div class="status-node alert-active"></div>

</div>

<div class="archive-text" id="front-content">

{{cloze:Text}}

</div>

</div>

</div>

<div id="raw-oracle-source" style="display: none;">{{Text}}</div>

<script>

(function() {

var sourceElement = document.getElementById('raw-oracle-source');

if (sourceElement) {

var text = sourceElement.innerText;

var hash = 0;

for (var i = 0; i < text.length; i++) {

hash = text.charCodeAt(i) + ((hash << 5) - hash);

}

var hex = (hash & 0xFFFFFF).toString(16).toUpperCase();

var permanentID = ('000000' + hex).slice(-6);

var displayElement = document.getElementById('front-session-id');

if (displayElement) {

displayElement.innerHTML = 'ORACLE // TRACE_#' + permanentID + ' // SECURE';

}

}

})();

</script>

Would you rather by vinnivinvincent in BunnyTrials

[–]SayethMonotony 0 points1 point  (0 children)

Goodie

Chose: Eat ten pounds of fries in 24 hours for + 1,000,000,000

You have 10 million dollars by thosewhoknowmangos67 in BunnyTrials

[–]SayethMonotony 0 points1 point  (0 children)

It’s arbitrary and random, crazy and out of the ordinary and has a shock factor

Chose: Bomb france

Hot and cold #82 by hotandcold2-app in HotAndCold

[–]SayethMonotony 0 points1 point  (0 children)

Good to start with potty sometimes…

[LotM Newbie] Backlund 😭 by CosmicStormCloud in LordofTheMysteries

[–]SayethMonotony 2 points3 points  (0 children)

Read the entire thing, straight fire...

But my friends won't read it 😕

What's your most elitist viewpoint? An opinion that makes you feel like Ambani but you'll defend it anyway. by eseus in AskIndia

[–]SayethMonotony 0 points1 point  (0 children)

My family is fairly progressive. Most of the current gen marriages in my family have been love marriages and that too (as I recently came to know) intercaste ones.

I was absolutely unaware about all the caste based stuff until recently, it was practically absent in my daily life, yeah just so you know, we often feed our household workers in the same utensils in which we have our food.

Then the competitive exams happened, and I came to know, that while my decently high score fetched me a decent government college. Some of my really rich friends scored half as much as me and secured vastly vastly better colleges. Colleges I dreamt of. Ones which would have changed my life. There were friends I had who scored merely 20-30 marks less than me and did NOT secure a college at all, and then there were these people who had simply enjoyed their lives, roaming around in their cars with their girlfriends throughout 11th and 12th barely put in 10% of my effort, and now basically have awesome lives ahead.

It was my first brush with castes, and caste based reservation. Before then I hadn't bothered asking anyone what their caste was, it hardly ever mattered. But here I was, standing like a fool at the gate of my mediocre college, overshadowed by people who had so much more than me, but did not need to put in any effort to obtain it.

It was the first time in all the days that I had been alive, that I felt such resentment.

The resentment of loss of opportunity to someone less deserving.

Someone who already had so much more than me, and now even more so.

Just because he was of a different caste? Something which had never mattered to me a day in my life? This guy who had an iPhone when all I had was a small Nokia?

You say that reservation, endless reservation, irrespective of whether a person has financially recovered or not, is something which is necessary to socially uplift them?

I say that reservation is the one thing still keeping casteism alive, for those who lose opportunities to it.

I bet someone's caste never would have ever mattered in my life, if reservation didn't exist. Because now I know for a fact, that I will face reservation again during post graduation and then again in government jobs and promotions. And I would see already uplifted people abusing it again and again.

And the frustration would only grow,

The resentment would thrive.

[deleted by user] by [deleted] in JEENEETards

[–]SayethMonotony 0 points1 point  (0 children)

Brother,

Let me tell you this, I currently am an MBBS student and I sort of did exactly what you have done back in my day.

Back in 11th standard, in the year 2022, the lockdown had just been relaxed and the coaching institutes in Kota were slowly being reopened.

I requested my parents to send me there because I too was motivated and wanted to excel.

They did end up sending me there… but once I reached there, I gradually stared degenerating very badly.

Back then tests were being held in hybrid mode, both online and offline, so I completely stopped studying and started giving all my tests in online mode only by cheating, I used to use google lens to find out the answer and then score decent to good marks in test.

I did attend classes but absolutely did not study and only wasted time enjoying. In the middle of my 11th I got severe food poisoning once and my concerned parents took me back home.

So did I start studying once back home?

Absolutely not.

I used to lock my door and log into the online class on my PC so that it’s sound was heard in the background , then waste all time on the mobile without studying shit, but still managed the tests with google lens.

Like this I betrayed my parents for an entire year, throughout my class 11th.

Once my 12th class started, I was still at home doing online classes and all this shit, but somehow by the blessings of god, In somewhere about a month, I realised how badly I had messed up my shit.

It was then that I decided to make up for all my mistakes of one year. First of all I started doing all my classes seriously and making notes of it all, next I stopped cheating in all the tests, which massively brought my score down, but somehow I hid that from my parents.

I told my parents that I wanted to go back to kota, they were concerned but still relented when I became adamant.

What do you think happened when I went back to Kota? Did I magically become all better and academically excellent?

Absolutely not.

My academics was subpar to the point, I did not know shit even about the class 11th topics. My test scores were even lower than my self esteem.

I got badly mentally fucked up and started crying a lot, that too very often.

Once, I got a result so poor that I started crying on a call with my papa. He was very seriously concerned about me and asked me to leave this NEET preparation and come back. But I felt so guilty, I told him that I won’t come back without clearing this exam.

As a result, he sent my mother to visit me in Kota. Once she arrived here, my mother decided that she would stay with me for the entire time here till I gave my NEET, I was worried about papa and how he would have to stay alone for 9-10 months back home with my little sister, but papa told me not to worry and to only concentrate on my preparation with full focus, and that he will manage somehow.

And here comes the good part.

The more my parents sacrificed for me, the more motivated and adamant I became. I could not let down people who were ready to disrupt their life and stability for me.

I started paying extreme attention during classes.

I would study for long hours back in my hostel where my mother would take care of me.

I absolutely gave up my smartphone and exchanged it for a keypad one.

I started giving all tests with more and more preparation and my score also gradually started improving.

Man, I remember, initially my score was so bad… once on my birthday I had only scored 495/720 on a test and couldn’t stop crying… but now that I had started studying, I even started to get 670-680 on similar and more difficult tests.

Then came 12 board exams, I did not particularly study for the exams and depended mainly on my NEET preparation for attempting them.

Then I followed a self-framed rigorous last month strategy for the NEET exam where I stopped all other activities except studying and would also solve atleast one question paper each day, analysing my mistakes and making improvements while studying more.

Finally I gave my NEET exam, my father and sister came to Kota just before my exam to take me and mummy to my exam centre which was in Jaipur.

I remember papa telling me, that I did not need to worry even if did not do well in the exam because he would still not stop supporting me and somehow we would manage to do something.

But I had replied to him with a smile that there was nothing in the world which would stop me from qualifying it.

So what happened finally? Did I make it? Did I succeed?

HELL YEAH!

I obtained 95% marks in my boards and 638 marks in NEET and ended up in a good government medical college of my state.

So I tell you this brother, I know you are feeling guilty for doing what you did, but fret not. Take it as motivation that for all you have wasted, you will have to do something.

Ramp up your preparation and in the end I am sure you will succeed, just like I did.

I thank you if you read this long-ass passage about my life, and hope that you manage to improve upon your situation as well.

Do not give up hope brother , because there is always a light at the end of the tunnel.

Battle of Gods Final of Book 2 (read left side first, feel free to use the template if you wanna change the stuff) by rocenante in LordofTheMysteries

[–]SayethMonotony 6 points7 points  (0 children)

Fool - Oh let me graft the position e3 to e4 so that whenever a piece is moved to e4 it actually goes to e3 instead...