“It feels less like software and more like an extension of how we think.”
Quote with Gradient Border
A copy-paste quotes & testimonials component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
Quotes & TestimonialsHTMLCSSany framework
Copy into your project
HTML
<article class="nuda-grad-quote">
<div class="nuda-grad-quote__inner">
<p>“It feels less like software and more like an extension of how we think.”</p>
<footer>
<span class="nuda-grad-quote__avatar" aria-hidden="true">SO</span>
<span>Sasha Okafor · Product</span>
</footer>
</div>
</article>CSS
/* Quote with Gradient Border
Conic-ish gradient border with a soft animated glow halo. */
.nuda-grad-quote {
position: relative;
max-width: 400px;
padding: 1px;
border-radius: 16px;
background: linear-gradient(135deg, #e4ff54, #9d6dff 50%, #62b6ff);
font-family: ui-sans-serif, system-ui, sans-serif;
}
.nuda-grad-quote::before {
content: "";
position: absolute;
inset: -1px;
border-radius: inherit;
background: linear-gradient(135deg, #e4ff54, #9d6dff 50%, #62b6ff);
filter: blur(14px);
opacity: 0.35;
z-index: -1;
animation: nuda-gq-glow 6s ease-in-out infinite;
}
@keyframes nuda-gq-glow {
0%, 100% { opacity: 0.25; }
50% { opacity: 0.50; }
}
.nuda-grad-quote__inner {
padding: 1.5rem;
background: #0c0c10;
border-radius: 15px;
color: #fafafa;
}
.nuda-grad-quote__inner p {
margin: 0 0 1rem;
font-size: 1rem;
line-height: 1.55;
}
.nuda-grad-quote__inner footer {
display: flex;
align-items: center;
gap: 0.625rem;
font-size: 0.8125rem;
color: #a0a0a8;
}
.nuda-grad-quote__avatar {
width: 28px;
height: 28px;
border-radius: 50%;
background: linear-gradient(135deg, #e4ff54, #62b6ff);
display: grid;
place-items: center;
font-size: 0.6875rem;
font-weight: 700;
color: #0c0c10;
}
@media (prefers-reduced-motion: reduce) {
.nuda-grad-quote::before { animation: none; }
}How to use Quote with Gradient Border
Paste the HTML where you need it and the CSS into a global stylesheet (or a <style> tag). Every class is prefixed nuda- so it never collides with Tailwind or your own styles. Tweak the CSS custom properties to match your design system.
Works in React, Vue, Svelte, Astro, Next.js, Nuxt, Laravel Blade, Django, Rails — or a single .html file. No npm install, no build step.